Merge pull request #3304 from paul-arg/widbtstates

BT States Widget fix: handle colors themes better
pull/3459/head
Rob Pilling 2024-06-16 16:17:46 +01:00 committed by GitHub
commit 95b383f593
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -17,12 +17,12 @@
};
var colours = (_a = {},
_a[1] = {
false: "#fff",
false: "#000",
true: "#fff",
},
_a[2] = {
false: "#0ff",
true: "#00f",
false: "#00f",
true: "#0ff",
},
_a);
WIDGETS["bluetooth"] = {

View File

@ -30,12 +30,12 @@
}
} = {
[State.Active]: {
false: "#fff",
false: "#000",
true: "#fff",
},
[State.Connected]: {
false: "#0ff",
true: "#00f",
false: "#00f",
true: "#0ff",
},
};