Tool - Color Converter
Convert colors to HEX/RGBA and insert variable snippets into Custom CSS.
The Color Converter tool helps you normalize colors (HEX ↔︎ RGBA) and quickly insert a CSS variable declaration.
Where to find it
Open Tools (Ctrl/Cmd+K) → search Color Converter.
What it does
- Accepts common CSS color formats:
#ff3366,#f36rgb(255, 51, 102)rgba(255, 51, 102, .8)
- Outputs:
- HEX (normalized)
- RGBA (normalized)
- Shows a live swatch.
Use it
- Paste a color into Input.
- Click Copy next to HEX or RGBA as needed.
- To insert a variable:
- Set var to something like
--accent(or any valid custom property name). - Click Insert to add:
- Set var to something like
--accent: #ff3366;
That snippet is inserted at your cursor in Custom CSS.
Tips
- If you’re working with the base template, you’ll usually want to override
--vs-*variables (see Theme Variables) rather than inventing new ones.