@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
/**
* Summer Theme Variant
*
* Standalone theme variant that can be loaded independently.
* Uses [data-theme="summer"] scope for activation.
* CDN-compatible and opt-in via import or JS.
*
* @layer themes.variants
*/
@layer themes.variants {
[data-theme="summer"] {
/* Primary Colors */
--color-primary: #ca8a04;
--color-secondary: #16a34a;
/* Status Colors */
--color-success: #10b981;
--color-warning: #f59e0b;
--color-error: #ef4444;
--color-info: #06b6d4;
/* Text Colors */
--color-text: #713f12;
--color-text-muted: #4b5563;
--color-text-inverse: #fff;
/* Surface Colors */
--color-background: #fefce8;
--color-surface: #fef08a;
--color-surface-elevated: #fff;
/* Border Colors */
--color-border: #facc15;
--color-border-strong: #eab308;
/* Transition Colors for smooth animations */
--color-transition-primary: #ca8a04;
--color-transition-surface: #fefce8;
--color-transition-text: #713f12;
}
}