-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from osohyun0224/master
✨ feat :: 공용 컴포넌트 및 개발 styles 파일 정의
- Loading branch information
Showing
13 changed files
with
447 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
.env | ||
node_modules | ||
dist | ||
.DS_Store | ||
build-storybook.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
node_modules/ | ||
src/ | ||
public/ | ||
tsconfig.json | ||
.storybook/ | ||
.babelrc.json | ||
.eslintrc.json | ||
.prettierrc | ||
webpack.config.js |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
export interface colorType extends Record<string, string> {} | ||
|
||
export const Colors = { | ||
Black: '#000000', | ||
Gray900: '#191F28', | ||
Gray800: '#333D4B', | ||
Gray700: '#4E5968', | ||
Gray600: '#6B7684', | ||
Gray500: '#8B95A1', | ||
Gray400: '#B0B8C1', | ||
Gray300: '#D1D6DB', | ||
Gray200: '#E5E8EB', | ||
Gray100: '#F2F4F6', | ||
Gray50: '#F9FAFB', | ||
White: '#FFFFFF', | ||
Ibory: 'rgba(189,210,225,0.38)', | ||
Primary: '#4196FD', | ||
PrimaryLight: '#0067FF1A', | ||
PrimaryDark: '#3a83de', | ||
Secondary: '#90C9F6', | ||
SecondaryLight: '#90C9F61A', | ||
Error: '#DA1E28', | ||
ErrorLight: '#FF57611A', | ||
Kakao: '#F1DA2A', | ||
KakaoDark: '#ceba24', | ||
Secondary02: '#F2B81E', | ||
Yellow: '#FFBB05', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Colors } from './color' | ||
|
||
export { | ||
Colors, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { defineConfig } from 'vite'; | ||
import react from '@vitejs/plugin-react'; | ||
import path from 'path'; | ||
|
||
export default defineConfig({ | ||
plugins: [react()], | ||
resolve: { | ||
alias: { | ||
'@components': path.resolve(__dirname, 'src/components') | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
resolve: { | ||
alias: { | ||
'@components': path.resolve(__dirname, 'src/components/'), | ||
'@styles': path.resolve(__dirname, 'src/styles/') | ||
} | ||
} | ||
}; |