返回 reveal.js
mixins.scss
根目录 / css / theme / template / mixins.scss
1 @mixin light-bg-text-color($color) {
2 section.has-light-background {
3 &,
4 h1,
5 h2,
6 h3,
7 h4,
8 h5,
9 h6 {
10 color: $color;
11 }
12 }
13 }
14
15 @mixin dark-bg-text-color($color) {
16 section.has-dark-background {
17 &,
18 h1,
19 h2,
20 h3,
21 h4,
22 h5,
23 h6 {
24 color: $color;
25 }
26 }
27 }
28
28 lines Plain Text