From 8012112f6c7ddbffc5440dd3703273f8da83e6a7 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 12 Mar 2025 14:31:55 +0100 Subject: [PATCH] style(tailwind): update color keys for consistency --- frontend/tailwind.config.js | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index 5d41f0f..5c77ea4 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -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) }, }, },