diff options
author | 3geek14 <nerd.of.pi@gmail.com> | 2023-09-05 22:00:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 19:00:14 -0700 |
commit | e3c6467ab9cb78ab0a3f6f5c157ebc7a3c9aecdd (patch) | |
tree | 70c49770c5f0c87557b9ffe70443f143f14ed18c /docs | |
parent | 7fb60519ee67cead24894b5418b4645794932498 (diff) |
[Docs] Improve contrast for warnings in dark mode (#21928)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/qmk_custom_dark.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/qmk_custom_dark.css b/docs/qmk_custom_dark.css index 35498fbd86..ffa5539922 100644 --- a/docs/qmk_custom_dark.css +++ b/docs/qmk_custom_dark.css @@ -2,9 +2,13 @@ background-color: #555; } -.markdown-section p.tip, .markdown-section tr:nth-child(2n) { - background-color:#444; + background-color:#444; +} + +.markdown-section p.tip { + background-color:#555; + color:#FFF; } .markdown-section tr { @@ -16,7 +20,7 @@ } .markdown-section p.tip code { - background-color: #555; + background-color: #333; color: #fff; } |