SASS if with or 语句?

SASS if with or statement?

是否可以在 SASS 中创建 or 语句?

像这样:

@if $color == "red" || "blue"
  width: 100%

你可以这样做:

@if $color == red or blue
    width: 100%