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

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

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