aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-05-20 19:41:50 -0600
committerIván Ávalos <avalos@disroot.org>2023-05-20 19:41:50 -0600
commit41b1ed94d6964e3fcedf427bbd323861b03fd1de (patch)
treea06c356ac7027f6c21664278acf9e6cecf1b7243 /lib
parenta932c7491ca1f00ec9219e84f03a7fc98040b07a (diff)
downloadlinkchat-41b1ed94d6964e3fcedf427bbd323861b03fd1de.tar.gz
linkchat-41b1ed94d6964e3fcedf427bbd323861b03fd1de.tar.bz2
linkchat-41b1ed94d6964e3fcedf427bbd323861b03fd1de.zip
Se añade tipografía Manrope
Diffstat (limited to 'lib')
-rw-r--r--lib/settings/themes.dart6
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,
),