Skip to content

Commit

Permalink
Use css variables for console text and background
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Jun 18, 2018
1 parent 06c06c7 commit 4a68b73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/app/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ or "warn/action" ineastd of "red/green"
--color-grayscale-light: #ccd9e4;
--color-grayscale-mobile-background: #f9fbfd;
--color-grayscale-darker-mobile-background: #eff4f9;
--color-signMessage-console: #9bf436;
--color-console-text: #9bf436;
--color-console-background: #06213b;
--color-white: #fff;
--color-error: #da1d00;
--color-action-dark: #c80039;
Expand Down
4 changes: 2 additions & 2 deletions src/components/signMessage/confirmMessage.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@
background-color: var(--color-form-bg);

& textarea {
background: #06213b;
background: var(--color-console-background);
border-radius: 5px;
overflow: auto;
color: var(--color-signMessage-console);
color: var(--color-console-text);
font-family: monospace;
padding: 12px 24px;
height: 230px !important;
Expand Down

0 comments on commit 4a68b73

Please sign in to comment.