fix(theme): tokyo-night-storm unread brighter than waiting on dark bg (#2297)

This commit is contained in:
Jérôme Benoit
2026-06-20 01:34:55 +02:00
committed by GitHub
parent a561584964
commit 7fb21c6c9c
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -537,10 +537,16 @@ mod tests {
let w = luminance(theme.waiting);
let f = luminance(theme.fresh_idle);
let i = luminance(theme.idle);
let u = luminance(theme.unread);
// Waiting beats fresh-idle.
cmp("waiting", w, "fresh_idle", f);
// Fresh-idle beats fully-decayed idle.
cmp("fresh_idle", f, "idle", i);
// Unread sits between waiting and idle (Attention sort
// promoter from #2088). Its relationship to fresh_idle is
// intentionally unconstrained: themes may tie them.
cmp("waiting", w, "unread", u);
cmp("unread", u, "idle", i);
}
}
}
+1 -1
View File
@@ -13,7 +13,7 @@ running = "#9ece6a"
waiting = "#e0af68"
fresh_idle = "#ff9e64"
idle = "#565f89"
unread = "#7dcfff"
unread = "#0db9d7"
error = "#f7768e"
terminal_active = "#7aa2f7"
group = "#7dcfff"