🍱 Update font

This commit is contained in:
2024-07-31 20:45:36 +08:00
parent f799900450
commit ca8ad12d93
12 changed files with 30 additions and 7 deletions

View File

@@ -38,9 +38,18 @@ abstract class SolianTheme {
brightness: brightness,
seedColor: seedColor ?? const Color.fromRGBO(154, 98, 91, 1),
),
fontFamily: 'Quicksand',
fontFamilyFallback: const ['NotoSansSC', 'NotoSansHK'],
typography: Typography.material2021(),
fontFamily: 'Comfortaa',
fontFamilyFallback: const [
'NotoSansSC',
'NotoSansHK',
'NotoSansJP',
'NotoSansEmoji'
],
typography: Typography.material2021(
colorScheme: brightness == Brightness.light
? const ColorScheme.light()
: const ColorScheme.dark(),
),
);
}
}