19 lines
529 B
Dart
19 lines
529 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
/// App light theme
|
|
ThemeData lightTheme = ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(seedColor: const Color(0xFF343A40)),
|
|
useMaterial3: true,
|
|
fontFamily: GoogleFonts.dmSans().fontFamily,
|
|
);
|
|
|
|
/// App dark theme
|
|
ThemeData darkTheme = ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(
|
|
seedColor: const Color(0xFF212529),
|
|
brightness: Brightness.dark,
|
|
),
|
|
useMaterial3: true,
|
|
fontFamily: GoogleFonts.dmSans().fontFamily,
|
|
);
|