import { FC } from 'react'; import { ThemeProvider, DefaultTheme } from 'styled-components'; const Theme: FC = ({ children }) => { const theme: DefaultTheme = { colors: { dark: { background: '#262626', text: 'white' }, light: { background: '#F9F9F9', text: 'black' } } }; return {children}; }; export default Theme;