Use SCSS Variables for Readable and Maintainable Stylesheets

Ari Picker
InstructorAri Picker
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 5 years ago

Updating the same color or metric multiple times is no fun. SCSS variables improve maintainability by allowing one name to represent a value that can be used anywhere. SCSS variables also give us the power of creating our own naming conventions to express the intent of specific values. In this lesson we learn how to use SCSS variables to assign user friendly names to colors/metrics so one value change will update that value in all the right places.

[00:00] Variable names start with a dollar sign. We can name them with alphanumeric characters, underscores, or hyphens, but the first character after the dollar can't be a number or it's invalid. If we want to change all the green values to blue, we could update them all by hand, or we could use a variable instead. Let's compile, cool. When we need to update the value again, there's only one place to do it.

[00:28] When we nest variables, they have block scope and when we run the compiler, it worked. If we try to use the Elektra variable outside of the Elektra class, we get an error. Let's go ahead and try it anyway. Here's our error, Elektra is undefined.

[00:46] We can also override variables. Let's compile. Captain Marvel is red in all these instances, but its blue inside the block scope. Variables allow us to create naming conventions specific to our needs. We can create brand-specific color variables or font-related variables. We can even use variables in variables, and we can use them in any file just as long as they're imported before the files that actually use them.

[01:18] Let's give Elektra a font size so we can use a font size variable. Let's compile, check out the CSS. SASS variables can also be interpolated. This makes it easier to reuse verbose text -- let's compile -- and it really helps with naming conventions. To review, we can use alphanumeric characters, underscores, and hyphens to name variables. They allow us to update repeated values in one place. They can be block scoped, overridden, and interpolated.

kel
kel
~ 7 years ago

I like the teaching style of Ari Picker, hoping to get more courses from this guy soon.

Platon
Platon
~ 6 years ago

Is there a way to colorize variables in VSCode?

Like when

$red = rgb(255,0,0);
$foo = $red;

To make foo appear red? Or even $red appear red on second line, like it does with this markdown processor.

Markdown supported.
Become a member to join the discussionEnroll Today