Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Last active May 22, 2021 10:16
Show Gist options
  • Save dipeshhkc/faa70b6aa7e960e1d959f3fb1a6a2f6c to your computer and use it in GitHub Desktop.
Save dipeshhkc/faa70b6aa7e960e1d959f3fb1a6a2f6c to your computer and use it in GitHub Desktop.
import { ThemeProvider } from "react-jss"
const theme = {
black: "#000000",
primary: "#0c0c0c",
secondary: "#898880",
secondaryLight: "#C5C3BC",
accent: "#80722A",
accentMid: "#E9E7DE"
}
const App = ({ Component, pageProps }) => {
return (
<ThemeProvider theme={theme}>
<Layout>
<Header />
<Content>
<Component {...pageProps} />
</Content>
<Footer />
</Layout>
</ThemeProvider>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment