@casoon/dragonfly
Version:
Modular, lightweight CSS framework and design system for modern web projects. Optimized for Astro JS, LightningCSS and Container Queries with @layer-based architecture and comprehensive accessibility.
43 lines (36 loc) • 1.03 kB
CSS
/**
* Winter Theme Variant
*
* Standalone theme variant that can be loaded independently.
* Uses [data-theme="winter"] scope for activation.
* CDN-compatible and opt-in via import or JS.
*
* @layer themes.variants
*/
@layer themes.variants {
[data-theme="winter"] {
/* Primary Colors */
--color-primary: #0891b2;
--color-secondary: #0284c7;
/* Status Colors */
--color-success: #10b981;
--color-warning: #f59e0b;
--color-error: #ef4444;
--color-info: #06b6d4;
/* Text Colors */
--color-text: #164e63;
--color-text-muted: #4b5563;
--color-text-inverse: #fff;
/* Surface Colors */
--color-background: #f0f9ff;
--color-surface: #bae6fd;
--color-surface-elevated: #fff;
/* Border Colors */
--color-border: #7dd3fc;
--color-border-strong: #38bdf8;
/* Transition Colors for smooth animations */
--color-transition-primary: #0891b2;
--color-transition-surface: #f0f9ff;
--color-transition-text: #164e63;
}
}