Added black theme (#101)

This commit is contained in:
curlpipe 2021-02-06 20:04:29 +00:00 committed by GitHub
parent 3fa523e67b
commit 2a475d127a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -51,6 +51,21 @@
--shadow: 0 1px 3px rgba(0, 0, 0, 0.1); --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
} }
/* Black theme setting */
.black {
--accent: #009a9a;
--green: #00a229;
--text: white;
--foreground: #0f0f0f;
--background: black;
--outside: black;
--post: black;
--panel-border: 2px solid #0f0f0f;
--highlighted: #0f0f0f;
--shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* General */ /* General */
::selection { ::selection {

View File

@ -15,7 +15,7 @@
<div id="theme"> <div id="theme">
<label for="theme">Theme:</label> <label for="theme">Theme:</label>
<select name="theme"> <select name="theme">
{% call utils::options(prefs.theme, ["system", "light", "dark"], "system") %} {% call utils::options(prefs.theme, ["system", "light", "dark", "black"], "system") %}
</select> </select>
</div> </div>
<p>Interface</p> <p>Interface</p>