Skip to content

Commit

Permalink
(#1) fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
luanbatistadev committed Oct 16, 2021
1 parent 686339c commit be47426
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions shinoa/lib/view/display.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ class _DisplayState extends State<Display> {
);
}

static final _kEqualTextStyle = TextStyle(
color: kAccentLightColor,
static const _kEqualTextStyle = TextStyle(
color: kTextColor,
fontSize: 40,
);

Expand All @@ -113,11 +113,6 @@ class _DisplayState extends State<Display> {
fontSize: 40,
);

static const _kPaperColor = TextStyle(
color: kPaperColor,
fontSize: 40,
);

static const _kHistoryTextStyle = TextStyle(
color: kTextColor,
fontSize: 20,
Expand All @@ -129,7 +124,7 @@ class _DisplayState extends State<Display> {
children: const [
Text(
'=',
style: _kPaperColor,
style: _kEqualTextStyle,
),
Text(
'2.222',
Expand Down

0 comments on commit be47426

Please sign in to comment.