@use 'sass:list'; @use 'iro-sass/src/index' as iro; @use '../functions' as fn; $themes: 'accent' 'negative'; $static-themes: 'black' 'white'; @mixin theme($theme: null) { $key: if($theme == null, (), --#{$theme}); &:link, &:visited, &:enabled { border-color: transparent; background-color: fn.color(list.join($key, --bg)); color: fn.color(list.join($key, --label)); } @include iro.bem-modifier('outline') { &:link, &:visited, &:enabled { border-color: fn.color(list.join($key, --outline-border)); background-color: transparent; color: fn.color(list.join($key, --outline-label)); } } &:link, &:visited, &:enabled { &:hover { border-color: transparent; background-color: fn.color(list.join($key, --hover --bg)); color: fn.color(list.join($key, --hover --label)); } &:active { border-color: transparent; background-color: fn.color(list.join($key, --active --bg)); color: fn.color(list.join($key, --active --label)); } } } @mixin static-theme($theme, $disabled-theme: $theme) { $key: --static-#{$disabled-theme}; border-color: transparent; background-color: fn.color(list.join($key, --disabled --bg)); color: fn.color(list.join($key, --disabled --label)); @include theme(static-#{$theme}); } @include iro.props-namespace('button') { @include iro.props-store(( --dims: ( --line-height: 1.4, --pad-i: fn.global-dim(--size --225), --pad-b: fn.global-dim(--size --65), --border: fn.global-dim(--border --medium), --rounding: 10em, --font-size: fn.global-dim(--font-size --100), --sm: ( --pad-i: fn.global-dim(--size --150), --pad-b: fn.global-dim(--size --25), --font-size: fn.global-dim(--font-size --75), ), --lg: ( --pad-i: fn.global-dim(--size --300), --pad-b: fn.global-dim(--size --100), --font-size: fn.global-dim(--font-size --150), ), --xl: ( --pad-i: fn.global-dim(--size --400), --pad-b: fn.global-dim(--size --150), --font-size: fn.global-dim(--font-size --200), ), --key-focus: ( --border: fn.global-dim(--key-focus --border), ), ), --colors: ( --bg: fn.global-color(--border-mute), --label: fn.global-color(--text), --outline-border: fn.global-color(--border), --outline-label: fn.global-color(--text), --hover: ( --bg: fn.global-color(--border), --label: fn.global-color(--heading), ), --active: ( --bg: fn.global-color(--border-strong), --label: fn.global-color(--heading), ), --disabled: ( --bg: fn.global-color(--border-mute), --outline-border: fn.global-color(--border), --label: fn.global-color(--text-disabled), ), --key-focus: ( --bg: fn.global-color(--base --50), --label: fn.global-color(--heading), --border: fn.global-color(--focus-static --400), ), --primary: ( --bg: fn.global-color(--base --800), --label: fn.global-color(--base --800-text), --outline-border: fn.global-color(--base --800), --outline-label: fn.global-color(--text), --hover: ( --bg: fn.global-color(--base --900), --label: fn.global-color(--base --900-text), ), --active: ( --bg: fn.global-color(--base --900), --label: fn.global-color(--base --900-text), ), ), ), )); @each $theme in $themes { @include iro.props-store(( --colors: ( --#{$theme}: ( --bg: fn.global-color(--#{$theme}-static --900), --label: fn.global-color(--#{$theme}-static --900-text), --outline-border: fn.global-color(--#{$theme} --900), --outline-label: fn.global-color(--#{$theme} --1000), --hover: ( --bg: fn.global-color(--#{$theme}-static --1000), --label: fn.global-color(--#{$theme}-static --1000-text), ), --active: ( --bg: fn.global-color(--#{$theme}-static --1100), --label: fn.global-color(--#{$theme}-static --1100-text), ), ), ), )); } @each $theme in $static-themes { @include iro.props-store(( --colors: ( --static-#{$theme}: ( --bg: fn.global-color(--#{$theme}-transparent --200), --label: fn.global-color(--#{$theme}-transparent --900), --outline-border: fn.global-color(--#{$theme}-transparent --300), --outline-label: fn.global-color(--#{$theme}-transparent --900), --disabled: ( --bg: fn.global-color(--#{$theme}-transparent --200), --outline-border: fn.global-color(--#{$theme}-transparent --100), --label: fn.global-color(--#{$theme}-transparent --500), ), --hover: ( --bg: fn.global-color(--#{$theme}-transparent --300), --label: fn.global-color(--#{$theme}-transparent --900), ), --active: ( --bg: fn.global-color(--#{$theme}-transparent --400), --label: fn.global-color(--#{$theme}-transparent --900), ), ), --static-#{$theme}-primary: ( --bg: fn.global-color(--#{$theme}-transparent --800), --label: fn.global-color(--#{$theme}-transparent --text), --outline-border: fn.global-color(--#{$theme}-transparent --800), --outline-label: fn.global-color(--#{$theme}-transparent --900), --hover: ( --bg: fn.global-color(--#{$theme}-transparent --900), --label: fn.global-color(--#{$theme}-transparent --text), ), --active: ( --bg: fn.global-color(--#{$theme}-transparent --900), --label: fn.global-color(--#{$theme}-transparent --text), ), ), ), )); } @include iro.bem-object(iro.props-namespace()) { display: inline-block; padding-block: fn.dim(--pad-b); padding-inline: fn.dim(--pad-i); border: fn.dim(--border) solid transparent; border-radius: fn.dim(--rounding); border-color: fn.color(--disabled --bg); background-color: fn.color(--disabled --bg); color: fn.color(--disabled --label); font-size: fn.dim(--font-size); font-weight: 500; line-height: fn.dim(--line-height); text-align: center; text-decoration: none; @include iro.bem-modifier('block') { display: block; } @include iro.bem-modifier('outline') { border-color: fn.color(--disabled --outline-border); background-color: transparent; box-shadow: none; } @each $size in sm lg xl { @include iro.bem-modifier($size) { padding-block: fn.dim(--#{$size} --pad-b); padding-inline: fn.dim(--#{$size} --pad-i); font-size: fn.dim(--#{$size} --font-size); } } @include theme(); @include iro.bem-modifier('primary') { @include theme('primary'); } @each $theme in $themes { @include iro.bem-modifier($theme) { @include theme($theme); } } @each $theme in $static-themes { @include iro.bem-modifier(static-#{$theme}) { @include static-theme($theme); } @include iro.bem-modifier(static-#{$theme}-primary) { @include static-theme(#{$theme}-primary, $theme); } } &:link, &:visited, &:enabled { &:focus-visible { border-color: fn.color(--key-focus --border); background-color: fn.color(--key-focus --bg); box-shadow: 0 0 0 calc(fn.dim(--key-focus --border) - fn.dim(--border)) fn.color(--key-focus --border); color: fn.color(--key-focus --label); } } @include iro.bem-modifier('round') { inline-size: calc(1em * fn.dim(--line-height) + 2 * fn.dim(--pad-b)); padding-inline: 0; border-radius: 100em; } } }