- change code text color from #1e5f8a to #5fb3e4 (brighter blue) in course 223015b - update code styling in course 223015c for better contrast - update custom-theme.css with --color-dimmed variable 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
557 B
CSS
41 lines
557 B
CSS
/* @theme custom-theme */
|
|
|
|
@import-theme "gaia";
|
|
|
|
section {
|
|
background-color: #f0f8ff;
|
|
color: #2c3e50;
|
|
font-size: 0.85em;
|
|
--color-dimmed: #e0e6eb;
|
|
}
|
|
|
|
h1 {
|
|
color: #3498db;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
h2 {
|
|
color: #e74c3c;
|
|
}
|
|
|
|
ul, ol {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
section code {
|
|
color: #1a1a1a;
|
|
padding: 2px 4px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
/* Preserve explicit SVG fill colors */
|
|
section svg *[fill] {
|
|
fill: revert;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: 4px solid #3498db;
|
|
background-color: #ecf0f1;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
} |