NoteTile: Adjust border color

This commit is contained in:
Vishesh Handa
2020-04-02 18:45:25 +02:00
parent fbbc92eea8
commit 2b6c5e69f1

View File

@ -29,9 +29,9 @@ class NoteTile extends StatelessWidget {
var theme = Theme.of(context);
var textTheme = theme.textTheme;
var borderColor = theme.highlightColor.withAlpha(80);
var borderColor = theme.highlightColor.withAlpha(100);
if (theme.brightness == Brightness.dark) {
borderColor = theme.highlightColor.withAlpha(100);
borderColor = theme.highlightColor.withAlpha(30);
}
var tileContent = Container(