Closed erwini closed 3 years ago
try this:
$tmag: #0f0;
.md-typeset h1 { color: $tmag; }
// or
@media print {
.md-typeset h1 { color: $tmag; } // for material theme
article h1 { color: $tmag; } // other theme
}
// or
.md-typeset h1 { color: $tmag !important; } // for material theme
article h1 { color: $tmag !important; } // other theme
Tested. works. Always this small details. One question: for what is the parameter . Found documentation. It is a CSS command (using the correct search words at goggle). So this is fixed. Thanks for hints!important
used. Seen it several times but no explanation found (yet).
I want to change the textcolor from grey to another color for the level1 heading (h1). I was able to do it for h2 to h6 with the help of styles.scss in the template directory introduced in version
0.8.0
any hint ?