FindborgUI uses OKLCH color space with hex fallbacks for perceptually uniform shading and maximum vibrancy.
All colors inspired by Hernando Beach, Florida
Water/Ocean - Primary brand color
Seagrass/Beach Vegetation - Success states
Sunset/Sunrise - Warning states
Sun - Error states
Shallow Tropical Water - Secondary brand color, info states
Grayscale for text, borders, and backgrounds
Use semantic tokens in components instead of direct brand colors
/* Use semantic tokens in components */
.button-primary {
background: var(--color-primary);
}
/* Use brand shades for variations */
.button-primary:hover {
background: var(--brand-1-4); /* Lighter shade */
}
/* Use neutrals for text and borders */
.card {
color: var(--color-text);
border: 1px solid var(--color-border);
background: var(--color-surface);
}