1. 문제상황/src/styles에 공통 theme을 적용하기 위하여 theme.ts를 작성하였다.export const theme = { colors: { standard: '#1E40AF', background: '#1e3a8a', // 생략} as const;export type Theme = typeof theme;export default theme;하지만 위 사진처럼 theme에서 DefaultTheme 형식에 'colors' 속성이 없다는 오류가 발생하였다.기존에 진행하는 프로젝트에서는 따로 styled.d.ts를 지정하지 않아도 정상적으로 읽어와졌었지만,신규프로젝트를 생성하면서 읽어오지 못하는 오류가 발생하였다. DefaultTheme 형식에 'colors' 속성이 없다는..