diff --git a/refilc/lib/theme/theme.dart b/refilc/lib/theme/theme.dart index 755589e..1acae12 100644 --- a/refilc/lib/theme/theme.dart +++ b/refilc/lib/theme/theme.dart @@ -187,7 +187,7 @@ class AppTheme { accentColor == AccentColor.ogfilc) || !settings.newColors ? accent - : ColorsUtils().lighten(accent, amount: 0.3); + : ColorsUtils().lighten(accent, amount: 0.22); // Color newScaffoldBg = ColorsUtils().lighten(accent, amount: 0.4); Color newTertiary = (accentColor == AccentColor.adaptive || accentColor == AccentColor.custom || diff --git a/refilc_mobile_ui/lib/pages/notes/notes_page.dart b/refilc_mobile_ui/lib/pages/notes/notes_page.dart index c5ee6c5..61ff85c 100644 --- a/refilc_mobile_ui/lib/pages/notes/notes_page.dart +++ b/refilc_mobile_ui/lib/pages/notes/notes_page.dart @@ -135,13 +135,19 @@ class NotesPageState extends State with TickerProviderStateMixin { title: Text('your_notes'.i18n), padding: EdgeInsets.zero, isTransparent: true, - child: Center( - child: Wrap( - spacing: 18.0, - runSpacing: 18.0, - children: selfNoteTiles, - ), - ), + child: selfNoteTiles.length > 1 + ? Center( + child: Wrap( + spacing: 18.0, + runSpacing: 18.0, + children: selfNoteTiles, + ), + ) + : Wrap( + spacing: 18.0, + runSpacing: 18.0, + children: selfNoteTiles, + ), )); }