From 65cdf845bbd8dab2fff1e1b908306c39975ea6e6 Mon Sep 17 00:00:00 2001 From: Dejvino Date: Sat, 23 May 2026 18:05:46 +0200 Subject: [PATCH] style: adjust avatar color shift animation values --- style.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 1b4700b..820e358 100644 --- a/style.css +++ b/style.css @@ -52,11 +52,9 @@ @keyframes avatar-color-shift { /* Cyan phase */ - 0%, 100% { filter: grayscale(100%) sepia(100%) hue-rotate(180deg) saturate(0.6) brightness(1.1); } + 0%, 100% { filter: grayscale(100%) sepia(100%) hue-rotate(230deg) saturate(1.4) brightness(1.0); } /* Light Blue phase */ - 33% { filter: grayscale(100%) sepia(100%) hue-rotate(210deg) saturate(0.5) brightness(1.15); } - /* White phase */ - 66% { filter: grayscale(100%) sepia(100%) hue-rotate(0deg) saturate(0) brightness(1.2); } + 45% { filter: grayscale(100%) sepia(100%) hue-rotate(160deg) saturate(1.1) brightness(1.0); } }