summaryrefslogtreecommitdiff
path: root/static/css/chroma-root.css
diff options
context:
space:
mode:
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