Created
March 1, 2022 18:43
-
-
Save dlgombert/e0ab371484eac159efea5b3538efac17 to your computer and use it in GitHub Desktop.
[Invision white board scheme (my take)] Random css theme from an invision-template I liked #css #color
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 { | |
| --gray-dark: #666b79; | |
| --gray-light:#dddfe2; | |
| --orange-dark:#fec065; | |
| --orange-light:#fdefcc; | |
| --green-dark:#a1c86d; | |
| --green-light:#e8f3dc; | |
| --forest-dark:#77bb7c; | |
| --forest-light:#d7f0da; | |
| --teal-dark:#71d3be; | |
| --teal-light:#d5f0ef; | |
| --blue-dark:#69b8f7; | |
| --blue-light:#d5eeff; | |
| --indigo-dark:#6b73ba; | |
| --indigo-light:#dfdefc; | |
| --purple-dark:#a34aae; | |
| --purple-light:#e4e0e8; | |
| --red-dark:#d64168; | |
| --peach-dark:#ffb297; | |
| --peach-light:#ffe1df; | |
| --dark-navy:#0e3e66; | |
| } | |
| .gd{ | |
| background:var(--gray-light); | |
| border-color:var(--gray-dark); | |
| } | |
| .od{ | |
| background:var(--orange-light); | |
| border-color:var(--orange-dark); | |
| } | |
| .grd{ | |
| background:var(--green-light); | |
| border-color:var(--green-dark); | |
| } | |
| .fd{ | |
| background:var(--forest-light); | |
| border-color:var(--forest-dark); | |
| } | |
| .td{ | |
| background:var(--teal-light); | |
| border-color:var(--teal-dark); | |
| } | |
| .bd{ | |
| background:var(--blue-light); | |
| border-color:var(--blue-dark); | |
| } | |
| .id{ | |
| background:var(--indigo-light); | |
| border-color:var(--indigo-dark); | |
| } | |
| pd{ | |
| background:var(--purple-light); | |
| border-color:var(--purple-dark); | |
| } | |
| .rd{ | |
| border-color:var(--red-dark); | |
| color:var(--red-dark); | |
| } | |
| .ped{ | |
| background:var(--peach-light); | |
| border-color:var(--peach-dark); | |
| } | |
| .nd{ | |
| color:var(--navy-dark); | |
| border-color:var(--navy-dark); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment