style(tailwind): update color keys for consistency
Some checks failed
CI / prettier (pull_request) Successful in 19s
CI / Checkstyle Main (pull_request) Successful in 27s
CI / eslint (pull_request) Successful in 46s
CI / test-build (pull_request) Failing after 51s

This commit is contained in:
Jan K9f 2025-03-12 14:31:55 +01:00
parent e9159abf3d
commit 8012112f6c
Signed by: jank
GPG key ID: 22BEAC760B3333D6

View file

@ -7,24 +7,35 @@ module.exports = {
extend: {
colors: {
// Primary Colors
"deep-blue": "#0a1219", // background
"deep-blue-light": "#121e27", // secondary background
"deep-blue-contrast": "#1a2835", // cards, elements
'deep-blue': "#0a1219", // background
'deepBlue': "#0a1219", // background (alternative format)
'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
"emerald": "#10b981", // primary buttons
"emerald-dark": "#059669", // button hover
"emerald-light": "#34d399", // highlights
'emerald': "#10b981", // primary buttons
'emerald-dark': "#059669", // button hover
'emeraldDark': "#059669", // button hover (alternative format)
'emerald-light': "#34d399", // highlights
'emeraldLight': "#34d399", // highlights (alternative format)
// Text Colors
"text-primary": "#ffffff", // white
"text-secondary": "#94a3b8", // light gray
"text-tertiary": "#64748b", // darker gray
'text-primary': "#ffffff", // white
'textPrimary': "#ffffff", // white (alternative format)
'text-secondary': "#94a3b8", // light gray
'textSecondary': "#94a3b8", // light gray (alternative format)
'text-tertiary': "#64748b", // darker gray
'textTertiary': "#64748b", // darker gray (alternative format)
// Additional Accents
"accent-yellow": "#fbbf24",
"accent-red": "#ef4444",
"accent-purple": "#8b5cf6",
'accent-yellow': "#fbbf24",
'accentYellow': "#fbbf24", // (alternative format)
'accent-red': "#ef4444",
'accentRed': "#ef4444", // (alternative format)
'accent-purple': "#8b5cf6",
'accentPurple': "#8b5cf6", // (alternative format)
},
},
},