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

export default createGlobalStyle`
  body {
    margin: 0;
    padding: 0;
    background: ${(p) => p.theme.colors.background};
    font-family: 'JetBrains Mono', monospace;
    color: ${(p) => p.theme.colors.text};
  }
`