Remove last style configs in JS

This commit is contained in:
Lukas Martinelli
2017-01-11 14:11:45 +01:00
parent 840778b64f
commit fed1f09434
19 changed files with 19 additions and 137 deletions

View File

@@ -1,29 +0,0 @@
const baseColors = {
black: '#1c1f24',
gray: '#26282e',
midgray: '#36383e',
lowgray: '#8e8e8e',
white: '#f0f0f0',
blue: '#00d9f7',
green: '#B4C7AD',
orange: '#fb3',
red: '#cf4a4a',
}
const themeColors = {
primary: baseColors.gray,
secondary: baseColors.midgray,
default: baseColors.gray,
info: baseColors.blue,
success: baseColors.green,
warning: baseColors.orange,
error: baseColors.red
}
const colors = {
...baseColors,
...themeColors
}
export default colors

View File

@@ -1,2 +0,0 @@
export const margins = [3, 5, 10, 30, 40]
export const fontSizes = [24, 20, 18, 16, 14, 12]

View File

@@ -1,9 +0,0 @@
import colors from './colors'
import { margins, fontSizes } from './scales'
const dark = {
color: colors.white,
fontFamily: 'Roboto, sans-serif',
}
export default dark