Fix alt-key hint color for dark theme

This commit is contained in:
JuliaSvinareva 2021-08-13 19:40:08 +03:00
parent ba17707ea6
commit 1803cb52a3
4 changed files with 4 additions and 1 deletions

View file

@ -45,6 +45,7 @@
--text-inverse: #fff;
--text-toolbar-header: #fff;
--text-contrast-background: #fff;
--text-alt-key-hint: #444;
--icon-normal: #444;
--icon-normal-pressed: #fff;

View file

@ -46,6 +46,7 @@
--text-inverse: #333;
--text-toolbar-header: fade(#fff, 80%);
--text-contrast-background: #fff;
--text-alt-key-hint: #2a2a2a;
--icon-normal: fade(#fff, 80%);
--icon-normal-pressed: fade(#fff, 80%);

View file

@ -188,6 +188,7 @@
@text-inverse: var(--text-inverse);
@text-toolbar-header: var(--text-toolbar-header);
@text-contrast-background: var(--text-contrast-background);
@text-alt-key-hint: var(--text-alt-key-hint);
// Icon
// -------------------------

View file

@ -8,7 +8,7 @@
text-align: center;
background-color: @background-alt-key-hint-ie;
background-color: @background-alt-key-hint;
color: @text-normal;
color: @text-alt-key-hint;
font-size: 12px;
line-height: 18px;
padding: 0 4px;