summaryrefslogtreecommitdiff
path: root/static/css/chroma-root.css
diff options
context:
space:
mode:
authorChristian Hodgden <chrhodgden@gmail.com>2026-02-03 16:25:44 -0600
committerChristian Hodgden <chrhodgden@gmail.com>2026-02-03 16:25:44 -0600
commit7b2b1f6b837dbca3dd08cb89836cb1ae098c2bd8 (patch)
tree2e9f027245a84e9c1372f88196ebbdfbf58bf920 /static/css/chroma-root.css
Initial Commit.main
Yay
Diffstat (limited to 'static/css/chroma-root.css')
-rw-r--r--static/css/chroma-root.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/static/css/chroma-root.css b/static/css/chroma-root.css
new file mode 100644
index 0000000..704ead3
--- /dev/null
+++ b/static/css/chroma-root.css
@@ -0,0 +1,32 @@
+:root{
+ --operator-color: hsl(
+ 0,
+ 0%,
+ var(--foreground-lightness)
+ );
+ --keyword-color: hsl(
+ 180,
+ var(--contrast-saturation),
+ var(--contrast-lightness)
+ );
+ --name-color: hsl(
+ 320,
+ var(--contrast-saturation),
+ var(--contrast-lightness)
+ );
+ --literal-color: hsl(
+ 120,
+ var(--contrast-saturation),
+ var(--contrast-lightness)
+ );
+ --error-color: hsl(
+ 0,
+ var(--contrast-saturation),
+ var(--contrast-lightness)
+ );
+ --comment-color :hsl(
+ 0,
+ 0%,
+ 50%
+ );
+} \ No newline at end of file