#{}
  • References/CSS/Sass/SassScript

Interpolation: #{} You can also use SassScript variables in selectors and property names using #{} interpolation

2025-01-10 15:47:30
red
  • References/CSS/Sass/Functions

red($color) Gets the red component of a color. Calculated from HSL where necessary via

2025-01-10 15:47:30
map_keys
  • References/CSS/Sass/Functions

map_keys($map) Returns a list of all keys in a map.

2025-01-10 15:47:30
map_get
  • References/CSS/Sass/Functions

map_get($map, $key) Returns the value in a map associated with the given key. If the map doesn’t have such a key, returns

2025-01-10 15:47:30
@import
  • References/CSS/Sass/@-Rules and Directives

@import Sass extends the CSS @import rule to allow it to import SCSS and Sass files. All imported SCSS and Sass files

2025-01-10 15:47:30
lightness
  • References/CSS/Sass/Functions

lightness($color) Returns the lightness component of a color. See

2025-01-10 15:47:30
@error
  • References/CSS/Sass/@-Rules and Directives

@error The @error directive throws the value of a SassScript expression as a fatal error, including a nice stack

2025-01-10 15:47:30
global_variable_exists
  • References/CSS/Sass/Functions

global_variable_exists($name) Check whether a variable with the given name exists in the global scope (at the top level of

2025-01-10 15:47:30
ceil
  • References/CSS/Sass/Functions

ceil($number) Rounds a number up to the next whole number.

2025-01-10 15:47:30
@if
  • References/CSS/Sass/@-Rules and Directives

@if The @if directive takes a SassScript expression and uses the styles nested beneath it if the expression returns

2025-01-10 15:47:30