mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-08 12:09:29 +00:00
8 lines
193 B
Dart
8 lines
193 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
final ThemeData darkTheme = ThemeData(
|
|
brightness: Brightness.dark,
|
|
colorScheme: ColorScheme.dark(
|
|
background: Colors.grey[900]!,
|
|
),
|
|
);
|