Newer
Older
gnexus-ui-kit / src / scss / kit-verdant.scss
@Eugene Sukhodolskiy Eugene Sukhodolskiy 1 day ago 880 bytes Add Verdant color theme with demo switcher
// —————————————————————————
// Verdant theme — Tokyo Night structure shifted into greens.
// Compiled alongside kit.css; the demo theme switcher swaps
// the stylesheet. Keep the palette in sync with demo-verdant.scss.
// —————————————————————————

@use "kit-deps" as * with (
	// neutrals — green-tinted darks
	$color-black:        #121814,
	$color-dark:         #1B2521,
	$color-grey:         #40554A,
	$color-indigo:       #4E6457,

	// prime neons
	$color-cyan:         #7DE0C3,
	$color-electric-blue:#55D6A2,

	// text tones
	$color-text-light:   #C7E5D4,
	$color-text-medium:  #A2C6B1,
	$color-text-dark:    #79927F,

	// UI state
	$color-primary:      #C7E5D4,
	$color-secondary:    #55D6A2,
	$color-accent:       #C6E85D,
	$color-info:         #7DE0C3
);

@use "kit";