Skip to content

Instantly share code, notes, and snippets.

@vzaidman
Last active July 23, 2019 17:40
Show Gist options
  • Save vzaidman/3a10d8c44c63ed529928428ca11008f3 to your computer and use it in GitHub Desktop.
Save vzaidman/3a10d8c44c63ed529928428ca11008f3 to your computer and use it in GitHub Desktop.
CSS Theme Organization Best Practices from the article https://medium.com/@vzaidman/css-theme-organization-best-practices-a8e375d92c7c
html.colors {
...
--red: #d47c7c;
}
html.enteties {
...
--action-button-background-color: var(--red);
}
.action-button {
...
background-color: var(--action-button-background-color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment