Skip to content

Commit

Permalink
Tweak explorer colors
Browse files Browse the repository at this point in the history
  • Loading branch information
veloce committed Sep 3, 2024
1 parent 25423d6 commit 5135239
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/src/view/opening_explorer/opening_explorer_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class _OpeningExplorerView extends StatelessWidget {
Container(
padding: _kTableRowPadding,
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.primaryContainer,
color: Theme.of(context).colorScheme.secondaryContainer,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(isLandscape ? 4.0 : 0),
topRight: Radius.circular(isLandscape ? 4.0 : 0),
Expand Down Expand Up @@ -453,7 +453,7 @@ class _Opening extends ConsumerWidget {
final openingWidget = Text(
'${opening.eco.isEmpty ? "" : "${opening.eco} "}${opening.name}',
style: TextStyle(
color: Theme.of(context).colorScheme.primary,
color: Theme.of(context).colorScheme.onSecondaryContainer,
fontWeight: FontWeight.bold,
),
);
Expand Down Expand Up @@ -614,7 +614,7 @@ class OpeningExplorerMoveTable extends ConsumerWidget {
children: [
TableRow(
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.primaryContainer,
color: Theme.of(context).colorScheme.secondaryContainer,
),
children: [
Padding(
Expand Down Expand Up @@ -725,7 +725,7 @@ class OpeningExplorerGameList extends StatelessWidget {
children: [
Container(
padding: _kTableRowPadding,
color: Theme.of(context).colorScheme.primaryContainer,
color: Theme.of(context).colorScheme.secondaryContainer,
child: Row(
children: [Text(title)],
),
Expand Down

0 comments on commit 5135239

Please sign in to comment.