From e45b6625e36a4395deda976e6966735bfdb2ee05 Mon Sep 17 00:00:00 2001 From: Dejvino Date: Sat, 23 May 2026 15:57:05 +0200 Subject: [PATCH] style: update avatar color shift to cyan, light blue, and white Co-authored-by: aider (openai/qwen3.6) --- style.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 64508e1..ebbd20b 100644 --- a/style.css +++ b/style.css @@ -51,9 +51,12 @@ @keyframes avatar-color-shift { - 0%, 100% { filter: grayscale(0.5) sepia(0.8) hue-rotate(180deg) brightness(0.9); } - 33% { filter: grayscale(0.5) sepia(0.8) hue-rotate(210deg) brightness(0.9); } - 66% { filter: grayscale(0.5) sepia(0.8) hue-rotate(50deg) brightness(0.9); } + /* Cyan phase */ + 0%, 100% { filter: hue-rotate(180deg) saturate(1.5) brightness(1.1); } + /* Light Blue phase */ + 33% { filter: hue-rotate(210deg) saturate(1.2) brightness(1.2); } + /* White phase */ + 66% { filter: grayscale(1) brightness(1.35) contrast(0.85); } }