diff options
author | Iván Ávalos <avalos@disroot.org> | 2023-05-20 19:41:50 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2023-05-20 19:41:50 -0600 |
commit | 41b1ed94d6964e3fcedf427bbd323861b03fd1de (patch) | |
tree | a06c356ac7027f6c21664278acf9e6cecf1b7243 /lib/settings | |
parent | a932c7491ca1f00ec9219e84f03a7fc98040b07a (diff) | |
download | linkchat-41b1ed94d6964e3fcedf427bbd323861b03fd1de.tar.gz linkchat-41b1ed94d6964e3fcedf427bbd323861b03fd1de.tar.bz2 linkchat-41b1ed94d6964e3fcedf427bbd323861b03fd1de.zip |
Se añade tipografía Manrope
Diffstat (limited to 'lib/settings')
-rw-r--r-- | lib/settings/themes.dart | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/settings/themes.dart b/lib/settings/themes.dart index bc489b7..cc506a9 100644 --- a/lib/settings/themes.dart +++ b/lib/settings/themes.dart @@ -4,11 +4,13 @@ class ThemeSettings { static ThemeData lightTheme = ThemeData( useMaterial3: true, primaryColor: Colors.purple, + fontFamily: 'Manrope', ); - static ThemeData darkTheme = ThemeData.dark( + static ThemeData darkTheme = ThemeData( useMaterial3: true, - ).copyWith( + brightness: Brightness.dark, + fontFamily: 'Manrope', colorScheme: const ColorScheme.dark().copyWith( primary: Colors.purple, ), |