static/style.css, static/terminal.css: code styling

This commit is contained in:
revsuine 2024-11-25 02:38:45 +00:00
parent e0a64994ca
commit d8eec50530
Signed by: revsuine
GPG key ID: 3F257B68F5BC9339
2 changed files with 16 additions and 5 deletions

View file

@ -5,6 +5,7 @@
--foreground: var(--fg0);
--accent: var(--green);
--faint_foreground: var(--grey0);
--code_background: var(--bg_dim);
}
/* note: grey0 is actually fg0 with 0.5 opacity over bg0, so the below footer css has no effect. however, i've decided
@ -21,3 +22,11 @@
opacity: 0.5;
}
.code-toolbar {
border: 1px solid var(--bg3);
}
code {
background: var(--code_background);
}