Merge pull request #594 from crhallberg/fix-586

Fix Issue #586 (missing gray-9 and gray-10)
This commit is contained in:
John Otander 2018-10-02 13:34:16 -06:00 committed by GitHub
commit 7c7ace6c3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -75,6 +75,10 @@ http://tachyons.io/docs/themes/skins-pseudo/
.hover-gray-7:focus { color: var(--gray-7); }
.hover-gray-8:hover,
.hover-gray-8:focus { color: var(--gray-8); }
.hover-gray-9:hover,
.hover-gray-9:focus { color: var(--gray-9); }
.hover-gray-10:hover,
.hover-gray-10:focus { color: var(--gray-10); }
.hover-white:hover,
.hover-white:focus { color: var(--white); }
@ -375,6 +379,10 @@ http://tachyons.io/docs/themes/skins-pseudo/
.hover-bg-gray-7:focus { background-color: var(--gray-7); }
.hover-bg-gray-8:hover,
.hover-bg-gray-8:focus { background-color: var(--gray-8); }
.hover-bg-gray-9:hover,
.hover-bg-gray-9:focus { background-color: var(--gray-9); }
.hover-bg-gray-10:hover,
.hover-bg-gray-10:focus { background-color: var(--gray-10); }
.hover-bg-white:hover,
.hover-bg-white:focus { background-color: var(--white); }

View file

@ -46,6 +46,8 @@ be set to the current text color.
.gray-6 { color: var(--gray-6); }
.gray-7 { color: var(--gray-7); }
.gray-8 { color: var(--gray-8); }
.gray-9 { color: var(--gray-9); }
.gray-10 { color: var(--gray-10); }
.white { color: var(--white); }
.green-0 { color: var(--green-0); }
@ -205,6 +207,8 @@ be set to the current text color.
.bg-gray-6 { background-color: var(--gray-6); }
.bg-gray-7 { background-color: var(--gray-7); }
.bg-gray-8 { background-color: var(--gray-8); }
.bg-gray-9 { background-color: var(--gray-9); }
.bg-gray-10 { background-color: var(--gray-10); }
.bg-white { background-color: var(--white); }
.bg-green-0 { background-color: var(--green-0); }