diff options
Diffstat (limited to 'src/scopes/_implicit.scss')
-rw-r--r-- | src/scopes/_implicit.scss | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/scopes/_implicit.scss b/src/scopes/_implicit.scss index 020e311..78f06be 100644 --- a/src/scopes/_implicit.scss +++ b/src/scopes/_implicit.scss | |||
@@ -1,5 +1,7 @@ | |||
1 | @use 'sass:map'; | ||
1 | @use 'sass:math'; | 2 | @use 'sass:math'; |
2 | @use 'sass:meta'; | 3 | @use 'sass:meta'; |
4 | @use 'sass:string'; | ||
3 | @use 'iro-sass/src/bem'; | 5 | @use 'iro-sass/src/bem'; |
4 | @use 'iro-sass/src/props'; | 6 | @use 'iro-sass/src/props'; |
5 | @use '../props' as *; | 7 | @use '../props' as *; |
@@ -155,5 +157,24 @@ | |||
155 | padding: 0; | 157 | padding: 0; |
156 | margin: 0; | 158 | margin: 0; |
157 | } | 159 | } |
160 | |||
161 | @each $theme in map.keys(props.get(core.$transparent-colors)) { | ||
162 | .t-static-#{string.slice($theme, 3)} { | ||
163 | color: props.get(core.$transparent-colors, $theme, --800); | ||
164 | |||
165 | h1, | ||
166 | h2, | ||
167 | h3, | ||
168 | h4, | ||
169 | h5, | ||
170 | h6 { | ||
171 | color: props.get(core.$transparent-colors, $theme, --900); | ||
172 | } | ||
173 | |||
174 | hr { | ||
175 | color: props.get(core.$transparent-colors, $theme, --400); | ||
176 | } | ||
177 | } | ||
178 | } | ||
158 | } | 179 | } |
159 | } | 180 | } |