CSS Variables Editor
Create and manage custom CSS properties and variables
CSS Variables
Add and configure custom properties
Live Preview
See your variables in action
--primary-color
#3b82f6
--secondary-color
#64748b
--font-size-base
16px
--spacing-unit
8px
Generated CSS Variables Code
:root {
--primary-color: #3b82f6;
--secondary-color: #64748b;
--font-size-base: 16px;
--spacing-unit: 8px;
}
/* Usage Examples */
.example-primary-color {
color: var(--primary-color);
}
.example-secondary-color {
color: var(--secondary-color);
}
.example-font-size-base {
color: var(--font-size-base);
}
.example-spacing-unit {
color: var(--spacing-unit);
}