From 3c78f6e4b77194806ae8d2cf08857ec32c235e10 Mon Sep 17 00:00:00 2001 From: intergrav Date: Mon, 15 Jul 2024 17:04:22 -0400 Subject: [PATCH] feat: add dc-cs to themes --- theme/boilerplate-auto.css | 3 +++ theme/boilerplate.css | 1 + theme/catppuccin-frappe.css | 3 +++ theme/catppuccin-macchiato.css | 3 +++ theme/catppuccin-mocha.css | 3 +++ theme/day.css | 1 + theme/night.css | 1 + theme/terminal.css | 1 + 8 files changed, 16 insertions(+) diff --git a/theme/boilerplate-auto.css b/theme/boilerplate-auto.css index 1d4b03e..eb6a377 100644 --- a/theme/boilerplate-auto.css +++ b/theme/boilerplate-auto.css @@ -8,6 +8,7 @@ --dc-font-mono: monospace; /* monospace */ /* light colors */ + --dc-cs: light; /* light/dark scrollbars, inputs, etc */ --dc-tx-1: #000000; /* primary text */ --dc-tx-2: #1a1a1a; /* secondary text */ --dc-bg-1: #fafafa; /* main background */ @@ -21,6 +22,7 @@ --dc-ac-tx: #ededed; /* accent color text */ /* dark colors */ + --dc-cs: dark; --dc-d-tx-1: #ededed; --dc-d-tx-2: #a1a1a1; --dc-d-bg-1: #000; @@ -36,6 +38,7 @@ @media (prefers-color-scheme: dark) { :root { + --dc-cs: var(--dc-d-cs); --dc-tx-1: var(--dc-d-tx-1); --dc-tx-2: var(--dc-d-tx-2); --dc-bg-1: var(--dc-d-bg-1); diff --git a/theme/boilerplate.css b/theme/boilerplate.css index 3fbf2aa..1da95d1 100644 --- a/theme/boilerplate.css +++ b/theme/boilerplate.css @@ -8,6 +8,7 @@ --dc-font-mono: monospace; /* monospace */ /* colors */ + --dc-cs: light; /* light/dark scrollbars, inputs, etc */ --dc-tx-1: #000000; /* primary text */ --dc-tx-2: #1a1a1a; /* secondary text */ --dc-bg-1: #fafafa; /* main background */ diff --git a/theme/catppuccin-frappe.css b/theme/catppuccin-frappe.css index dc53990..29d0d4b 100644 --- a/theme/catppuccin-frappe.css +++ b/theme/catppuccin-frappe.css @@ -4,6 +4,7 @@ :root { /* light colors - latte */ + --dc-cs: light; --dc-tx-1: #4c4f69; /* primary text | Text */ --dc-tx-2: #4c4f69; /* secondary text | Text */ --dc-bg-1: #e6e9ef; /* main background | Mantle */ @@ -17,6 +18,7 @@ --dc-ac-tx: #4c4f69; /* accent/selection color text | Text */ /* dark colors */ + --dc-cs: dark; --dc-d-tx-1: #c6d0f5; /* primary text | Text */ --dc-d-tx-2: #c6d0f5; /* secondary text | Text */ --dc-d-bg-1: #292c3c; /* main background | Mantle */ @@ -32,6 +34,7 @@ @media (prefers-color-scheme: dark) { :root { + --dc-cs: var(--dc-d-cs); --dc-tx-1: var(--dc-d-tx-1); --dc-tx-2: var(--dc-d-tx-2); --dc-bg-1: var(--dc-d-bg-1); diff --git a/theme/catppuccin-macchiato.css b/theme/catppuccin-macchiato.css index bd66640..1b1c3c3 100644 --- a/theme/catppuccin-macchiato.css +++ b/theme/catppuccin-macchiato.css @@ -4,6 +4,7 @@ :root { /* light colors - latte */ + --dc-cs: light; --dc-tx-1: #4c4f69; /* primary text | Text */ --dc-tx-2: #4c4f69; /* secondary text | Text */ --dc-bg-1: #e6e9ef; /* main background | Mantle */ @@ -17,6 +18,7 @@ --dc-ac-tx: #4c4f69; /* accent/selection color text | Text */ /* dark colors */ + --dc-cs: dark; --dc-d-tx-1: #cad3f5; /* primary text | Text */ --dc-d-tx-2: #cad3f5; /* secondary text | Text */ --dc-d-bg-1: #1e2030; /* main background | Mantle */ @@ -32,6 +34,7 @@ @media (prefers-color-scheme: dark) { :root { + --dc-cs: var(--dc-d-cs); --dc-tx-1: var(--dc-d-tx-1); --dc-tx-2: var(--dc-d-tx-2); --dc-bg-1: var(--dc-d-bg-1); diff --git a/theme/catppuccin-mocha.css b/theme/catppuccin-mocha.css index 15121e2..8311cf7 100644 --- a/theme/catppuccin-mocha.css +++ b/theme/catppuccin-mocha.css @@ -4,6 +4,7 @@ :root { /* light colors - latte */ + --dc-cs: light; --dc-tx-1: #4c4f69; /* primary text | Text */ --dc-tx-2: #4c4f69; /* secondary text | Text */ --dc-bg-1: #e6e9ef; /* main background | Mantle */ @@ -17,6 +18,7 @@ --dc-ac-tx: #4c4f69; /* accent/selection color text | Text */ /* dark colors */ + --dc-cs: dark; --dc-d-tx-1: #cdd6f4; /* primary text | Text */ --dc-d-tx-2: #cdd6f4; /* secondary text | Text */ --dc-d-bg-1: #181825; /* main background | Mantle */ @@ -32,6 +34,7 @@ @media (prefers-color-scheme: dark) { :root { + --dc-cs: var(--dc-d-cs); --dc-tx-1: var(--dc-d-tx-1); --dc-tx-2: var(--dc-d-tx-2); --dc-bg-1: var(--dc-d-bg-1); diff --git a/theme/day.css b/theme/day.css index edc2907..34e65ff 100644 --- a/theme/day.css +++ b/theme/day.css @@ -3,6 +3,7 @@ :root { /* colors */ + --dc-cs: light; --dc-tx-1: #000000; --dc-tx-2: #1a1a1a; --dc-bg-1: #fafafa; diff --git a/theme/night.css b/theme/night.css index cbc4ff6..eb410fd 100644 --- a/theme/night.css +++ b/theme/night.css @@ -3,6 +3,7 @@ :root { /* colors */ + --dc-cs: dark; --dc-tx-1: #ededed; --dc-tx-2: #a1a1a1; --dc-bg-1: #000; diff --git a/theme/terminal.css b/theme/terminal.css index 3a31026..117a882 100644 --- a/theme/terminal.css +++ b/theme/terminal.css @@ -9,6 +9,7 @@ --dc-font-mono: "Geist Mono", monospace; /* colors */ + --dc-cs: dark; --dc-tx-1: #ffffff; --dc-tx-2: #eeeeee; --dc-bg-1: #000000;