theme test

This commit is contained in:
zoe 2022-07-02 19:32:44 +02:00
parent 061e12b285
commit 839bb0bbde
2 changed files with 21 additions and 3 deletions

15
lib/themes/themes.dart Normal file
View file

@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
final defaultThemeDark = ThemeData(
colorScheme: const ColorScheme(
brightness: Brightness.dark,
primary: Colors.white,
onPrimary: Colors.black,
secondary: Colors.lime,
onSecondary: Colors.black,
error: Colors.red,
onError: Colors.white,
background: Colors.black,
onBackground: Colors.white,
surface: Colors.deepPurple,
onSurface: Colors.white));