diff --git a/app/templates/base.html b/app/templates/base.html index c25cfab..3f6eec1 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -12,17 +12,23 @@ extend: { colors: { denya: { - 50: '#eff6ff', - 100: '#dbeafe', - 200: '#bfdbfe', - 300: '#93c5fd', - 400: '#60a5fa', - 500: '#3b82f6', - 600: '#2563eb', - 700: '#1d4ed8', - 800: '#1e40af', - 900: '#1e3a8a', - } + 50: '#e8f0ea', + 100: '#c5d9cb', + 200: '#9ebfaa', + 300: '#74a589', + 400: '#4d8c69', + 500: '#2d734d', + 600: '#1d5a3a', + 700: '#0d2b18', + 800: '#0a2012', + 900: '#07150c', + }, + gold: { + DEFAULT: '#c8a96e', + light: '#e8d5a8', + dark: '#a88a4e', + }, + cream: '#faf8f5', } } } @@ -49,49 +55,54 @@ .priority-high { @apply bg-orange-100 text-orange-800 border-orange-300; } .priority-medium { @apply bg-yellow-100 text-yellow-800 border-yellow-300; } .priority-low { @apply bg-green-100 text-green-800 border-green-300; } + .brand-gradient { background: linear-gradient(135deg, #0d2b18 0%, #1a3d24 100%); } - + -