Set Tailwind colors with CSS variables
This commit is contained in:
parent
526afe6779
commit
1c910248bf
2 changed files with 45 additions and 1 deletions
|
@ -26,6 +26,50 @@ Examples:
|
||||||
|
|
||||||
body,
|
body,
|
||||||
.site-preview {
|
.site-preview {
|
||||||
|
// Tailwind color variables
|
||||||
|
--color-gray-50: 249 250 251;
|
||||||
|
--color-gray-100: 243 244 246;
|
||||||
|
--color-gray-200: 229 231 235;
|
||||||
|
--color-gray-300: 209 213 219;
|
||||||
|
--color-gray-400: 156 163 175;
|
||||||
|
--color-gray-500: 107 114 128;
|
||||||
|
--color-gray-600: 75 85 99;
|
||||||
|
--color-gray-700: 55 65 81;
|
||||||
|
--color-gray-800: 31 41 55;
|
||||||
|
--color-gray-900: 17 24 39;
|
||||||
|
--color-primary-50: 238 242 255;
|
||||||
|
--color-primary-100: 224 231 255;
|
||||||
|
--color-primary-200: 199 210 254;
|
||||||
|
--color-primary-300: 165 180 252;
|
||||||
|
--color-primary-400: 129 140 248;
|
||||||
|
--color-primary-500: 99 102 241;
|
||||||
|
--color-primary-600: 84 72 238;
|
||||||
|
--color-primary-700: 67 56 202;
|
||||||
|
--color-primary-800: 55 48 163;
|
||||||
|
--color-primary-900: 49 46 129;
|
||||||
|
--color-success-50: 240 253 244;
|
||||||
|
--color-success-100: 220 252 231;
|
||||||
|
--color-success-200: 187 247 208;
|
||||||
|
--color-success-300: 134 239 172;
|
||||||
|
--color-success-400: 74 222 128;
|
||||||
|
--color-success-500: 34 197 94;
|
||||||
|
--color-success-600: 22 163 74;
|
||||||
|
--color-success-700: 21 128 61;
|
||||||
|
--color-success-800: 22 101 52;
|
||||||
|
--color-success-900: 20 83 45;
|
||||||
|
--color-danger-50: 254 242 242;
|
||||||
|
--color-danger-100: 254 226 226;
|
||||||
|
--color-danger-200: 254 202 202;
|
||||||
|
--color-danger-300: 252 165 165;
|
||||||
|
--color-danger-400: 248 113 113;
|
||||||
|
--color-danger-500: 239 68 68;
|
||||||
|
--color-danger-600: 220 38 38;
|
||||||
|
--color-danger-700: 185 28 28;
|
||||||
|
--color-danger-800: 153 27 27;
|
||||||
|
--color-danger-900: 127 29 29;
|
||||||
|
--color-accent-300: 255 95 135;
|
||||||
|
--color-accent-500: 255 71 117;
|
||||||
|
|
||||||
// Primary variables
|
// Primary variables
|
||||||
--brand-color: hsl(var(--brand-color_hsl));
|
--brand-color: hsl(var(--brand-color_hsl));
|
||||||
--accent-color: hsl(var(--accent-color_hsl));
|
--accent-color: hsl(var(--accent-color_hsl));
|
||||||
|
@ -82,7 +126,7 @@ body,
|
||||||
--input-border-color: #d1d5db;
|
--input-border-color: #d1d5db;
|
||||||
|
|
||||||
// Typography
|
// Typography
|
||||||
--font-sans: 'Inter', Arial, sans-serif;
|
--font-sans: 'Inter', arial, sans-serif;
|
||||||
--font-weight-heading: 700;
|
--font-weight-heading: 700;
|
||||||
--font-weight-body: 400;
|
--font-weight-body: 400;
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue