1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-20 21:41:25 +02:00
Files
reveal.js/css/theme/template/mixins.scss
2025-05-09 13:38:33 +02:00

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;
}
}
}