Smarter CSS. Faster workflow.
Auto-complete your CSS custom properties — straight from your:root.
- 🔍 Auto-detects all
--variablefrom the active CSS file - ⚡ Instant suggestion
var(--variable-name)as you type - 🔄 Re-parses automatically on every file change (debounced — no lag)
- 🪶 Lightweight — zero performance impact
- Open a
.cssfile that has a:root {}block - Write a CSS property, then start typing the variable name
- Suggestion appears → tap or press Enter to insert
No setup needed. Works out of the box.
If your :root looks like this:
:root {
--hue: 255;
--first-color: hsl(var(--hue), 60%, 64%);
--body-color: hsl(240, 100%, 2%);
--text-color: hsl(240, 8%, 70%);
}Then:
| You type | You get |
|---|---|
body |
var(--body-color) |
first |
var(--first-color) |
text |
var(--text-color) |
Want to explore and pick HSL colors?
- Only reads the currently active file
- Variables from other files won't be detected
- Requires Acode language tools to be enabled
Found a bug or have an idea?
Open an issue here → Click Me
Bayanaka