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

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

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