Created
July 11, 2016 21:26
-
-
Save egstad/83a0f80cbc68d6240eeec8971a907faf 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
'use strict'; | |
export const colors = { | |
'red': { | |
'dark': true, | |
'colors': ['d50000'] | |
}, | |
'redViolet': { | |
'dark': true, | |
'colors': ['c51162'] | |
}, | |
'violet': { | |
'dark': true, | |
'colors': ['aa00ff'] | |
}, | |
'blueViolet': { | |
'dark': true, | |
'colors': ['6200ea'] | |
}, | |
'blue': { | |
'dark': true, | |
'colors': ['304ffe'] | |
}, | |
'blueGreen': { | |
'dark': false, | |
'colors': ['00bfa5'] | |
}, | |
'green': { | |
'dark': true, | |
'colors': ['00c853'] | |
}, | |
'yellowGreen': { | |
'dark': false, | |
'colors': ['b6bf06'] | |
}, | |
'yellow': { | |
'dark': false, | |
'colors': ['ffd600'] | |
}, | |
'yellowOrange': { | |
'dark': false, | |
'colors': ['ffab00'] | |
}, | |
'orange': { | |
'dark': true, | |
'colors': ['ff6d00'] | |
}, | |
'redOrange': { | |
'dark': true, | |
'colors': ['dd2c00'] | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment