From 9187d4fcdb304938c5471b9e2223565cb6830578 Mon Sep 17 00:00:00 2001 From: tess Date: Wed, 31 Aug 2022 14:12:49 +0200 Subject: [PATCH] tess theme :) --- lib/themes/tess.dart | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lib/themes/tess.dart diff --git a/lib/themes/tess.dart b/lib/themes/tess.dart new file mode 100644 index 0000000..22d1779 --- /dev/null +++ b/lib/themes/tess.dart @@ -0,0 +1,24 @@ +import 'package:flutter/material.dart'; +import 'themes.dart' as themes; + +themes.CustomColors theme = themes.CustomColors( + "tess 🐯", + const Color.fromARGB( + 255, + 13, + 69, + 87, + ), + const ColorScheme( + brightness: Brightness.dark, + primary: Color.fromARGB(255, 230, 62, 98), + onPrimary: Color.fromARGB(255, 3, 16, 20), + secondary: Color.fromARGB(255, 230, 62, 98), + onSecondary: Color.fromARGB(255, 3, 16, 20), + error: Color.fromARGB(255, 241, 108, 86), + onError: Color.fromARGB(255, 3, 16, 20), + background: Color.fromARGB(255, 3, 16, 20), + onBackground: Color.fromARGB(255, 238, 141, 239), + surface: Color.fromARGB(255, 3, 16, 20), + onSurface: Color.fromARGB(255, 238, 141, 239), + ));