diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-08-16 11:19:49 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2022-08-16 11:19:49 +0200 |
| commit | 00bf8823311c067f5b0e9a785a5048e6bd8ad122 (patch) | |
| tree | ba2d727345038b7da2ea628e5e865572033df8e7 /lib/style | |
ok
Diffstat (limited to 'lib/style')
| -rw-r--r-- | lib/style/style.dart | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/style/style.dart b/lib/style/style.dart new file mode 100644 index 0000000..f14f607 --- /dev/null +++ b/lib/style/style.dart @@ -0,0 +1,16 @@ +import 'package:flutter/material.dart'; + +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; +} |
