code blocks
Some checks are pending
Deploy Arise to html branch / Deploy Arise (push) Waiting to run

This commit is contained in:
Jose Falanga 2025-10-13 18:40:35 -03:00
parent b58d8c2106
commit 4f3266cb9f

View file

@ -197,3 +197,23 @@ h2,h3{
code span.number { color: #f0d89a; } /* amber numbers */
code span.comment { color: #8a9a5b; } /* moss comments */
code span.keyword { color: #b05a3c; } /* rust keywords */
/* ============================= */
/* Arise Syntax Highlighted Code */
/* ============================= */
pre.sourceCode,
pre.sourceCode code,
pre.sourceCode code span {
font-family: monospace, "Courier New", Courier, monospace;
background-color: #1f1c19; /* dark warm background */
color: #d2b48c; /* default gold text */
}
/* Optional: color accents for syntax highlighting */
pre.sourceCode code .co { color: #8a9a5b; } /* comments */
pre.sourceCode code .kw { color: #b05a3c; } /* keywords */
pre.sourceCode code .bu { color: #f0d89a; } /* builtins / commands */
pre.sourceCode code .st { color: #d6b676; } /* strings */
pre.sourceCode code .fu { color: #c57c3b; } /* functions / variables */
pre.sourceCode code .va { color: #f0d89a; } /* variable values */