1
0
Fork 0

Changed default theme to the 'colorful'

master
jukioo 2022-10-19 10:54:04 +03:00 committed by GitHub
parent 13c739f186
commit fd1ece149c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -11,19 +11,19 @@ const watch = {
color:"#000000", // change background color
finland:true, // change if you want Finnish style date, or US style
// default theme "grayscale"
hour: { size:60, weight:20, color:"#999999", cursor:8 },
minute: { size:40, weight:20, color:"#dddddd", cursor:8 },
// default theme "colorful"
hour: { size:60, weight:8, color:"#00FFFF", cursor:10 },
minute: { size:40, weight:16, color:"#FFFF00", cursor:6 },
second: { on: false, cursor:2 }, // if on, uses a lot more battery
date: { font:"6x8", size:1, y:15, color:"#ffffff" }
date: { font:"6x8", size:1, y:15, color:"#FFFF00" }
};
// more themes
if (watch.theme == "colorful") {
watch.hour = { size:60, weight:8, color:"#00FFFF", cursor:10 };
watch.minute = { size:40, weight:16, color:"#FFFF00", cursor:6 };
if (watch.theme == "grayscale") {
watch.hour = { size:60, weight:20, color:"#999999", cursor:8 };
watch.minute = { size:40, weight:20, color:"#dddddd", cursor:8 };
watch.second = { on: false, cursor:2 }; // if on, uses a lot more battery
watch.date = { font:"6x8", size:1, y:15, color:"#FFFF00" };
watch.date = { font:"6x8", size:1, y:15, color:"#ffffff" };
} else if (watch.theme == "maze") {
watch.hour = { size:50, weight:7, color:"#ffffff", cursor:6 };
watch.minute = { size:30, weight:7, color:"#ffffff", cursor:6 };