Changed Font and Theme

This commit is contained in:
2024-12-05 20:26:34 +01:00
parent 35e1171623
commit ee705938f7
7 changed files with 28 additions and 6 deletions

10
lib/theme.dart Normal file
View File

@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
ThemeData get darkTheme => ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: const Color(0xAAbb71fc),
brightness: Brightness.dark,
),
useMaterial3: true,
fontFamily: 'SourceSerif4',
);