Skip to content

Commit

Permalink
Added black theme (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
curlpipe committed Feb 6, 2021
1 parent 3fa523e commit 2a475d1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,21 @@
--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 */

::selection {
Expand Down
2 changes: 1 addition & 1 deletion templates/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div id="theme">
<label for="theme">Theme:</label>
<select name="theme">
{% call utils::options(prefs.theme, ["system", "light", "dark"], "system") %}
{% call utils::options(prefs.theme, ["system", "light", "dark", "black"], "system") %}
</select>
</div>
<p>Interface</p>
Expand Down

0 comments on commit 2a475d1

Please sign in to comment.