aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/theme.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/theme.css')
-rw-r--r--static/theme.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/static/theme.css b/static/theme.css
index 442950b..b7629f0 100644
--- a/static/theme.css
+++ b/static/theme.css
@@ -26,6 +26,8 @@
--clr-action-dislike: var(--clr-negative);
--clr-action-reshare: var(--clr-positive);
--clr-action-reply: var(--clr-neutral);
+ --clr-link-unvisited: #233ed8;
+ --clr-link-visited: #7d20c9;
/* margins and padding */
--spacing-half: 4px;
@@ -52,3 +54,32 @@
accent-color: var(--clr-primary);
}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ /* colours */
+ --clr-primary: #daa3fa;
+ --clr-secondary: #3d3544;
+ --clr-lighter-primary: #c586e9;
+ --clr-positive: #70d170;
+ --clr-negative: #e46c6c;
+ --clr-neutral: #7daedb;
+ --clr-background: #161416;
+ --clr-note-background: #221c22;
+ --clr-note-selected-background: #352b2e;
+ --clr-profile-background: #1d1e25;
+ --clr-panel-background: #1d191f;
+ --clr-info-background: #2a2a3f;
+ --clr-warning-background: #3f3728;
+ --clr-error-background: #5e272b;
+ --clr-field-background: var(--clr-background);
+ --clr-foreground: #fae9fa;
+ --clr-lesser-foreground: #a495a5;
+ --clr-foreground-on-primary: var(--clr-background);
+ --clr-foreground-on-secondary: var(--clr-foreground);
+ --clr-border: #b781d444;
+ --clr-action-default: #7d6b83;
+ --clr-link-unvisited: #7fc0fd;
+ --clr-link-visited: #d67bfa;
+ }
+}