diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-23 16:24:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 16:24:05 -0500 |
commit | 643afcddd21ba7f5d1307e73bab4a6ac9f2866c8 (patch) | |
tree | b6dd432cbe897a0c1b32caecaa3df50cec95222c /ext/mixed/css/material.css | |
parent | 8a6ecc7297842a377668a48382871ed60d6436e1 (diff) |
Update text-color-light definitions to be more consistent (#1299)
Diffstat (limited to 'ext/mixed/css/material.css')
-rw-r--r-- | ext/mixed/css/material.css | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ext/mixed/css/material.css b/ext/mixed/css/material.css index 6d56edfc..7da515b5 100644 --- a/ext/mixed/css/material.css +++ b/ext/mixed/css/material.css @@ -51,7 +51,10 @@ --menu-shadow: 0 1px 3px 1px var(--shadow-color), 0 2px 4px 3px var(--shadow-color); --text-color: #222222; - --text-color-light: #666666; + --text-color-light1: #555555; + --text-color-light2: #666666; + --text-color-light3: #777777; + --text-color-light4: #888888; --background-color: #f8f9fa; --background-color-light: #ffffff; @@ -105,7 +108,10 @@ } :root[data-theme=dark] { --text-color: #d4d4d4; - --text-color-light: #909090; + --text-color-light1: #aaaaaa; + --text-color-light2: #999999; + --text-color-light3: #888888; + --text-color-light4: #777777; --background-color: #1e1e1e; --background-color-light: #0a0a0a; @@ -950,7 +956,7 @@ button.popup-menu-item:active:not(:disabled) { box-shadow: none; } button.popup-menu-item:disabled { - color: var(--text-color-light); + color: var(--text-color-light2); } .popup-menu-item-icon { display: block; |