Vaani/lib/theme/dark.dart

11 lines
257 B
Dart
Raw Normal View History

2024-05-08 05:03:49 -04:00
import 'package:flutter/material.dart';
2024-09-18 00:00:27 -04:00
import 'package:vaani/theme/theme.dart';
2024-05-08 05:03:49 -04:00
final ThemeData darkTheme = ThemeData(
2024-09-18 00:00:27 -04:00
brightness: Brightness.dark,
colorScheme: ColorScheme.fromSeed(
seedColor: brandColor,
2024-05-08 05:03:49 -04:00
brightness: Brightness.dark,
),
);