Skip to content

CSS Variables Reference

Reference of CSS custom properties available in Vizel. Color values use the OKLCH color space for perceptual uniformity and wider gamut support.

Overview

Vizel provides CSS custom properties for theming. Variables are organized into the following categories:

CategoryDescription
ColorsPrimary, secondary, background, foreground, and state colors
TypographyFont families, sizes, weights, and line heights
Spacing & LayoutSpacing scale, border radius, shadows, and z-index
ComponentsEditor, image, code block, and math-specific variables
IntegrationsTailwind CSS and shadcn/ui integration guides

Why OKLCH?

Vizel uses the OKLCH color space for all color values because:

  1. Perceptual uniformity - Colors with the same lightness value appear equally bright
  2. Predictable manipulation - Adjusting hue, chroma, or lightness produces predictable results
  3. Wider gamut - Access to colors beyond sRGB on supported displays
  4. Dark mode - Easier to create accessible color variations

OKLCH is supported in all modern browsers (Chrome 111+, Firefox 113+, Safari 15.4+).

Theme Selectors

CSS selectors that trigger theme changes:

css
/* Light theme (default) */
:root,
.light,
[data-theme="light"],
[data-vizel-theme="light"] {
  /* Light theme variables */
}

/* Dark theme */
.dark,
[data-theme="dark"],
[data-vizel-theme="dark"] {
  /* Dark theme variables */
}

Quick Example

css
/* Custom theme overrides using OKLCH */
:root {
  /* Custom primary color (purple) */
  --vizel-primary: oklch(0.627 0.265 303.9);
  --vizel-primary-hover: oklch(0.558 0.288 302.321);
  
  /* Custom border radius */
  --vizel-radius-md: 8px;
  --vizel-radius-lg: 12px;
  
  /* Custom editor settings */
  --vizel-editor-min-height: 500px;
}

[data-vizel-theme="dark"] {
  --vizel-primary: oklch(0.714 0.203 305.504);
}

Next Steps

Released under the MIT License.