mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 02:59:28 +00:00
8 lines
196 B
Dart
8 lines
196 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
final ThemeData lightTheme = ThemeData(
|
|
brightness: Brightness.light,
|
|
colorScheme: ColorScheme.light(
|
|
background: Colors.grey[200]!,
|
|
),
|
|
);
|