Initial commit.

This commit is contained in:
Matt Swensen 2016-11-21 06:57:01 -07:00
commit bbf12ce62e
6 changed files with 1715 additions and 0 deletions

3
.babelrc Normal file

@ -0,0 +1,3 @@
{
"presets": ["latest"]
}

10
.editorconfig Normal file

@ -0,0 +1,10 @@
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

2
.gitignore vendored Normal file

@ -0,0 +1,2 @@
node_modules
lib

21
package.json Normal file

@ -0,0 +1,21 @@
{
"name": "themer-colors-default",
"version": "1.0.0",
"description": "A default color scheme for themer.",
"main": "lib/index.js",
"author": "mjswensen",
"repository": {
"url": "git@github.com:mjswensen/themer-colors-default.git",
"type": "git"
},
"license": "MIT",
"scripts": {
"build": "babel --out-dir lib src",
"start": "watch 'yarn run build' src"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"watch": "^1.0.1"
}
}

47
src/index.js Normal file

@ -0,0 +1,47 @@
export const colors = {
dark: {
accent0: '#FF4050',
accent1: '#F28144',
accent2: '#FFD24A',
accent3: '#A4CC35',
accent4: '#26C99E',
accent5: '#66BFFF',
accent6: '#CC78FA',
accent7: '#F553BF',
shade0: '#282629',
shade1: '#474247',
shade2: '#656066',
shade3: '#847E85',
shade4: '#A29DA3',
shade5: '#C1BCC2',
shade6: '#E0DCE0',
shade7: '#FFFCFF',
},
light: {
accent0: '#F03E4D',
accent1: '#F37735',
accent2: '#EEBA21',
accent3: '#97BD2D',
accent4: '#1FC598',
accent5: '#53A6E1',
accent6: '#BF65F0',
accent7: '#EE4EB8',
shade0: '#FFFCFF',
shade1: '#E0DCE0',
shade2: '#C1BCC2',
shade3: '#A29DA3',
shade4: '#847E85',
shade5: '#656066',
shade6: '#474247',
shade7: '#282629',
},
};

1632
yarn.lock Normal file

File diff suppressed because it is too large Load Diff