removing trailing commars

This commit is contained in:
Alex Windett 2017-02-20 14:18:19 +00:00
parent 211c4e2597
commit a54221011f
2 changed files with 9 additions and 9 deletions

View File

@ -30,5 +30,5 @@ module.exports = {
`, `,
bodyColor: css` bodyColor: css`
color: ${colors.base.text}; color: ${colors.base.text};
`, `
}; };

View File

@ -25,19 +25,19 @@ const primary = {
primaryDesaturatedActive: '#2D3884', primaryDesaturatedActive: '#2D3884',
primaryDark: '#2D3884', primaryDark: '#2D3884',
primaryDarkHover: '#34429D', primaryDarkHover: '#34429D',
primaryDarkActive: '#2D3884', primaryDarkActive: '#2D3884'
}; };
const secondary = { const secondary = {
secondary: '#464646', secondary: '#464646',
secondaryHover: '#3F3F3F', secondaryHover: '#3F3F3F',
secondaryActive: '#343434', secondaryActive: '#343434'
}; };
const white = { const white = {
white: '#FFFFFF', white: '#FFFFFF',
whiteHover: '#F8F8F8', whiteHover: '#F8F8F8',
whiteActive: '#E9E9E9', whiteActive: '#E9E9E9'
}; };
const base = { const base = {
@ -53,24 +53,24 @@ const base = {
orange: '#E38200', orange: '#E38200',
orangeDark: '#CB7400', orangeDark: '#CB7400',
red: '#DA4B42', red: '#DA4B42',
redDark: '#CD251B', redDark: '#CD251B'
}; };
const fonts = { const fonts = {
semibold: base.secondary, semibold: base.secondary,
regular: base.text, regular: base.text
}; };
const inactive = { const inactive = {
default: base.disabled, default: base.disabled,
border: base.grey, border: base.grey,
text: base.grey, text: base.grey
}; };
const notifications = { const notifications = {
alert: base.red, alert: base.red,
confirmation: base.green, confirmation: base.green,
warning: base.orange, warning: base.orange
}; };
const forms = { const forms = {
@ -84,7 +84,7 @@ const metrics = {
}; };
const topology = { const topology = {
topologyBackground: base.secondaryActive, topologyBackground: base.secondaryActive
}; };
const colors = { const colors = {