# @css-var-kit/cli-win32-x64

> css-var-kit native binary for Windows x64

Latest version **0.5.0** (published 2026-09-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install @css-var-kit/cli-win32-x64
pnpm add @css-var-kit/cli-win32-x64
yarn add @css-var-kit/cli-win32-x64
bun add @css-var-kit/cli-win32-x64
```

## Health

**Score 60/100 (C)** — status: active.

Positive: no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads; no types; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.5.0 |
| Published | 2026-09-24 |
| First published | 2026-03-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.5 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 5 |
| Maintainers | jo16oh |

## Links

- npm: https://www.npmjs.com/package/@css-var-kit/cli-win32-x64
- Repository: https://github.com/jo16oh/css-var-kit
- Homepage: https://github.com/jo16oh/css-var-kit#readme
- Issues: https://github.com/jo16oh/css-var-kit/issues
- npm.io page: https://npm.io/package/@css-var-kit/cli-win32-x64

## Recent versions

- 0.5.0 (latest) — 2026-09-24
- 0.4.1 — 2026-09-24
- 0.4.0 — 2026-05-02
- 0.3.1 — 2026-04-20
- 0.3.0 — 2026-04-12
- 0.2.5 — 2026-04-10
- 0.2.4 — 2026-04-09
- 0.2.3 — 2026-04-09
- 0.2.2 — 2026-04-09
- 0.2.1 — 2026-04-08
- 0.2.0 — 2026-04-04
- 0.1.3 — 2026-04-03
- 0.1.1 — 2026-03-31

## README

<p align="center">
  <picture>
    <source media="(prefers-color-scheme: dark)" srcset="assets/cvk-banner-dark.png">
    <source media="(prefers-color-scheme: light)" srcset="assets/cvk-banner-light.png">
    <img alt="css-var-kit" src="assets/cvk-banner-light.png">
  </picture>
</p>

# css-var-kit

A simple, lightweight toolkit for building design systems with CSS variables, offering **type-aware** completion and linting.

[![npm version](https://img.shields.io/npm/v/css-var-kit.svg)](https://www.npmjs.com/package/css-var-kit)
[![Crates.io](https://img.shields.io/crates/v/css-var-kit.svg)](https://crates.io/crates/css-var-kit)

## Demo

<img alt="demo" src="assets/demo.webp">

## Installation ⬇️

```sh
npm install -D css-var-kit
```

Or install via Cargo:

```sh
cargo install css-var-kit
```

## Commands 🧰

### `cvk lint [files...]`

Lints CSS variables and their usage. Detects undefined variables, type mismatches, inconsistent definitions, and enforces variable usage for design tokens.

Supports `.css` and `.scss`, plus `<style>` blocks in `.vue`, `.svelte`, `.astro`, and `.html`.

👉 [Configuration & Rules](docs/config.md)

#### Suppressing diagnostics

Use `/* cvk-ignore */` comments to suppress diagnostics for the next declaration:

```css
/* Suppress all rules */
/* cvk-ignore */
.btn {
  color: var(--undefined);
}

/* Suppress a specific rule */
/* cvk-ignore: no-undefined-variable-use */
.btn {
  color: var(--undefined);
}
```

### `cvk lsp`

A language server for CSS variables that offers type-aware variable completion and lint warnings.

Supported Features

- **Show diagnostics** from `cvk lint`
- **Type-aware variable completion**
- **Rename variable**
- **Go to defintition**
- **Hover preview** of resolved `var(--name)` values, with a color swatch when the resolved value is a color

## Editor Integration

### VSCode

👉 [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=jo16oh.css-var-kit-vscode)

### Helix

```toml
# languages.toml
[language-server.css-var-kit]
command = "cvk"
args = ["lsp"]

[[language]]
name = "css"
language-servers = ["css-var-kit"]
```

### Zed

👉 [css-var-kit — Zed Extension](https://zed.dev/extensions/css-var-kit-lsp)

## Planned Features 📝

- [ ] `cvk prune` command
  - Strips unused CSS variables from the final build output.
- [ ] Adding configuration examples for Vim, Neovim, and Emacs.

---
_Source: https://npm.io/package/@css-var-kit/cli-win32-x64 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
