From 00c23bc066e57a84c0c94e616cdb8053dd77e89e Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Sat, 11 Jul 2026 21:07:14 +0200 Subject: [PATCH] fix: unify accent color to #FA5C01 (original logo orange) --- frontend/assets/css/main.css | 2 +- frontend/assets/css/prototype-style.css | 2 +- frontend/components/HmsLogo.vue | 2 +- frontend/tailwind.config.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/assets/css/main.css b/frontend/assets/css/main.css index dc0a1aa..a8d9af4 100644 --- a/frontend/assets/css/main.css +++ b/frontend/assets/css/main.css @@ -9,7 +9,7 @@ :root { /* Brand Accent - used sparingly */ - --color-accent: #EC6925; + --color-accent: #FA5C01; --color-accent-hover: #d4581a; --color-accent-light: rgba(236, 105, 37, 0.08); --color-accent-border: rgba(236, 105, 37, 0.25); diff --git a/frontend/assets/css/prototype-style.css b/frontend/assets/css/prototype-style.css index 7400b2c..9a7d817 100644 --- a/frontend/assets/css/prototype-style.css +++ b/frontend/assets/css/prototype-style.css @@ -5,7 +5,7 @@ :root { /* Brand Accent - used sparingly */ - --color-accent: #EC6925; + --color-accent: #FA5C01; --color-accent-hover: #d4581a; --color-accent-light: rgba(236, 105, 37, 0.08); --color-accent-border: rgba(236, 105, 37, 0.25); diff --git a/frontend/components/HmsLogo.vue b/frontend/components/HmsLogo.vue index 9f16e28..fb0a4a1 100644 --- a/frontend/components/HmsLogo.vue +++ b/frontend/components/HmsLogo.vue @@ -1,7 +1,7 @@ diff --git a/frontend/tailwind.config.ts b/frontend/tailwind.config.ts index 682f8aa..ca7cb5f 100644 --- a/frontend/tailwind.config.ts +++ b/frontend/tailwind.config.ts @@ -22,7 +22,7 @@ export default { text: "#ffffff", "text-muted": "#d4d4d4", accent: { - DEFAULT: "#EC6925", + DEFAULT: "#FA5C01", hover: "#d4581a", light: "rgba(236, 105, 37, 0.08)", border: "rgba(236, 105, 37, 0.25)",