diff --git a/pages/_app.js b/pages/_app.js index c357600..0482dcc 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -8,5 +8,17 @@ function MyApp({ Component, pageProps }) { ); } - +const defaultTheme = { + colors: { + primary: '#22c1c3', + secondary: '#ff00c3', + background: 'transparent', + text: '#292929', + highlight: '#e095ed', + icon: '#292929', + }, + fonts: { + body: 'inherit', + }, +}; export default MyApp;