From cf55576d10a0378ca36d1fecf7e2b9f3a751cbc0 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 23 Jul 2026 19:46:08 +0000 Subject: [PATCH] feat: Denya Developers brand theming - Brand colors: primary #0d2b18 (deep forest green), accent #c8a96e (gold), bg #faf8f5 (cream), text #1a1a1a - Nav bg #0d2b18 with gold logo mark and white text - Denya Developers + OneCare branding in nav header - Gold accent borders, hover states, and active tab highlights - Toast/success use brand green shades - Body background cream (#faf8f5) --- app/templates/base.html | 103 +++++++++++++++++++++------------------- 1 file changed, 55 insertions(+), 48 deletions(-) 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%); } - + -