diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-08-19 13:07:39 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-08-19 13:07:39 +0200 |
| commit | ec7c6e4f7ebd4e096722c7cfd1e651867207ec07 (patch) | |
| tree | 936aa3778aece0d86ee76a34327a5bd76577fe55 /lib/style/style.dart | |
| parent | 019adc4d685e81b658ac88d4f54a4aa151197c09 (diff) | |
v0.3
Diffstat (limited to 'lib/style/style.dart')
| -rw-r--r-- | lib/style/style.dart | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/style/style.dart b/lib/style/style.dart index f14f607..8d82565 100644 --- a/lib/style/style.dart +++ b/lib/style/style.dart @@ -4,13 +4,13 @@ class Style { static const Color background = Color.fromARGB(255, 255, 204, 0); static const Color titleColor = Color.fromARGB(255, 212, 5, 17); - static const TextStyle bodyNormal = - TextStyle(color: Colors.white, fontSize: 14); - static const TextStyle listItemTitletextBold = TextStyle(color: titleColor, fontSize: 16, fontWeight: FontWeight.bold); - static const TextStyle listItemTitletext = - TextStyle(color: Colors.red, fontSize: 16, fontWeight: FontWeight.w300); - static const Color listEntryBackground = background; + 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); } |
