From 8dd2fc71cf707689194d82e04dbd58242595c4a3 Mon Sep 17 00:00:00 2001 From: Zaki <18zaki18@gmail.com> Date: Sat, 9 May 2026 00:01:13 +0100 Subject: [PATCH] Fix star icon color for dark theme --- css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index 5b30a37..87cf5d1 100644 --- a/css/style.css +++ b/css/style.css @@ -153,7 +153,7 @@ input:focus, select:focus { border-color:var(--accent); } .edit-btn { width:20px; height:20px; background:transparent; color:var(--accent); border:none; cursor:pointer; font-size:0.75rem; display:flex; align-items:center; justify-content:center; } .edit-btn:hover { color:#fff; transform:scale(1.2); } .light .edit-btn:hover { color:#000!important; } -.star-btn { width:20px; height:20px; background:transparent; border:none; cursor:pointer; font-size:0.75rem; display:flex; align-items:center; justify-content:center; } +.star-btn { width:20px; height:20px; background:transparent; border:none; cursor:pointer; font-size:0.85rem; display:flex; align-items:center; justify-content:center; color:var(--text2); } .star-btn:hover { transform:scale(1.3); } .entry-card.favorite { border-color:rgba(255,200,0,0.3); background:rgba(255,200,0,0.05); } .entry-row.favorite { border-color:rgba(255,200,0,0.3); background:rgba(255,200,0,0.05); }