Skip to content

Instantly share code, notes, and snippets.

@egstad
Created July 11, 2016 21:26
Show Gist options
  • Save egstad/83a0f80cbc68d6240eeec8971a907faf to your computer and use it in GitHub Desktop.
Save egstad/83a0f80cbc68d6240eeec8971a907faf to your computer and use it in GitHub Desktop.
'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