Update README.md
Browse files
README.md
CHANGED
@@ -474,9 +474,35 @@ if __name__ == '__main__':
|
|
474 |
.terminal-screen a:hover {
|
475 |
opacity: 0.8;
|
476 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
.terminal-screen p, .terminal-screen li {
|
478 |
color: #e49b3e;
|
479 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
@keyframes flicker {
|
481 |
0% { opacity: 0.98; }
|
482 |
50% { opacity: 1; }
|
|
|
474 |
.terminal-screen a:hover {
|
475 |
opacity: 0.8;
|
476 |
}
|
477 |
+
.terminal-screen strong, .terminal-screen em {
|
478 |
+
color: #f0f0f0; /* off-white color for user/system messages */
|
479 |
+
}
|
480 |
+
.terminal-screen p {
|
481 |
+
color: #f0f0f0; /* off-white color for assistant responses */
|
482 |
+
}
|
483 |
.terminal-screen p, .terminal-screen li {
|
484 |
color: #e49b3e;
|
485 |
}
|
486 |
+
.terminal-screen code,
|
487 |
+
.terminal-screen kbd,
|
488 |
+
.terminal-screen samp {
|
489 |
+
color: #e49b3e;
|
490 |
+
font-family: 'VT323', monospace;
|
491 |
+
text-shadow: 0 0 2px #e49b3e;
|
492 |
+
background-color: #1a1a1a;
|
493 |
+
padding: 0.2em 0.4em;
|
494 |
+
border-radius: 4px;
|
495 |
+
}
|
496 |
+
.terminal-screen pre.code-block,
|
497 |
+
.terminal-screen pre {
|
498 |
+
font-size: clamp(11px, 1.3vw, 14px);
|
499 |
+
white-space: pre-wrap;
|
500 |
+
margin: 1em 0;
|
501 |
+
background-color: #1a1a1a;
|
502 |
+
padding: 1em;
|
503 |
+
border-radius: 4px;
|
504 |
+
color: #e49b3e;
|
505 |
+
}
|
506 |
@keyframes flicker {
|
507 |
0% { opacity: 0.98; }
|
508 |
50% { opacity: 1; }
|