Using SASS, I would like to have multiple condition in IF statement
What I use right now :
@function color-x ($alpha) {
@if $accent == red {@return red($alpha)}
@else if $accent == green {@return green($alpha)}
@else if $accent == blue {@return blue($alpha)}
}
My naive (failed) attempt to use multiple conditions :
@function color-x ($alpha) {
@if $accent == red && theme == light {@return red($alpha)}
@else if $accent == green && theme == light {@return green($alpha)}
@else if $accent == blue && theme == light {@return blue($alpha)}
}
Is it possible to have multiple conditions?
You can also do:
Beware though:
null
, not a boolean.From the Sass language reference documentation:
(link)
So an if statement expression with a compound condition would look like this:
Further, parentheses can be used to affect the order of operations in a more complicated expression: