Skip to content

Commit f00d9c2

Browse files
authored
Design 토큰 추가 (#17)
* feat: 디자인 토큰 background, line 색상 추가
1 parent 9c211bb commit f00d9c2

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

app/tokens.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
--color-background-primary: #5d5fef;
100100
--color-background-alternative: #ffffff;
101101
--color-background-disabled: #b1b8be;
102+
--color-background-assistive: #e6e8ea;
102103
--color-status-negative: #ea3429;
103104
--color-status-positive: #228738;
104105
--spacing-gap-2: 0.125rem;
@@ -154,4 +155,6 @@
154155
--non-mapped-textCase-none: none;
155156
--non-mapped-textDecoration-none: none;
156157
--spacing-paragraphIndent-0: 0px;
157-
}
158+
--color-line-normal: #cdd1d5;
159+
--color-line-disabled: #8a949e;
160+
}

components/shared/Test.stories.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ type Story = StoryObj<typeof meta>;
2727

2828
// 가장 기본적인 Primary 스토리 (필수 권장)
2929
export const Primary: Story = {
30+
argTypes: {
31+
children: {
32+
control: "text",
33+
},
34+
},
3035
args: {
3136
// Primary 스토리에만 적용될 Props
3237
children: "123",

0 commit comments

Comments
 (0)