you define them after the original. With !default, it works the other way around. $variable: ‘two’; value = ‘two’ $variable: ‘two’; $variable: ‘one’ !default; value = ‘two’ If $variable is defined before !default, that overrides it. If it’s never defined, then !default is the value.