diff options
Diffstat (limited to 'src/_declare-vars.scss')
-rw-r--r-- | src/_declare-vars.scss | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/src/_declare-vars.scss b/src/_declare-vars.scss index 303da35..bf7e955 100644 --- a/src/_declare-vars.scss +++ b/src/_declare-vars.scss | |||
@@ -295,22 +295,39 @@ | |||
295 | 295 | ||
296 | @include iro.props-store(( | 296 | @include iro.props-store(( |
297 | --colors: ( | 297 | --colors: ( |
298 | --gray: fn.gray-palette(97%, true), | ||
299 | ), | ||
300 | ), 'palette-media-light'); | ||
301 | |||
302 | @include iro.props-store(( | ||
303 | --colors: ( | ||
304 | --border: ( | ||
305 | --stable: iro.props-get-static(--colors --gray --5, 'palette-media-light'), | ||
306 | --stable-lo: iro.props-get-static(--colors --gray --6, 'palette-media-light'), | ||
307 | ), | ||
308 | ) | ||
309 | ), 'colors-media-light'); | ||
310 | |||
311 | // | ||
312 | |||
313 | @include iro.props-store(( | ||
314 | --colors: ( | ||
298 | --gray: fn.gray-palette(12%, true), | 315 | --gray: fn.gray-palette(12%, true), |
299 | ), | 316 | ), |
300 | ), 'palette-media'); | 317 | ), 'palette-media-dark'); |
301 | 318 | ||
302 | @include iro.props-store(( | 319 | @include iro.props-store(( |
303 | --colors: ( | 320 | --colors: ( |
304 | --border: ( | 321 | --border: ( |
305 | --stable: iro.props-get-static(--colors --gray --5, 'palette-media'), | 322 | --stable: iro.props-get-static(--colors --gray --5, 'palette-media-dark'), |
306 | --stable-lo: iro.props-get-static(--colors --gray --6, 'palette-media'), | 323 | --stable-lo: iro.props-get-static(--colors --gray --6, 'palette-media-dark'), |
307 | ), | 324 | ), |
308 | 325 | ||
309 | --blue: fn.color-palette(blend.lch(63% 50 279), -1), | 326 | --blue: iro.props-get-static(--colors --blue, 'colors-dark'), |
310 | --purple: fn.color-palette(blend.lch(63% 50 308), -1), | 327 | --purple: iro.props-get-static(--colors --purple, 'colors-dark'), |
311 | --red: fn.color-palette(blend.lch(63% 50 23), -1), | 328 | --red: iro.props-get-static(--colors --red, 'colors-dark'), |
312 | --green: fn.color-palette(blend.lch(78% 50 147), -1), | 329 | --green: iro.props-get-static(--colors --green, 'colors-dark'), |
313 | --yellow: fn.color-palette(blend.lch(88% 50 70), -1), | 330 | --yellow: iro.props-get-static(--colors --yellow, 'colors-dark'), |
314 | 331 | ||
315 | --accent: ( | 332 | --accent: ( |
316 | --primary: iro.props-ref('colors-media', --colors --blue), | 333 | --primary: iro.props-ref('colors-media', --colors --blue), |