refactor: setup Tailwind color foundation with semantic aliases and updated defaults

This commit is contained in:
Gigi
2025-10-13 23:03:07 +02:00
parent b145aee29d
commit b85fc820d1
4 changed files with 26 additions and 11 deletions

View File

@@ -6,6 +6,19 @@ export default {
],
theme: {
extend: {
colors: {
// Semantic color aliases for the app
'app-bg': '#18181b', // zinc-900
'app-bg-elevated': '#27272a', // zinc-800
'app-bg-subtle': '#1e1e1e', // Custom between 800-900
'app-border': '#3f3f46', // zinc-700
'app-border-subtle': '#52525b', // zinc-600
'app-text': '#e4e4e7', // zinc-200
'app-text-secondary': '#a1a1aa', // zinc-400
'app-text-muted': '#71717a', // zinc-500
'primary': '#6366f1', // indigo-500
'primary-hover': '#4f46e5', // indigo-600
},
keyframes: {
shimmer: {
'0%': { transform: 'translateX(-100%)' },