From 59730c918aa5151c0ee3fe45cf9c8643fd9894f4 Mon Sep 17 00:00:00 2001 From: Rafael <1024481@stud.hs-mannheim.de> Date: Mon, 29 Apr 2024 13:59:35 +0200 Subject: [PATCH] 2nd test --- lib/themes/dark_mode.dart | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/themes/dark_mode.dart diff --git a/lib/themes/dark_mode.dart b/lib/themes/dark_mode.dart new file mode 100644 index 0000000..53fed29 --- /dev/null +++ b/lib/themes/dark_mode.dart @@ -0,0 +1,11 @@ +import 'package:flutter/material.dart'; + +ThemeData darkMode = ThemeData( + colorScheme: ColorScheme.dark( + background: Colors.grey.shade900, + primary: Colors.grey.shade600, + secondary: Colors.grey.shade700, + tertiary: Colors.grey.shade800, + inversePrimary: Colors.grey.shade300, + ), +); \ No newline at end of file