From 7b5c2935fc6cecbaf462853eb95a602c8832c795 Mon Sep 17 00:00:00 2001 From: AnasHost <41167157+Anashost@users.noreply.github.com> Date: Mon, 19 Jan 2026 19:24:54 +0100 Subject: [PATCH] make universal orange color --- appliances.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appliances.md b/appliances.md index 46db708..be95a5f 100644 --- a/appliances.md +++ b/appliances.md @@ -673,7 +673,7 @@ card_mod: /* --- ASSIGN ANIMATIONS --- */ {% if is_drying %} - {% set color = '255, 87, 34' %} /* Deep Orange (Heat) */ + {% set color = '255, 152, 0' %} /* Orange (Heat) */ {% set anim_type = 'steam-rise 2s ease-in-out infinite' %} {% set icon_shake = 'shake 0.8s ease-in-out infinite' %} {% set wave_anim = 'wave 4s linear infinite' %} @@ -932,7 +932,7 @@ card_mod: /* --- ANIMATION & COLOR ASSIGNMENT --- */ {% if is_drying %} /* DRYING MODE: Orange + Steam + Shake */ - {% set color = '255, 87, 34' %} + {% set color = '255, 152, 0' %} {% set anim_type = 'steam-rise 2s ease-in-out infinite' %} {% set icon_shake = 'shake 0.8s ease-in-out infinite' %} {% set wave_anim = 'wave 4s linear infinite' %} @@ -1767,7 +1767,7 @@ card_mod: /* --- HIGH POWER (HEATING/DRYING) --- */ {% if power > thresh_heat %} {% set status_text = 'Drying' %} - {% set color = '255, 87, 34' %} /* Deep Orange */ + {% set color = '255, 152, 0' %} /* Orange */ {% set anim_type = 'steam-rise 2s ease-in-out infinite' %} {% set overlay_img = 'linear-gradient(0deg, transparent, rgba(255,255,255,0.4), transparent)' %} {% set icon_shake = 'shake 0.8s ease-in-out infinite' %} @@ -2076,7 +2076,7 @@ card_mod: {% if is_drying_mode %} /* === DRYING === */ {% set status_text = 'Drying' %} - {% set color = '255, 87, 34' %} /* Orange */ + {% set color = '255, 152, 0' %} /* Orange */ {% set anim_type = 'steam-rise 2s ease-in-out infinite' %} {% set overlay_img = 'linear-gradient(0deg, transparent, rgba(255,255,255,0.4), transparent)' %} {% set icon_shake = 'shake 0.8s ease-in-out infinite' if power > 100 else 'wobble 2s ease-in-out infinite' %}