Created
July 22, 2020 13:11
-
-
Save edwingustafson/bfc93216653a79269cdedbc72ace2608 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
| /* Commodore 64 color values from https://www.c64-wiki.com/wiki/Color */ | |
| :root { | |
| --c64-black: #000000; | |
| --c64-white: #ffffff; | |
| --c64-red: #880000; | |
| --c64-cyan: #aaffee; | |
| --c64-violet: #cc44cc; --c64-purple: var(--c64-violet); | |
| --c64-green: #00cc55; | |
| --c64-blue: #0000aa; | |
| --c64-yellow: #eeee77; | |
| --c64-orange: #dd8855; | |
| --c64-brown: #664400; | |
| --c64-lightred: #ff7777; | |
| --c64-darkgrey: #333333; --c64-darkgray: var(--c64-darkgrey); -c64-grey1: var(--c64-darkgrey); --c64-gray1: var(--c64-darkgray); | |
| --c64-grey2: #777777; --c64-gray2: var(--c64-grey2); | |
| --c64-lightgreen: #aaff66; | |
| --c64-lightblue: #0088ff; | |
| --c64-lightgrey: #bbbbbb; --c64-lightgray: var(--c64-lightgrey); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment