我试图找到从函数输出多个颜色值的最有效方法。该函数(最终将)采用基色并使用 sass 函数输出配色方案(想想互补、三级、单色等)。
这是我产生错误的代码
背景颜色:#020633,颜色:b7bced 不是有效的 CSS 值
我确定我需要用分号替换逗号,我只是不确定我是否可以或者我是否正确地处理这个问题。
$base-color: #0a104e;
@function darkest-color($darkest-base-color-bg) {
//figure the backgound
$darkest-bg-color: scale-color($darkest-base-color-bg, $saturation: 66%, $lightness: -40%, $alpha: 100%);
//figure the text
$darkest-text-color-nocontrast: scale-color($darkest-base-color-bg, $saturation: 66%, $lightness: 40%, $alpha: 100%);
//figure the contrast between the background and the text
$darkest-text-color: color_adjust_contrast_AERT($darkest-text-color-nocontrast, $darkest-base-color-bg);
//add the two colors to a map
$darkest-color: '';
@return $darkest-color (background-color: $darkest-bg-color, color:$darkest-text-color, );
}
.darkest-accent-strip {
content: darkest-color($base-color);
}