-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
11 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,22 +1,22 @@ | ||
{ | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#7a74db", | ||
"activityBar.background": "#7a74db", | ||
"activityBar.activeBackground": "#9a95fa", | ||
"activityBar.background": "#9a95fa", | ||
"activityBar.foreground": "#15202b", | ||
"activityBar.inactiveForeground": "#15202b99", | ||
"activityBarBadge.background": "#ebb6b3", | ||
"activityBarBadge.foreground": "#15202b", | ||
"activityBarBadge.background": "#d5140a", | ||
"activityBarBadge.foreground": "#e7e7e7", | ||
"commandCenter.border": "#e7e7e799", | ||
"sash.hoverBorder": "#7a74db", | ||
"statusBar.background": "#534cd0", | ||
"sash.hoverBorder": "#9a95fa", | ||
"statusBar.background": "#6c64f8", | ||
"statusBar.foreground": "#e7e7e7", | ||
"statusBarItem.hoverBackground": "#7a74db", | ||
"statusBarItem.remoteBackground": "#534cd0", | ||
"statusBarItem.hoverBackground": "#9a95fa", | ||
"statusBarItem.remoteBackground": "#6c64f8", | ||
"statusBarItem.remoteForeground": "#e7e7e7", | ||
"titleBar.activeBackground": "#534cd0", | ||
"titleBar.activeBackground": "#6c64f8", | ||
"titleBar.activeForeground": "#e7e7e7", | ||
"titleBar.inactiveBackground": "#534cd099", | ||
"titleBar.inactiveBackground": "#6c64f899", | ||
"titleBar.inactiveForeground": "#e7e7e799" | ||
}, | ||
"peacock.color": "#534CD0" | ||
"peacock.color": "#6C64F8" | ||
} |
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,29 @@ | ||
{ | ||
"storyTemplate": { | ||
"prefix": "!story", | ||
"description": "storybook 기초 템플릿입니다.", | ||
"body": [ | ||
"import type { Meta, StoryObj } from '@storybook/react'", | ||
|
||
"", | ||
"const meta = {", | ||
" title: 'UI/컴포넌트이름',", | ||
" component: 컴포넌트이름,", | ||
" tags: ['autodocs'],", | ||
" argTypes: {},", | ||
"} satisfies Meta<typeof 컴포넌트이름>", | ||
"", | ||
"export default meta", | ||
"type Story = StoryObj<typeof meta>", | ||
"", | ||
"export const Normal: Story = {", | ||
" args: {}", | ||
"}", | ||
"", | ||
"export const Disabled: Story = {", | ||
" args: {}", | ||
"}" | ||
], | ||
"scope": "stories.tsx, typescript, javascript, javascriptreact, typescriptreact" | ||
} | ||
} |
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,18 @@ | ||
{ | ||
"vitestTemplate": { | ||
"prefix": "!test", | ||
"description": "vitest 기초 템플릿입니다.", | ||
"body": [ | ||
"import { describe, it } from 'vitest'", | ||
"", | ||
"describe('테스트 주제', () => {", | ||
" it('테스트 케이스 ex)classname을 적절히 merge합니다', () => {", | ||
" ", | ||
" })", | ||
"})", | ||
"" | ||
], | ||
"description": "testTemplate", | ||
"scope": "stories.tsx, typescript, javascript, javascriptreact, typescriptreact" | ||
} | ||
} |