aboutsummaryrefslogtreecommitdiff
path: root/lib/settings/themes.dart
blob: bc489b79671c48218c8200f838b0530a65ed63e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import 'package:flutter/material.dart';

class ThemeSettings {
  static ThemeData lightTheme = ThemeData(
    useMaterial3: true,
    primaryColor: Colors.purple,
  );

  static ThemeData darkTheme = ThemeData.dark(
    useMaterial3: true,
  ).copyWith(
    colorScheme: const ColorScheme.dark().copyWith(
      primary: Colors.purple,
    ),
  );
}