Skip to content

Instantly share code, notes, and snippets.

@nicolasleal570
Last active September 21, 2021 15:19
Show Gist options
  • Save nicolasleal570/1309074b4380c20a6a793400753a90e0 to your computer and use it in GitHub Desktop.
Save nicolasleal570/1309074b4380c20a6a793400753a90e0 to your computer and use it in GitHub Desktop.
Variables en CSS
/* Setting up CSS variables */
:root {
--main-color: #5480f6;
--main-hover-color: #5b5deb;
}
body {
/* Using CSS variables */
background: var(--main-color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment