Flipper fixed dark theme color

master
hughbarney 2022-04-22 21:38:11 +01:00
parent 0239503983
commit 21243f5f76
5 changed files with 7 additions and 6 deletions

View File

@ -1 +1,2 @@
0.01: first release 0.01: first release
0.02: updated dark theme bg2 color value

View File

@ -18,7 +18,7 @@ function flipTheme() {
if (!g.theme.dark) { if (!g.theme.dark) {
upd({ upd({
fg:cl("#fff"), bg:cl("#000"), fg:cl("#fff"), bg:cl("#000"),
fg2:cl("#0ff"), bg2:cl("#000"), fg2:cl("#fff"), bg2:cl("#004"),
fgH:cl("#fff"), bgH:cl("#00f"), fgH:cl("#fff"), bgH:cl("#00f"),
dark:true dark:true
}); });

View File

Before

Width:  |  Height:  |  Size: 644 B

After

Width:  |  Height:  |  Size: 644 B

View File

@ -2,17 +2,17 @@
{ {
"id": "flipper", "id": "flipper",
"name": "flipper", "name": "flipper",
"version": "0.01", "version": "0.02",
"description": "Switch between dark and light theme and vice versa, combine with pattern launcher and swipe to flip.", "description": "Switch between dark and light theme and vice versa, combine with pattern launcher and swipe to flip.",
"readme":"README.md", "readme":"README.md",
"screenshots": [{"url":"flipper.png"}], "screenshots": [{"url":"app.png"}],
"icon": "flipper.png", "icon": "app.png",
"type": "app", "type": "app",
"tags": "game", "tags": "game",
"supports": ["BANGLEJS2"], "supports": ["BANGLEJS2"],
"allow_emulator": true, "allow_emulator": true,
"storage": [ "storage": [
{"name":"flipper.app.js","url":"flipper.app.js"}, {"name":"flipper.app.js","url":"app.js"},
{"name":"flipper.img","url":"flipper.icon.js","evaluate":true} {"name":"flipper.img","url":"icon.js","evaluate":true}
] ]
} }