From 7fb6fe934e79ebfb5aedc1c2fe6155443eaf0368 Mon Sep 17 00:00:00 2001 From: George Lima Date: Mon, 10 Dec 2018 14:05:06 -0300 Subject: [PATCH] feature: add activeItem color --- app/theme.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/theme.js b/app/theme.js index 376d9ac..1e0e79e 100644 --- a/app/theme.js +++ b/app/theme.js @@ -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 }) => {children()}; -export const GlobalStyle = createGlobalStyle`${normalize()}`; +export const GlobalStyle = createGlobalStyle`${[normalize()]}`; export default appTheme;