34 lines
906 B
CSS
34 lines
906 B
CSS
@import "tailwindcss";
|
|
@import "tailwindcss-primeui";
|
|
@import "primeicons/primeicons.css";
|
|
@custom-variant dark (&:where(.p-dark, .p-dark *));
|
|
|
|
:root {
|
|
/* Primary Colors - Blue */
|
|
--p-primary-50: #eff6ff;
|
|
--p-primary-100: #dbeafe;
|
|
--p-primary-200: #bfdbfe;
|
|
--p-primary-300: #93c5fd;
|
|
--p-primary-400: #60a5fa;
|
|
--p-primary-500: #3b82f6;
|
|
--p-primary-600: #2563eb;
|
|
--p-primary-700: #1d4ed8;
|
|
--p-primary-800: #1e40af;
|
|
--p-primary-900: #1e3a8a;
|
|
--p-primary-950: #172554;
|
|
|
|
/* Surface Colors - Slate */
|
|
--p-surface-0: #ffffff;
|
|
--p-surface-50: #f8fafc;
|
|
--p-surface-100: #f1f5f9;
|
|
--p-surface-200: #e2e8f0;
|
|
--p-surface-300: #cbd5e1;
|
|
--p-surface-400: #94a3b8;
|
|
--p-surface-500: #64748b;
|
|
--p-surface-600: #475569;
|
|
--p-surface-700: #334155;
|
|
--p-surface-800: #1e293b;
|
|
--p-surface-900: #0f172a;
|
|
--p-surface-950: #020617;
|
|
}
|