style: update avatar color shift to cyan, light blue, and white

Co-authored-by: aider (openai/qwen3.6) <aider@aider.chat>
This commit is contained in:
Dejvino 2026-05-23 15:57:05 +02:00
parent c751b91bbb
commit e45b6625e3

View File

@ -51,9 +51,12 @@
@keyframes avatar-color-shift { @keyframes avatar-color-shift {
0%, 100% { filter: grayscale(0.5) sepia(0.8) hue-rotate(180deg) brightness(0.9); } /* Cyan phase */
33% { filter: grayscale(0.5) sepia(0.8) hue-rotate(210deg) brightness(0.9); } 0%, 100% { filter: hue-rotate(180deg) saturate(1.5) brightness(1.1); }
66% { filter: grayscale(0.5) sepia(0.8) hue-rotate(50deg) brightness(0.9); } /* 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); }
} }