summaryrefslogtreecommitdiff
path: root/syntax.sh
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-12-15 17:41:02 +0100
committerFederico Angelilli <code@fedang.net>2024-12-15 17:41:02 +0100
commit191d64c5a2e4b3f53d8123b533ef64e020265944 (patch)
tree79f1339b2a095af92fd557bbe1aa8f7d56792807 /syntax.sh
parent18cef40c3c263bc652b77c8e5f2464940a117ab0 (diff)
Update syntax
Diffstat (limited to 'syntax.sh')
-rwxr-xr-xsyntax.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/syntax.sh b/syntax.sh
index 1951084..2e0db5d 100755
--- a/syntax.sh
+++ b/syntax.sh
@@ -1,23 +1,23 @@
#!/bin/sh
-LIGHT=monokailight
-DARK=onedark
+# https://xyproto.github.io/splash/docs/all.html
+
+LIGHT=trac
+DARK=modus-vivendi
CSS=assets/css/syntax.css
cat << EOF > $CSS
-.cmd-user .line ::before {
+.cmd-root .cl::before {
color: #669900;
font-weight: bold;
user-select: none;
- content: "user $"
- margin-right: 1em;
+ content: "user $ ";
}
-.cmd-root .line ::before {
+.cmd-root .cl::before {
color: #ff3333;
font-weight: bold;
user-select: none;
- content: "root #"
- margin-right: 1em;
+ content: "root # ";
}
EOF