fix(theme): tokyo-night-storm unread brighter than waiting on dark bg (#2297)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ running = "#9ece6a"
|
||||
waiting = "#e0af68"
|
||||
fresh_idle = "#ff9e64"
|
||||
idle = "#565f89"
|
||||
unread = "#7dcfff"
|
||||
unread = "#0db9d7"
|
||||
error = "#f7768e"
|
||||
terminal_active = "#7aa2f7"
|
||||
group = "#7dcfff"
|
||||
|
||||
Reference in New Issue
Block a user