summaryrefslogtreecommitdiff
path: root/lib/style
diff options
context:
space:
mode:
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);
}