You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor HTML export to use CSS custom properties for colors
Instead of inlining hex colors throughout the HTML document, define
all term colors as CSS custom properties in the :root selector and
reference them with var(--term-X) throughout the document.
This makes the exported HTML more maintainable and allows for easier
theming. Colors are defined once at the top and referenced everywhere:
:root {
--term-exponential: #e6194B;
--term-imaginary: #3cb44b;
...
}
.term-exponential { color: var(--term-exponential); }
Also removes unused 'bend' variable in Beamer export.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
0 commit comments