custom.css 中的 Shopify 品牌颜色

问题描述 投票:0回答:1

我已在 Shopify > 设置 > 品牌中设置了品牌主色

我会在 custom.css 中使用这种颜色。

有没有办法做到这一点(我不想在CSS中硬编码颜色)?

css shopify
1个回答
0
投票

.css.liquid
文件中,您可以尝试以下版本:

.container {
  background: {{ shop.brand.colors.primary[0].background }};
}

它将编译为:

.container {
  background: #0b101f;
}

有关包含品牌资产,特别是颜色的更多文档:

© www.soinside.com 2019 - 2024. All rights reserved.