Skip to content

Commit

Permalink
fix: ensure better contrast for the warty version (#921)
Browse files Browse the repository at this point in the history
Fixes #920
  • Loading branch information
Feichtmeier authored Sep 17, 2024
1 parent 48d0c67 commit 2465f72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ class YaruColors {
static const Color sage = Color(0xFF657B69);

/// Warty Brown
static const Color wartyBrown = Color(0xFFB39169);
/// Actually its Color(0xFFB39169) but for contrast reassons we use this altered version in Flutter
static const Color wartyBrown = Color(0xFF92714a);

/// Prussian Green
static const Color prussianGreen = Color(0xFF308280);
Expand Down

0 comments on commit 2465f72

Please sign in to comment.