initial commit (migrated)

This commit is contained in:
fiatcode 2025-10-20 16:43:59 +07:00
commit b594facb51
143 changed files with 11057 additions and 0 deletions

View 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,
);