theme test
This commit is contained in:
parent
061e12b285
commit
839bb0bbde
2 changed files with 21 additions and 3 deletions
15
lib/themes/themes.dart
Normal file
15
lib/themes/themes.dart
Normal 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));
|
Loading…
Add table
Add a link
Reference in a new issue