You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vizality/renderer/src/styles/utils/functions/_color.scss

9 lines
303 B

// Shorthand for `color` CSS custom properties
// @todo: Needs improved to work with fallback values
@function color($propertyName, $alpha: null) {
@if $alpha {
@return unquote('hsl(var(--vz-color-#{$propertyName}) / #{$alpha})');
}
@return unquote('hsl(var(--vz-color-#{$propertyName}))');
}