From 4f472e44dbd2ffa1e4e10c63b7ab74105d8e894b Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 19 Oct 2024 19:37:18 +0200 Subject: Remove old code --- src_old/objects/_palette.scss | 62 ------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 src_old/objects/_palette.scss (limited to 'src_old/objects/_palette.scss') diff --git a/src_old/objects/_palette.scss b/src_old/objects/_palette.scss deleted file mode 100644 index 19f282f..0000000 --- a/src_old/objects/_palette.scss +++ /dev/null @@ -1,62 +0,0 @@ -@use 'sass:map'; -@use 'sass:list'; -@use 'sass:string'; -@use 'iro-sass/src/index' as iro; -@use '../functions' as fn; -@use '../config'; - -@include iro.props-namespace('palette') { - @include iro.bem-object(iro.props-namespace()) { - display: flex; - block-size: 3em; - - @include iro.bem-elem('item') { - flex: 1 1 auto; - - $palette: map.get(config.$themes, config.$theme-default, --palettes, --base); - $contrasts: map.get(config.$themes, config.$theme-default, --contrasts, list.nth($palette, 2)); - - @for $i from 1 through list.length($contrasts) { - $key: list.nth(map.keys($contrasts), $i); - - &:nth-child(#{$i}) { - background-color: fn.global-color(--base $key); - } - } - } - - @each $palette-name, $palette in map.get(config.$themes, config.$theme-default, --palettes) { - $contrasts: map.get(config.$themes, config.$theme-default, --contrasts, list.nth($palette, 2)); - - @include iro.bem-modifier(string.slice($palette-name, 3)) { - @include iro.bem-elem('item') { - @for $i from 1 through list.length($contrasts) { - $key: list.nth(map.keys($contrasts), $i); - - &:nth-child(#{$i}) { - background-color: fn.global-color($palette-name $key); - } - } - } - } - } - - @include iro.bem-modifier('static') { - @each $palette-name, $palette in map.get(config.$static-colors, --palettes) { - $contrasts: map.get(config.$static-colors, --contrasts); - - @include iro.bem-modifier(string.slice($palette-name, 3)) { - @include iro.bem-elem('item') { - @for $i from 1 through list.length($contrasts) { - $key: list.nth(map.keys($contrasts), $i); - - &:nth-child(#{$i}) { - background-color: fn.global-color(#{$palette-name}-static $key); - } - } - } - } - } - } - } -} -- cgit v1.2.3-70-g09d2