aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/theme/ThemeProvider.js
blob: a104a5a61026a6ee81f968cba7723b8ce97c48ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react'
import { ThemeProvider } from 'styled-components'

const theme = {
  colors: {
    background: '#faf9f5',
    border: '#565656',
    text: '#111111',
  },
}

export default ({ children }) => <ThemeProvider theme={theme}>{children}</ThemeProvider>