Created
July 16, 2018 15:53
-
-
Save sebastiano-guerriero/f98871324b260bf986dc7312fb619edd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| /* typography */ | |
| --color-text: var(--gray-10); | |
| --color-text-heading: var(--black); | |
| --color-text-subtle: var(--gray-6); | |
| --color-link: var(--color-primary); | |
| --color-link-visited: var(--color-primary-dark); | |
| } | |
| body { | |
| color: var(--color-text); | |
| } | |
| h1, h2, h3, h4, form legend { | |
| color: var(--color-text-heading); | |
| } | |
| a { | |
| color: var(--color-link); | |
| &:visited { | |
| color: var(--color-link-visited); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment