summaryrefslogtreecommitdiff
path: root/lib/style
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-11-13 23:07:11 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-11-13 23:07:11 +0100
commit03bd15045beee64dab5795053b662d02f7049e31 (patch)
treec51f242454e5d1b30adda5e87b09484ab66f7267 /lib/style
parent8c4abd2b2705589fe668be52614979a12ff04869 (diff)
v0.8, make it comfy, add salary log
Diffstat (limited to 'lib/style')
-rw-r--r--lib/style/style.dart7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/style/style.dart b/lib/style/style.dart
index 8d82565..4a932e1 100644
--- a/lib/style/style.dart
+++ b/lib/style/style.dart
@@ -6,11 +6,10 @@ class Style {
static const TextStyle listItemTitletextBold =
TextStyle(color: titleColor, fontSize: 16, fontWeight: FontWeight.bold);
- static const Color listEntryBackground = background;
+ static const Color listEntryBackground = Color.fromARGB(180, 255, 204, 0);
static const Color listEntryStandardColor = Colors.black;
static const Color listEntryTransparentColor = Color.fromARGB(80, 0, 0, 0);
- static const Color logbookEntryBorder = Color.fromARGB(255, 140, 140, 180);
- static const Color logbookEntryBackground =
- Color.fromARGB(255, 180, 180, 200);
+ static const Color logbookEntryBorder = Color.fromARGB(255, 255, 255, 255);
+ static const Color logbookEntryBackground = Color.fromARGB(94, 255, 204, 0);
}