Skip to content

Commit

Permalink
gai: Fix missing color.
Browse files Browse the repository at this point in the history
  • Loading branch information
patniemeyer committed Feb 27, 2024
1 parent 3908f47 commit 0b2fda4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gui-orchid/lib/orchid/orchid_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ extension TextStyleExtensions on TextStyle {
return this.copyWith(color: Colors.black);
}

TextStyle get grey {
return this.copyWith(color: Colors.grey);
}

TextStyle get red {
return this.copyWith(color: Colors.red);
}
Expand Down

0 comments on commit 0b2fda4

Please sign in to comment.