Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

improvement: make wallet heading name more visible in dark mode #996

Merged
merged 1 commit into from Jan 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -28,7 +28,7 @@
<div class="flex flex-col justify-center text-white antialiased pl-4">
<div
v-if="name"
class="flex flex-row text-lg font-semibold text-theme-feature-item-text"
class="flex flex-row text-lg font-semibold text-theme-heading-text"
>
<span class="block xl:hidden">
{{ name | truncate(12) }}
Expand Down Expand Up @@ -93,7 +93,7 @@
{{ balance }}
<span
v-if="isMarketEnabled"
class="WalletHeading__balance__alternative text-xs text-theme-feature-item-text"
class="WalletHeading__balance__alternative text-xs text-theme-heading-text"
>
{{ alternativeBalance }}
</span>
Expand Down
2 changes: 2 additions & 0 deletions src/renderer/styles/_theme.css
Expand Up @@ -50,6 +50,7 @@
--theme-button-special-choice: #e78068;

--theme-heading-background: #343956;
--theme-heading-text: #c0cddf;

--theme-chart-background: #f8fafc;
--theme-chart-price: #3b4559;
Expand Down Expand Up @@ -152,6 +153,7 @@
--theme-button-special-choice: #e78068;

--theme-heading-background: #31333d;
--theme-heading-text: #c0cddf;
--theme-chart-price: white;
--theme-chart-background: #373a43;

Expand Down
1 change: 1 addition & 0 deletions tailwind.js
Expand Up @@ -89,6 +89,7 @@ let colors = {

'theme-caption-text': 'var(--theme-caption-text)',
'theme-heading-background': 'var(--theme-heading-background)',
'theme-heading-text': 'var(--theme-heading-text)',

'theme-button-special-choice': 'var(--theme-button-special-choice)',

Expand Down