为什么会出现意外的名称或十六进制数字错误?

How come I'm getting unexpected name or hex number error?

我想知道为什么我不能在我的 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 或编译器的错误。如果您需要任何详细信息,请告诉我。

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