Skip to content

Commit

Permalink
Tone down outline borders (#292)
Browse files Browse the repository at this point in the history
Fixes #291
  • Loading branch information
Feichtmeier committed Feb 23, 2023
1 parent 24b29f1 commit a12d5eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/themes/common_themes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ ThemeData createYaruLightTheme({
tertiaryContainer: const Color(0xFF18b6ec),
onTertiaryContainer: Colors.white,
onSurfaceVariant: YaruColors.coolGrey,
outline: const Color(0xFFCBCBCB),
outline: const Color.fromARGB(255, 221, 221, 221),
scrim: Colors.black,
);

Expand Down Expand Up @@ -513,7 +513,7 @@ ThemeData createYaruDarkTheme({
tertiaryContainer: const Color(0xFF18b6ec),
onTertiaryContainer: YaruColors.porcelain,
onSurfaceVariant: YaruColors.warmGrey,
outline: const Color(0xFF585858),
outline: const Color.fromARGB(255, 68, 68, 68),
scrim: Colors.black,
);
return ThemeData.from(
Expand Down

0 comments on commit a12d5eb

Please sign in to comment.