Files
emacs-conf/scripts/reveal.js/css/theme/template/mixins.scss

28 lines
275 B
SCSS

@mixin light-bg-text-color($color) {
section.has-light-background {
&,
h1,
h2,
h3,
h4,
h5,
h6 {
color: $color;
}
}
}
@mixin dark-bg-text-color($color) {
section.has-dark-background {
&,
h1,
h2,
h3,
h4,
h5,
h6 {
color: $color;
}
}
}