Merge pull request 'tess theme :)' (#22) from tess/loris:main into main

Reviewed-on: #22
This commit is contained in:
zoe 2022-08-31 20:48:29 +00:00
commit 16750473ce
1 changed files with 24 additions and 0 deletions

24
lib/themes/tess.dart Normal file
View File

@ -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),
));