Skip to content

Commit

Permalink
[373] feat: make notes tiles darker
Browse files Browse the repository at this point in the history
  • Loading branch information
maelchiotti committed Jan 27, 2025
1 parent 78456c0 commit 73e4e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/common/widgets/notes/note_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class _NoteTileState extends ConsumerState<NoteTile> {
} else if (widget.note.selected) {
return Theme.of(context).colorScheme.secondaryContainer;
} else if (showTilesBackground) {
return Theme.of(context).colorScheme.surfaceContainerHighest;
return Theme.of(context).colorScheme.surfaceContainerHigh;
} else {
return null;
}
Expand Down

0 comments on commit 73e4e49

Please sign in to comment.