我遇到了一个问题,我可以更容易地定义两个基本地图,这些地图可以使用单个变量轻弹(似乎更容易为基础,明/暗主题)
https://codepen.io/anon/pen/bLwNaW
我正在尝试设置$ theme-being-used,在If / Else中检查它并根据该结果使用特定的地图。 这使我很容易进入并将$ theme-being-used设置为dark并更改所有基本变量。
我试过了:
@if (#{$theme-being-used} == light) {
@if ($theme-being-used == light) {
@if (#{$theme-being-used} == "light") {, etc..
有谁知道这是否可以做到?这两种方式都不是什么大问题,只需节省一点时间就可以抛出模板化的网站。
在我通过简单地评论/取消注释代码来实现这一目标之前,即
$palette: (
// Light
ui: (
primary: #FFFFFF,
secondary: #EEEEEE,
alternate: #DDDDDD
),
// Dark - COMMENTED when I want to use light variables
/*ui: (
primary: #333,
secondary: #444,
alternate: #555
),*/
);
这很好很快,但是在一个地方设置它并且不必这样做更容易。
感谢。
答案 0 :(得分:2)
将$theme-being-used
检查到_palette
功能。此功能只接受一个参数 - 颜色名称。并且包含其内部的所有颜色选择逻辑。
Sassmeister demo。
$theme-being-used: light;
$palette: (
dark: (
primary: red,
secondary: orange,
tertiary: blue
),
light: (
primary: green,
secondary: black,
tertiary: yellow
)
);
@function _palette($color-name, $theme-name: $theme-being-used) {
// Select one of available themes
// Here there may be more complex logic in choosing themes
$theme: map-get($palette, #{$theme-name});
// Get the color from theme
@return map-get($theme, #{$color-name});
}
.s-o {
background: _palette(primary);
&:hover {
background: _palette(secondary);
}
}