From 2873474486b3de26fab0a29a89d942338295dbe0 Mon Sep 17 00:00:00 2001 From: KeiSei84 <2206745@gmail.com> Date: Fri, 22 May 2026 13:49:44 +0800 Subject: [PATCH] =?UTF-8?q?style(kei):=20brand=20splash=20colors=20(=D0=B3?= =?UTF-8?q?=D0=BE=D0=BB=D1=83=D0=B1=D0=BE=D0=B9=20logo=20+=20=D0=B6=D1=91?= =?UTF-8?q?=D0=BB=D1=82=D1=8B=D0=B9=20values),=20bump=20v0.16=E2=86=92v0.3?= =?UTF-8?q?8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Splash was cyan; rebrand to the blue/yellow palette: sky-blue (38;5;39) logo + dim-blue separators, gold (38;5;220) brand line + field values. Version string was stale (v0.16 → v0.38). Co-Authored-By: Claude Opus 4.7 (1M context) --- bin/kei | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/bin/kei b/bin/kei index 4c72521..1169f30 100755 --- a/bin/kei +++ b/bin/kei @@ -100,13 +100,14 @@ splash() { sl="$(last_sleep_run)" as="$(active_sessions)" - # Only color if stdout is a tty - local C0= C1= C2= C3= + # Only color if stdout is a tty. Brand palette: голубой (sky-blue) + жёлтый (gold). + local C0= C1= C2= C3= CV= if [ -t 1 ]; then C0=$'\033[0m' - C1=$'\033[1;36m' # cyan-bold - C2=$'\033[0;36m' # cyan - C3=$'\033[2m' # dim + C1=$'\033[1;38;5;39m' # голубой (sky-blue) — logo + C2=$'\033[1;38;5;220m' # жёлтый (gold) — brand line + C3=$'\033[2;38;5;39m' # dim blue — separators + CV=$'\033[1;38;5;220m' # жёлтый — field values fi cat <