style(tailwind): update color keys for consistency
This commit is contained in:
parent
e9159abf3d
commit
8012112f6c
1 changed files with 23 additions and 12 deletions
|
@ -7,24 +7,35 @@ module.exports = {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
// Primary Colors
|
// Primary Colors
|
||||||
"deep-blue": "#0a1219", // background
|
'deep-blue': "#0a1219", // background
|
||||||
"deep-blue-light": "#121e27", // secondary background
|
'deepBlue': "#0a1219", // background (alternative format)
|
||||||
"deep-blue-contrast": "#1a2835", // cards, elements
|
'deep-blue-light': "#121e27", // secondary background
|
||||||
|
'deepBlueLight': "#121e27", // secondary background (alternative format)
|
||||||
|
'deep-blue-contrast': "#1a2835", // cards, elements
|
||||||
|
'deepBlueContrast': "#1a2835", // cards, elements (alternative format)
|
||||||
|
|
||||||
// Accent Colors
|
// Accent Colors
|
||||||
"emerald": "#10b981", // primary buttons
|
'emerald': "#10b981", // primary buttons
|
||||||
"emerald-dark": "#059669", // button hover
|
'emerald-dark': "#059669", // button hover
|
||||||
"emerald-light": "#34d399", // highlights
|
'emeraldDark': "#059669", // button hover (alternative format)
|
||||||
|
'emerald-light': "#34d399", // highlights
|
||||||
|
'emeraldLight': "#34d399", // highlights (alternative format)
|
||||||
|
|
||||||
// Text Colors
|
// Text Colors
|
||||||
"text-primary": "#ffffff", // white
|
'text-primary': "#ffffff", // white
|
||||||
"text-secondary": "#94a3b8", // light gray
|
'textPrimary': "#ffffff", // white (alternative format)
|
||||||
"text-tertiary": "#64748b", // darker gray
|
'text-secondary': "#94a3b8", // light gray
|
||||||
|
'textSecondary': "#94a3b8", // light gray (alternative format)
|
||||||
|
'text-tertiary': "#64748b", // darker gray
|
||||||
|
'textTertiary': "#64748b", // darker gray (alternative format)
|
||||||
|
|
||||||
// Additional Accents
|
// Additional Accents
|
||||||
"accent-yellow": "#fbbf24",
|
'accent-yellow': "#fbbf24",
|
||||||
"accent-red": "#ef4444",
|
'accentYellow': "#fbbf24", // (alternative format)
|
||||||
"accent-purple": "#8b5cf6",
|
'accent-red': "#ef4444",
|
||||||
|
'accentRed': "#ef4444", // (alternative format)
|
||||||
|
'accent-purple': "#8b5cf6",
|
||||||
|
'accentPurple': "#8b5cf6", // (alternative format)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue