feature: add activeItem color

This commit is contained in:
George Lima 2018-12-10 14:05:06 -03:00
parent bc8c261b52
commit 7fb6fe934e
1 changed files with 5 additions and 1 deletions

View File

@ -11,6 +11,7 @@ const darkOne = '#7B00DD';
const lightOne = '#ffffff';
const brandOne = '#624cda';
const brandTwo = '#a6ede2';
const activeItem = '#F5CB00';
const appTheme = {
mode: DARK,
@ -27,6 +28,9 @@ const appTheme = {
sidebarBg: brandOne,
sidebarItem: brandTwo,
sidebarItemActive: lightOne,
cardBackgroundColor: '#000',
text: '#FFF',
activeItem,
},
size: {
title: 18,
@ -38,6 +42,6 @@ const appTheme = {
// $FlowFixMe
export const DoczWrapper = ({ children }) => <ThemeProvider theme={appTheme}>{children()}</ThemeProvider>;
export const GlobalStyle = createGlobalStyle`${normalize()}`;
export const GlobalStyle = createGlobalStyle`${[normalize()]}`;
export default appTheme;