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}; } `