Update default.html

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-02 05:29:11 +01:00 committed by GitHub
parent 17732018eb
commit 94d5b38a76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@
<style>
.language-shell.highlighter-rouge {
/* New styles for Shell code */
background-color: #ffffcc; /* Example background color */
background-color: #d5e3f3; /* Example background color */
color: #333; /* Example text color */
padding: 10px; /* Example padding */
border: 1px solid #ccc; /* Example border */
@ -26,7 +26,7 @@
}
.language-python {
/* New styles for Python code */
background-color: #ffffcc; /* Light grey background */
background-color: #d5e3f3; /* Light grey background */
color: #202020; /* Dark grey text color */
padding: 10px; /* Padding around the code block */
border: 1px solid #ccc; /* Example border */
@ -35,15 +35,15 @@
}
.language-matlab {
/* New styles for MATLAB code */
background-color: #ffffcc; /* Light yellow background */
background-color: #d5e3f3; /* Light yellow background */
color: #0052cc; /* MATLAB blue text color */
padding: 10px; /* Padding around the code block */
border: 1px solid #ccc; /* Example border */
font-family: 'Courier New', monospace; /* Monospaced font for code */
/* Add other styling properties as needed */
}
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .hll { background-color: #d5e3f3 }
.highlight { background: #d5e3f3; }
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */