Limit title length when too many status icons & shade background of every other icon (#1195)

* Shading alternate icon backgrounds on title bar

* Shading alternate icons on title bar

* Shading alternate icons on title bar

* Clang
This commit is contained in:
Mark Thompson
2023-06-27 03:15:58 -05:00
committed by GitHub
parent 32085f317b
commit 4ea8abb53b
3 changed files with 24 additions and 9 deletions

View File

@@ -140,6 +140,9 @@ struct Color {
static constexpr Color dark_grey() {
return {63, 63, 63};
}
static constexpr Color darker_grey() {
return {31, 31, 31};
}
static constexpr Color purple() {
return {204, 0, 102};