11 lines
295 B
Dart
11 lines
295 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
ThemeData lightMode = ThemeData(
|
||
|
colorScheme: ColorScheme.light(
|
||
|
background: Colors.grey.shade300,
|
||
|
primary: Colors.grey.shade500,
|
||
|
secondary: Colors.grey.shade200,
|
||
|
tertiary: Colors.white,
|
||
|
inversePrimary: Colors.grey.shade900,
|
||
|
),
|
||
|
);
|