Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Created September 20, 2017 12:01
Show Gist options
  • Save adikahorvath/15a4830ca419ee42d99368fae8422639 to your computer and use it in GitHub Desktop.
Save adikahorvath/15a4830ca419ee42d99368fae8422639 to your computer and use it in GitHub Desktop.
CSS variable
:root {
--color-green: rgba(0,255,0);
}
html, body {
background: var(--color-green);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment