Skip to content

Commit

Permalink
fix: Update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
reasje committed Sep 5, 2024
1 parent 686f29b commit 6cd8816
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ui/lib/src/theme/colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ class ColorsTheme {
final primary500 = const Color(0xFF7795F9);
final primary600 = const Color(0xFF8AA4F9);

final primaryBlue = const Color(0XFF478DE0);
Color get buttonBlue => primaryBlue;

final darkBlue = const Color(0xff0E1629);
final charcoalGray = const Color(0xff333333);

Expand Down Expand Up @@ -214,6 +217,9 @@ class ColorsTheme {
Color get buttonWhiteInvert => whiteInvert;
Color get buttonBlackInvert => blackInvert;

final primaryGreen = const Color(0XFF1FB857);
Color get buttonGreen => primaryGreen;

// tip
final mainGreen = const Color(0xFF10C469);
final mainRed = const Color(0xFFD22D2D);
Expand Down Expand Up @@ -266,6 +272,12 @@ class ColorsThemeDark implements ColorsTheme {
@override
final primary600 = const Color(0xFFC7D3F9);

@override
final primaryBlue = const Color(0XFF478DE0);

@override
Color get buttonBlue => primaryBlue;

@override
final darkBlue = const Color(0xff0E1629);

Expand Down Expand Up @@ -666,6 +678,12 @@ class ColorsThemeDark implements ColorsTheme {
@override
Color get buttonBlackInvert => const Color(0xFF25282B);

@override
final primaryGreen = const Color(0XFF1FB857);

@override
Color get buttonGreen => primaryGreen;

// tip
@override
Color get mainGreen => const Color(0xFF30A78B);
Expand Down

0 comments on commit 6cd8816

Please sign in to comment.