home tile press and hold color change

This commit is contained in:
2024-11-13 12:48:28 +02:00
parent a38ec882d9
commit abca9daf4c
3 changed files with 60 additions and 18 deletions

View File

@@ -131,6 +131,14 @@ class MyTheme {
return Color(_errColor);
}
Color highlightColor() {
if (mode == "Dark") {
return const Color(0XFF9bc7fa);
} else {
return const Color(0XFF354866);
}
}
Color successColor() {
return Color(_succColor);
}