mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-08-20 21:41:25 +02:00
28 lines
275 B
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;
|
|
}
|
|
}
|
|
}
|