Overview
Design Tokens Explorer provides IntelliSense autocomplete for all loaded tokens in CSS-family files. As you type avar(-- expression, a list of matching tokens appears with their values shown inline — no need to switch to the sidebar.
Supported languages
Autocomplete is active in the following languages:- CSS
- SCSS
- Less
- JavaScript / TypeScript with CSS-in-JS patterns
- JSX / TSX
- Vue (inside
<style>blocks) - Svelte (inside
<style>blocks) - Astro (inside
<style>blocks)
Trigger characters
Autocomplete triggers on- and ( characters. The completion provider activates on three patterns:
1. var(-- with a partial name
var(--token-name) expression.
2. var( with nothing after
--token-name) to complete the expression.
3. Standalone -- prefix
var(--token-name) expression.
What shows in the completion list
Each completion item shows:- Token name as the primary label
- Raw value as the detail (shown to the right in most editor themes)
- Completion kind:
Variable