diff --git a/.github/ISSUE_TEMPLATE/chore.md b/.github/ISSUE_TEMPLATE/chore.md new file mode 100644 index 00000000..3bb9f289 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/chore.md @@ -0,0 +1,16 @@ +--- +name: Chore +about: 간단한 작업 수정 이슈 +title: 'Chore' +labels: '⚒️ chore' +--- + +## 👨‍🔧 버그 수정 사항 + + + +- [ ] chore-1 + +## 📖 참고 사항 + + diff --git a/src/styles/ThemeProvider/index.tsx b/src/styles/ThemeProvider/index.tsx index 4a5f0893..c10c7aa5 100644 --- a/src/styles/ThemeProvider/index.tsx +++ b/src/styles/ThemeProvider/index.tsx @@ -2,7 +2,7 @@ import { ThemeProvider as Provider } from '@emotion/react'; import Global from '@styles/Global'; import { ReactNode } from 'react'; -import { theme } from './theme'; +import { THEME } from './theme'; interface ThemeProviderProps { children: ReactNode; @@ -12,7 +12,7 @@ const ThemeProvider = ({ children }: ThemeProviderProps) => { return ( <> - {children} + {children} ); }; diff --git a/src/styles/ThemeProvider/theme.ts b/src/styles/ThemeProvider/theme.ts index e0ba82a4..36609678 100644 --- a/src/styles/ThemeProvider/theme.ts +++ b/src/styles/ThemeProvider/theme.ts @@ -1,20 +1,20 @@ import { Theme } from '@emotion/react'; -export const theme: Theme = { - background: '#EAEAEA', +export const THEME: Theme = { + BACKGROUND: '#EAEAEA', - text: { - black: '#000000', - gray: '#808080', - white: '#FFFFFF', + TEXT: { + BLACK: '#000000', + GRAY: '#808080', + WHITE: '#FFFFFF', }, - primary: '#71BC5C', + PRIMARY: '#71BC5C', - button: { - green: '#71BC5C', - gray: '#E7E7E7', + BUTTON: { + GREEN: '#71BC5C', + GRAY: '#E7E7E7', }, - modalBackground: 'rgba(0, 0, 0, 0.6)', + MODAL_BACKGROUND: 'rgba(0, 0, 0, 0.6)', }; diff --git a/src/styles/emotion.d.ts b/src/styles/emotion.d.ts index e17a842a..61c7c309 100644 --- a/src/styles/emotion.d.ts +++ b/src/styles/emotion.d.ts @@ -2,20 +2,20 @@ import '@emotion/react'; declare module '@emotion/react' { export interface Theme { - background: string; // EAEAEA - text: { - black: string; - gray: string; - white: string; + BACKGROUND: string; // EAEAEA + TEXT: { + BLACK: string; + GRAY: string; + WHITE: string; }; - primary: string; // 71BC5C + PRIMARY: string; // 71BC5C - button: { - green: string; - gray: string; + BUTTON: { + GREEN: string; + GRAY: string; }; - modalBackground: string; + MODAL_BACKGROUND: string; } }