diff options
Diffstat (limited to 'searx/static/themes/simple/src/less/definitions.less')
-rw-r--r-- | searx/static/themes/simple/src/less/definitions.less | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/searx/static/themes/simple/src/less/definitions.less b/searx/static/themes/simple/src/less/definitions.less index 45d5c878d..7d946f40e 100644 --- a/searx/static/themes/simple/src/less/definitions.less +++ b/searx/static/themes/simple/src/less/definitions.less @@ -229,6 +229,14 @@ --color-doc-code-background: #4d5a6f; } +.black-themes() { + --color-base-background: #000; + --color-base-background-mobile: #000; + --color-header-background: #000; + --color-footer-background: #000; + --color-sidebar-background: #000; +} + /// Dark Theme (autoswitch based on device pref) @media (prefers-color-scheme: dark) { :root.theme-auto { @@ -241,6 +249,11 @@ .dark-themes(); } +:root.theme-black { + .dark-themes(); + .black-themes(); +} + /// General Size @results-width: 45rem; @results-sidebar-width: 25rem; |