1. Global.js

// Global.js

import { createGlobalStyle } from 'styled-components';
import reset from 'styled-reset';

const GlobalStyle = createGlobalStyle`
  ${reset}
  * {
    font-family: 'Nanum Gothic', 'Montoserrat', sans-serif;
    box-sizing: border-box;
  }
`;

export default GlobalStyle;

2. theme.js

// theme.js

const theme = {
	fontSize0: '11px',
  fontSize1: '14px',
  fontSize2: '15px',
  fontSize3: '16px',
  fontSize4: '18px',
  fontSize5: '20px',

  black: '#222222',
  grey: '#22222280',
  ligtGrey: '#ebebeb',
  darkGrey: '#222222CC',
  red: '#EF6253',
  green: '#41B979',
  blue: '#297DCB',

  btnRadius: '12px',
};

export default theme;

3. 공통 이미지