跳到主要内容

sass

渐变色

$theme-color: red;

@mixin linear-gradient-right {
background: linear-gradient(to right, $theme-color, blue);
}

@mixin linear-gradient($direction: (to right), $colors: ($theme-color, blue)) {
background: linear-gradient($direction, $colors);
}