Emotion Theme 적용하기
2023. 2. 4. 21:17
사전 과제를 Emotion으로 진행하다 Figma에 정의된 Element들이 있어서 Theme을 사용하기로 했다. 1. Theme 정의하기 // theme.ts const palette = { primary: "#4880EE", secondary: "#F2F4F6", }; const typography = { title1: { fontFamily: "Noto Sans KR", fontStyle: "normal", fontWeight: 700, fontSize: "24px", lineHeight: "24px", }, title2: {}, title3: {}, body1: {}, body2: {}, "body2-bold": {}, caption: {}, small: {}, }; export const the..