cofounderella/lib/themes/light_mode.dart

11 lines
292 B
Dart
Raw Normal View History

2024-04-29 14:36:25 +02:00
import 'package:flutter/material.dart';
ThemeData lightMode = ThemeData(
colorScheme: ColorScheme.light(
surface: Colors.grey.shade300,
2024-04-29 14:36:25 +02:00
primary: Colors.grey.shade500,
secondary: Colors.grey.shade200,
tertiary: Colors.white,
inversePrimary: Colors.grey.shade900,
),
);