CSS icon
• 🥨 3 min read

Give Your CSS Superpowers with CSS Variables

Animated Monica

By: Monica Powell


What are CSS variables?

CSS variables or CSS custom properties are a way to declare reusable values within a CSS project. CSS variables can greatly reduce the repetition of code and allow us to reference more semantically meaningful names throughout our stylesheets like “—accent-color” versus the actual value they represent “#b5838d”.

screenshot of CSS variable compatibility Current CSS Variables Browser Support (Source: MDN Web Docs)

How to declare CSS variables

In order to use CSS variables you should create a CSS custom property, which is a string prepended with a double hyphen --. These properties are scoped and available based on their selector. Generally, it is recommended to make the selector the pseudoselector :root so that it will apply throughout an entire site. If you select a more specific selector then the scope of where you can access the value of the variable changes accordingly.

Below is an example showing 5 different CSS variables being declared to represent different colors within a stylesheet.

:root {
  --white: #fff;
  --accent-color: #b5838d;
  --dark-accent-color: #a6757f;
  --main-color: #6d6875;
  --dark-main-color: #56505f;
}

In order to access the these CSS values throughout our CSS we can use the var() method like var(--accent-color). The following example selects the element with the signup class and changes its background-color to #b5838d.

.signup {
  background-color: var(--accent-color);
}

Since the value of --accent-color is being set with a CSS variable if we later decide to change the value of var(--accent-color) we only have to change it in one place, where the variables value is declared. Once the value of the variable is updated its new value will automatically be reflected everywhere var(--accent-color) is referenced. Being able to change the color in one place for a multitude of unrelated elements that are only coupled by color is powerful.

The Power of CSS Variables

CSS variables allow you to quickly play around with a color scheme and tweak the same color everywhere it is referenced without having to do a find and replace. Additionally, setting up CSS variables can improve the developer experience when creating color schemes, as you can switch the variable declaration values between themes without having to explicitly change the values within the rest of the stylesheet.

The two screenshots below show the difference in appearance when one line in the CSS file is changed from --accent-color: orange; to --accent-color: #b5838d; which is used in two completely separate places — on the card’s border-top property and the background color for the signup button. This can be very useful as stylesheets grow and values are re-used throughout.

--accent-color: orange;--accent-color: #b5838d;

Explore CSS variables!

Play around with the CSS variable values by editing the below Codepen to see CSS variables in action!

https://codepen.io/M0nica/pen/jObpJma

Likes & Reposts

Shared by GregShared by :party-corgi:Shared by €sther🌹Shared by Prototypr.IOShared by AngieShared by NatalieShared by MohandShared by PercocetShared by CallShared by ryanShared by UKBlackTechShared by Skillz

+58

Discussion

  • mentioned on November 4, 2020
    via

    CSS variables can greatly reduce the repetition of code. #programmer #javascript #programming #network #FrontEnd #coding #android #developer #development #css #uiux #websites aboutmonica.com/blog/give-your…

  • mentioned on September 23, 2020
    via

    This is marvelous! remember to take time out and go through her other articles; concise and straight to the point : ) #100DaysOfCode #CSS

  • mentioned on July 17, 2020
    via

    Give Your CSS Superpowers with CSS Variables, by @waterproofheart aboutmonica.com/blog/give-your…

  • mentioned on May 26, 2020
    via

    If you want to supercharge your CSS skills with CSS variables, check out this tutorial and demo from @waterproofheart aboutmonica.com/blog/give-your… #ArtTechChat #ArtTechChatDaily