为什么我得到意外的名字或十六进制数字错误?

时间:2018-05-23 09:09:53

标签: css sass stylelint

我想知道为什么我不能在我的scss文件中添加background-color: red;属性:

#my_container {
    background-color: red; # Added this line and #efefef doesn't work either

在Grunt上打印错误:

src/sass/app_2/_common/layout/layouts.scss:7:27
  ✖  7:27  Unexpected named color red  color-named

可能是来自Styelint或编译器的错误。如果您需要任何细节,请告诉我。

1 个答案:

答案 0 :(得分:4)

该错误来自Stylelint,因为您有一条禁用命名颜色的规则:https://stylelint.io/user-guide/rules/color-named/