From 633ac2bd3a8fa09c584b4daa422fba36ba7cfb85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 3 May 2026 12:08:48 +0200 Subject: [PATCH] feat: add stem orange color token and badge-stem class Co-Authored-By: Claude Sonnet 4.6 --- assets/css/main.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/css/main.css b/assets/css/main.css index fa54efb..1f4869c 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -23,7 +23,8 @@ --color-pulse: #9B00FF; /* electric purple — mid */ --color-frost: #00C8FF; /* ice blue — cool accent */ --color-ember: #FF4455; /* alert red */ - --color-lime: #AAFF00; /* acid lime — highlight */ + --color-lime: #1aff8d; /* acid lime — highlight */ + --color-stem: #FF7A1A; /* peony stem orange */ /* Backward-compat aliases so existing templates still work */ --color-gold: var(--color-heat); @@ -175,6 +176,7 @@ .badge-frost { background: var(--color-frost); color: var(--color-void); } .badge-lime { background: var(--color-lime); color: var(--color-void); } .badge-ember { background: var(--color-ember); color: #fff; } + .badge-stem { background: var(--color-stem); color: var(--color-void); } /* Semantic aliases kept for template compat */ .badge-hot { background: var(--color-heat); color: #fff; }