Color palette
The @flux-ui/internals package exports a comprehensive color palette based on the Tailwind CSS color system. Each color is available in 12 shades, from 50 (lightest) to 950 (darkest).
Usage
ts
import { blue500, red500, green500 } from '@flux-ui/internals';
console.log(blue500); // '#3b82f6'Available colors
Each of the following colors exports shades 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, and 950:
Color
Example (500)
slate#64748bgray#6b7280zinc#71717aneutral#737373stone#78716cred#ef4444orange#f97316amber#f59e0byellow#eab308lime#84cc16green#22c55eemerald#10b981teal#14b8a6cyan#06b6d4sky#0ea5e9blue#3b82f6indigo#6366f1violet#8b5cf6purple#a855f7fuchsia#d946efpink#ec4899rose#f43f5eType declarations
ts
// Each color exports shades as string constants, e.g.:
export declare const blue50: string;
export declare const blue100: string;
// ... through blue950