Completely fixed theme colors

This commit is contained in:
Hazem Krimi
2021-09-05 16:44:33 +01:00
parent d665157e23
commit 9d4327f3c7
12 changed files with 50 additions and 46 deletions
+2 -2
View File
@@ -2,7 +2,6 @@ import { FC } from 'react';
import { ThemeProvider, DefaultTheme } from 'styled-components';
const Theme: FC = ({ children }) => {
// TODO: put theme colors in css custom properties and put common colors here.
const theme: DefaultTheme = {
colors: {
dark: {
@@ -12,7 +11,8 @@ const Theme: FC = ({ children }) => {
light: {
background: '#F9F9F9',
text: 'black'
}
},
blue: '#1573CA'
}
};