initial commit (migrated)
This commit is contained in:
commit
b594facb51
143 changed files with 11057 additions and 0 deletions
19
lib/core/presentation/theme/app_theme.dart
Normal file
19
lib/core/presentation/theme/app_theme.dart
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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,
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue