1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-27 05:24:38 +04:00
Files
tabler/scss/mixins/_functions.scss
T
2019-12-18 21:26:31 +01:00

21 lines
531 B
SCSS

//@function alpha-attribute($color, $background) {
// $percent: alpha($color) * 100%;
// $opaque: opacify($color, 1);
//
// @return mix($opaque, $background, $percent);
//}
@function theme-color-lighter($color) {
@return tint-color($color, 8);
}
@function str-replace($string, $search, $replace: "") {
$index: str-index($string, $search);
@if $index {
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
@return $string;
}