@seed-design/rootage-artifacts 0.0.0-alpha-20260414104312
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/collections.yaml +24 -0
- package/color.yaml +855 -0
- package/components/action-button.yaml +460 -0
- package/components/action-chip.yaml +150 -0
- package/components/action-sheet-close-button.yaml +45 -0
- package/components/action-sheet-item.yaml +52 -0
- package/components/action-sheet.yaml +115 -0
- package/components/avatar-stack.yaml +86 -0
- package/components/avatar.yaml +161 -0
- package/components/badge.yaml +210 -0
- package/components/bottom-sheet-close-button.yaml +38 -0
- package/components/bottom-sheet-handle.yaml +48 -0
- package/components/bottom-sheet.yaml +156 -0
- package/components/callout.yaml +213 -0
- package/components/checkbox-group.yaml +17 -0
- package/components/checkbox.yaml +59 -0
- package/components/checkmark.yaml +152 -0
- package/components/chip-tablist.yaml +28 -0
- package/components/chip.yaml +267 -0
- package/components/content-placeholder.yaml +45 -0
- package/components/contextual-floating-button.yaml +161 -0
- package/components/control-chip.yaml +169 -0
- package/components/dialog.yaml +131 -0
- package/components/divider.yaml +17 -0
- package/components/extended-action-sheet-close-button.yaml +48 -0
- package/components/extended-action-sheet-item.yaml +67 -0
- package/components/extended-action-sheet.yaml +134 -0
- package/components/extended-fab.yaml +109 -0
- package/components/fab.yaml +46 -0
- package/components/field-label.yaml +33 -0
- package/components/field.yaml +159 -0
- package/components/floating-action-button.yaml +99 -0
- package/components/help-bubble.yaml +127 -0
- package/components/identity-placeholder.yaml +23 -0
- package/components/image-frame-floater.yaml +18 -0
- package/components/image-frame-indicator.yaml +42 -0
- package/components/image-frame-reaction-button.yaml +60 -0
- package/components/image-frame.yaml +37 -0
- package/components/inline-banner.yaml +197 -0
- package/components/input-button.yaml +171 -0
- package/components/link-content.yaml +61 -0
- package/components/list-header.yaml +43 -0
- package/components/list-item.yaml +149 -0
- package/components/manner-temp-badge.yaml +102 -0
- package/components/manner-temp.yaml +80 -0
- package/components/menu-item.yaml +156 -0
- package/components/menu-sheet-close-button.yaml +48 -0
- package/components/menu-sheet-item.yaml +104 -0
- package/components/menu-sheet.yaml +136 -0
- package/components/menu.yaml +117 -0
- package/components/notification-badge.yaml +74 -0
- package/components/page-banner.yaml +302 -0
- package/components/progress-circle.yaml +105 -0
- package/components/radio-group.yaml +17 -0
- package/components/radio.yaml +59 -0
- package/components/radiomark.yaml +113 -0
- package/components/reaction-button.yaml +161 -0
- package/components/scroll-fog.yaml +23 -0
- package/components/segmented-control-indicator.yaml +38 -0
- package/components/segmented-control-item.yaml +76 -0
- package/components/segmented-control.yaml +23 -0
- package/components/select-box-checkmark.yaml +52 -0
- package/components/select-box-group.yaml +20 -0
- package/components/select-box.yaml +176 -0
- package/components/skeleton.yaml +73 -0
- package/components/slider-thumb.yaml +45 -0
- package/components/slider-tick.yaml +27 -0
- package/components/slider.yaml +169 -0
- package/components/snackbar.yaml +137 -0
- package/components/switch.yaml +66 -0
- package/components/switchmark.yaml +147 -0
- package/components/tab.yaml +57 -0
- package/components/tablist.yaml +64 -0
- package/components/tag-group-item.yaml +119 -0
- package/components/tag-group.yaml +40 -0
- package/components/text-button.yaml +46 -0
- package/components/text-input.yaml +234 -0
- package/components/toggle-button.yaml +201 -0
- package/components/top-navigation.yaml +106 -0
- package/components/typography.yaml +380 -0
- package/dimension.yaml +88 -0
- package/duration.yaml +29 -0
- package/font-size.yaml +77 -0
- package/font-weight.yaml +16 -0
- package/gradient.yaml +134 -0
- package/line-height.yaml +77 -0
- package/package.json +20 -0
- package/radius.yaml +40 -0
- package/shadow.yaml +63 -0
- package/timing-function.yaml +37 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: top-navigation
|
|
5
|
+
name: Top Navigation
|
|
6
|
+
data:
|
|
7
|
+
schema:
|
|
8
|
+
slots:
|
|
9
|
+
root:
|
|
10
|
+
properties:
|
|
11
|
+
minHeight:
|
|
12
|
+
type: dimension
|
|
13
|
+
paddingX:
|
|
14
|
+
type: dimension
|
|
15
|
+
color:
|
|
16
|
+
type: color
|
|
17
|
+
strokeColor:
|
|
18
|
+
type: color
|
|
19
|
+
strokeWidth:
|
|
20
|
+
type: dimension
|
|
21
|
+
icon:
|
|
22
|
+
properties:
|
|
23
|
+
size:
|
|
24
|
+
type: dimension
|
|
25
|
+
targetSize:
|
|
26
|
+
type: dimension
|
|
27
|
+
color:
|
|
28
|
+
type: color
|
|
29
|
+
title:
|
|
30
|
+
properties:
|
|
31
|
+
color:
|
|
32
|
+
type: color
|
|
33
|
+
fontSize:
|
|
34
|
+
type: dimension
|
|
35
|
+
fontWeight:
|
|
36
|
+
type: number
|
|
37
|
+
lineHeight:
|
|
38
|
+
type: dimension
|
|
39
|
+
subtitle:
|
|
40
|
+
properties:
|
|
41
|
+
color:
|
|
42
|
+
type: color
|
|
43
|
+
fontSize:
|
|
44
|
+
type: dimension
|
|
45
|
+
fontWeight:
|
|
46
|
+
type: number
|
|
47
|
+
lineHeight:
|
|
48
|
+
type: dimension
|
|
49
|
+
definitions:
|
|
50
|
+
theme=cupertino:
|
|
51
|
+
enabled:
|
|
52
|
+
root:
|
|
53
|
+
minHeight: 44px
|
|
54
|
+
paddingX: $dimension.x4
|
|
55
|
+
icon:
|
|
56
|
+
size: 24px
|
|
57
|
+
targetSize: 44px
|
|
58
|
+
theme=android:
|
|
59
|
+
enabled:
|
|
60
|
+
root:
|
|
61
|
+
minHeight: 56px
|
|
62
|
+
paddingX: $dimension.x4
|
|
63
|
+
icon:
|
|
64
|
+
size: 24px
|
|
65
|
+
targetSize: 44px
|
|
66
|
+
tone=layer:
|
|
67
|
+
enabled:
|
|
68
|
+
root:
|
|
69
|
+
color: $color.bg.layer-default
|
|
70
|
+
title:
|
|
71
|
+
color: $color.fg.neutral
|
|
72
|
+
subtitle:
|
|
73
|
+
color: $color.fg.neutral-muted
|
|
74
|
+
icon:
|
|
75
|
+
color: $color.fg.neutral
|
|
76
|
+
tone=transparent:
|
|
77
|
+
enabled:
|
|
78
|
+
root:
|
|
79
|
+
color: "#00000000"
|
|
80
|
+
title:
|
|
81
|
+
color: $color.palette.static-white
|
|
82
|
+
subtitle:
|
|
83
|
+
color: $color.palette.static-white
|
|
84
|
+
icon:
|
|
85
|
+
color: $color.palette.static-white
|
|
86
|
+
divider=true:
|
|
87
|
+
enabled:
|
|
88
|
+
root:
|
|
89
|
+
strokeColor: $color.stroke.neutral-subtle
|
|
90
|
+
strokeWidth: 1px
|
|
91
|
+
titleLayout=titleOnly:
|
|
92
|
+
enabled:
|
|
93
|
+
title:
|
|
94
|
+
fontSize: $font-size.t6-static
|
|
95
|
+
fontWeight: $font-weight.bold
|
|
96
|
+
lineHeight: $line-height.t6-static
|
|
97
|
+
titleLayout=withSubtitle:
|
|
98
|
+
enabled:
|
|
99
|
+
title:
|
|
100
|
+
fontSize: $font-size.t5-static
|
|
101
|
+
fontWeight: $font-weight.bold
|
|
102
|
+
lineHeight: $line-height.t5-static
|
|
103
|
+
subtitle:
|
|
104
|
+
fontSize: $font-size.t2-static
|
|
105
|
+
fontWeight: $font-weight.regular
|
|
106
|
+
lineHeight: $line-height.t2-static
|
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: typography
|
|
5
|
+
name: Typography
|
|
6
|
+
data:
|
|
7
|
+
schema:
|
|
8
|
+
slots:
|
|
9
|
+
root:
|
|
10
|
+
properties:
|
|
11
|
+
fontSize:
|
|
12
|
+
type: dimension
|
|
13
|
+
lineHeight:
|
|
14
|
+
type: dimension
|
|
15
|
+
fontWeight:
|
|
16
|
+
type: number
|
|
17
|
+
variants:
|
|
18
|
+
textStyle:
|
|
19
|
+
values:
|
|
20
|
+
screenTitle:
|
|
21
|
+
description: 화면에 크게 표시되는 주요 제목이나 타이틀에 사용합니다.
|
|
22
|
+
articleBody:
|
|
23
|
+
description: 게시물이나 콘텐츠 중심 섹션의 본문 텍스트에 사용합니다.
|
|
24
|
+
articleNote:
|
|
25
|
+
description: 주석, 참고 사항 및 상세 리스트 등 부가 정보에 사용하며, 일반 본문 텍스트에는 사용하지 않습니다.
|
|
26
|
+
t1StaticRegular:
|
|
27
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
28
|
+
t1StaticMedium:
|
|
29
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
30
|
+
t1StaticBold:
|
|
31
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
32
|
+
t2StaticRegular:
|
|
33
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
34
|
+
t2StaticMedium:
|
|
35
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
36
|
+
t2StaticBold:
|
|
37
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
38
|
+
t3StaticRegular:
|
|
39
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
40
|
+
t3StaticMedium:
|
|
41
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
42
|
+
t3StaticBold:
|
|
43
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
44
|
+
t4StaticRegular:
|
|
45
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
46
|
+
t4StaticMedium:
|
|
47
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
48
|
+
t4StaticBold:
|
|
49
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
50
|
+
t5StaticRegular:
|
|
51
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
52
|
+
t5StaticMedium:
|
|
53
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
54
|
+
t5StaticBold:
|
|
55
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
56
|
+
t6StaticRegular:
|
|
57
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
58
|
+
t6StaticMedium:
|
|
59
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
60
|
+
t6StaticBold:
|
|
61
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
62
|
+
t7StaticRegular:
|
|
63
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
64
|
+
t7StaticMedium:
|
|
65
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
66
|
+
t7StaticBold:
|
|
67
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
68
|
+
t8StaticBold:
|
|
69
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
70
|
+
t9StaticBold:
|
|
71
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
72
|
+
t10StaticBold:
|
|
73
|
+
description: 폰트 스케일링에 반응하지 않도록 static text size와 static line height 토큰을 사용합니다.
|
|
74
|
+
definitions:
|
|
75
|
+
textStyle=screenTitle:
|
|
76
|
+
enabled:
|
|
77
|
+
root:
|
|
78
|
+
fontSize: $font-size.t10
|
|
79
|
+
lineHeight: $line-height.t10
|
|
80
|
+
fontWeight: $font-weight.bold
|
|
81
|
+
textStyle=articleBody:
|
|
82
|
+
enabled:
|
|
83
|
+
root:
|
|
84
|
+
fontSize: $font-size.t5
|
|
85
|
+
lineHeight: $line-height.t6
|
|
86
|
+
fontWeight: $font-weight.regular
|
|
87
|
+
textStyle=articleNote:
|
|
88
|
+
enabled:
|
|
89
|
+
root:
|
|
90
|
+
fontSize: $font-size.t4
|
|
91
|
+
lineHeight: $line-height.t5
|
|
92
|
+
fontWeight: $font-weight.regular
|
|
93
|
+
textStyle=t1Regular:
|
|
94
|
+
enabled:
|
|
95
|
+
root:
|
|
96
|
+
fontSize: $font-size.t1
|
|
97
|
+
lineHeight: $line-height.t1
|
|
98
|
+
fontWeight: $font-weight.regular
|
|
99
|
+
textStyle=t1Medium:
|
|
100
|
+
enabled:
|
|
101
|
+
root:
|
|
102
|
+
fontSize: $font-size.t1
|
|
103
|
+
lineHeight: $line-height.t1
|
|
104
|
+
fontWeight: $font-weight.medium
|
|
105
|
+
textStyle=t1Bold:
|
|
106
|
+
enabled:
|
|
107
|
+
root:
|
|
108
|
+
fontSize: $font-size.t1
|
|
109
|
+
lineHeight: $line-height.t1
|
|
110
|
+
fontWeight: $font-weight.bold
|
|
111
|
+
textStyle=t2Regular:
|
|
112
|
+
enabled:
|
|
113
|
+
root:
|
|
114
|
+
fontSize: $font-size.t2
|
|
115
|
+
lineHeight: $line-height.t2
|
|
116
|
+
fontWeight: $font-weight.regular
|
|
117
|
+
textStyle=t2Medium:
|
|
118
|
+
enabled:
|
|
119
|
+
root:
|
|
120
|
+
fontSize: $font-size.t2
|
|
121
|
+
lineHeight: $line-height.t2
|
|
122
|
+
fontWeight: $font-weight.medium
|
|
123
|
+
textStyle=t2Bold:
|
|
124
|
+
enabled:
|
|
125
|
+
root:
|
|
126
|
+
fontSize: $font-size.t2
|
|
127
|
+
lineHeight: $line-height.t2
|
|
128
|
+
fontWeight: $font-weight.bold
|
|
129
|
+
textStyle=t3Regular:
|
|
130
|
+
enabled:
|
|
131
|
+
root:
|
|
132
|
+
fontSize: $font-size.t3
|
|
133
|
+
lineHeight: $line-height.t3
|
|
134
|
+
fontWeight: $font-weight.regular
|
|
135
|
+
textStyle=t3Medium:
|
|
136
|
+
enabled:
|
|
137
|
+
root:
|
|
138
|
+
fontSize: $font-size.t3
|
|
139
|
+
lineHeight: $line-height.t3
|
|
140
|
+
fontWeight: $font-weight.medium
|
|
141
|
+
textStyle=t3Bold:
|
|
142
|
+
enabled:
|
|
143
|
+
root:
|
|
144
|
+
fontSize: $font-size.t3
|
|
145
|
+
lineHeight: $line-height.t3
|
|
146
|
+
fontWeight: $font-weight.bold
|
|
147
|
+
textStyle=t4Regular:
|
|
148
|
+
enabled:
|
|
149
|
+
root:
|
|
150
|
+
fontSize: $font-size.t4
|
|
151
|
+
lineHeight: $line-height.t4
|
|
152
|
+
fontWeight: $font-weight.regular
|
|
153
|
+
textStyle=t4Medium:
|
|
154
|
+
enabled:
|
|
155
|
+
root:
|
|
156
|
+
fontSize: $font-size.t4
|
|
157
|
+
lineHeight: $line-height.t4
|
|
158
|
+
fontWeight: $font-weight.medium
|
|
159
|
+
textStyle=t4Bold:
|
|
160
|
+
enabled:
|
|
161
|
+
root:
|
|
162
|
+
fontSize: $font-size.t4
|
|
163
|
+
lineHeight: $line-height.t4
|
|
164
|
+
fontWeight: $font-weight.bold
|
|
165
|
+
textStyle=t5Regular:
|
|
166
|
+
enabled:
|
|
167
|
+
root:
|
|
168
|
+
fontSize: $font-size.t5
|
|
169
|
+
lineHeight: $line-height.t5
|
|
170
|
+
fontWeight: $font-weight.regular
|
|
171
|
+
textStyle=t5Medium:
|
|
172
|
+
enabled:
|
|
173
|
+
root:
|
|
174
|
+
fontSize: $font-size.t5
|
|
175
|
+
lineHeight: $line-height.t5
|
|
176
|
+
fontWeight: $font-weight.medium
|
|
177
|
+
textStyle=t5Bold:
|
|
178
|
+
enabled:
|
|
179
|
+
root:
|
|
180
|
+
fontSize: $font-size.t5
|
|
181
|
+
lineHeight: $line-height.t5
|
|
182
|
+
fontWeight: $font-weight.bold
|
|
183
|
+
textStyle=t6Regular:
|
|
184
|
+
enabled:
|
|
185
|
+
root:
|
|
186
|
+
fontSize: $font-size.t6
|
|
187
|
+
lineHeight: $line-height.t6
|
|
188
|
+
fontWeight: $font-weight.regular
|
|
189
|
+
textStyle=t6Medium:
|
|
190
|
+
enabled:
|
|
191
|
+
root:
|
|
192
|
+
fontSize: $font-size.t6
|
|
193
|
+
lineHeight: $line-height.t6
|
|
194
|
+
fontWeight: $font-weight.medium
|
|
195
|
+
textStyle=t6Bold:
|
|
196
|
+
enabled:
|
|
197
|
+
root:
|
|
198
|
+
fontSize: $font-size.t6
|
|
199
|
+
lineHeight: $line-height.t6
|
|
200
|
+
fontWeight: $font-weight.bold
|
|
201
|
+
textStyle=t7Regular:
|
|
202
|
+
enabled:
|
|
203
|
+
root:
|
|
204
|
+
fontSize: $font-size.t7
|
|
205
|
+
lineHeight: $line-height.t7
|
|
206
|
+
fontWeight: $font-weight.regular
|
|
207
|
+
textStyle=t7Medium:
|
|
208
|
+
enabled:
|
|
209
|
+
root:
|
|
210
|
+
fontSize: $font-size.t7
|
|
211
|
+
lineHeight: $line-height.t7
|
|
212
|
+
fontWeight: $font-weight.medium
|
|
213
|
+
textStyle=t7Bold:
|
|
214
|
+
enabled:
|
|
215
|
+
root:
|
|
216
|
+
fontSize: $font-size.t7
|
|
217
|
+
lineHeight: $line-height.t7
|
|
218
|
+
fontWeight: $font-weight.bold
|
|
219
|
+
textStyle=t8Bold:
|
|
220
|
+
enabled:
|
|
221
|
+
root:
|
|
222
|
+
fontSize: $font-size.t8
|
|
223
|
+
lineHeight: $line-height.t8
|
|
224
|
+
fontWeight: $font-weight.bold
|
|
225
|
+
textStyle=t9Bold:
|
|
226
|
+
enabled:
|
|
227
|
+
root:
|
|
228
|
+
fontSize: $font-size.t9
|
|
229
|
+
lineHeight: $line-height.t9
|
|
230
|
+
fontWeight: $font-weight.bold
|
|
231
|
+
textStyle=t10Bold:
|
|
232
|
+
enabled:
|
|
233
|
+
root:
|
|
234
|
+
fontSize: $font-size.t10
|
|
235
|
+
lineHeight: $line-height.t10
|
|
236
|
+
fontWeight: $font-weight.bold
|
|
237
|
+
textStyle=t1StaticRegular:
|
|
238
|
+
enabled:
|
|
239
|
+
root:
|
|
240
|
+
fontSize: $font-size.t1-static
|
|
241
|
+
lineHeight: $line-height.t1-static
|
|
242
|
+
fontWeight: $font-weight.regular
|
|
243
|
+
textStyle=t1StaticMedium:
|
|
244
|
+
enabled:
|
|
245
|
+
root:
|
|
246
|
+
fontSize: $font-size.t1-static
|
|
247
|
+
lineHeight: $line-height.t1-static
|
|
248
|
+
fontWeight: $font-weight.medium
|
|
249
|
+
textStyle=t1StaticBold:
|
|
250
|
+
enabled:
|
|
251
|
+
root:
|
|
252
|
+
fontSize: $font-size.t1-static
|
|
253
|
+
lineHeight: $line-height.t1-static
|
|
254
|
+
fontWeight: $font-weight.bold
|
|
255
|
+
textStyle=t2StaticRegular:
|
|
256
|
+
enabled:
|
|
257
|
+
root:
|
|
258
|
+
fontSize: $font-size.t2-static
|
|
259
|
+
lineHeight: $line-height.t2-static
|
|
260
|
+
fontWeight: $font-weight.regular
|
|
261
|
+
textStyle=t2StaticMedium:
|
|
262
|
+
enabled:
|
|
263
|
+
root:
|
|
264
|
+
fontSize: $font-size.t2-static
|
|
265
|
+
lineHeight: $line-height.t2-static
|
|
266
|
+
fontWeight: $font-weight.medium
|
|
267
|
+
textStyle=t2StaticBold:
|
|
268
|
+
enabled:
|
|
269
|
+
root:
|
|
270
|
+
fontSize: $font-size.t2-static
|
|
271
|
+
lineHeight: $line-height.t2-static
|
|
272
|
+
fontWeight: $font-weight.bold
|
|
273
|
+
textStyle=t3StaticRegular:
|
|
274
|
+
enabled:
|
|
275
|
+
root:
|
|
276
|
+
fontSize: $font-size.t3-static
|
|
277
|
+
lineHeight: $line-height.t3-static
|
|
278
|
+
fontWeight: $font-weight.regular
|
|
279
|
+
textStyle=t3StaticMedium:
|
|
280
|
+
enabled:
|
|
281
|
+
root:
|
|
282
|
+
fontSize: $font-size.t3-static
|
|
283
|
+
lineHeight: $line-height.t3-static
|
|
284
|
+
fontWeight: $font-weight.medium
|
|
285
|
+
textStyle=t3StaticBold:
|
|
286
|
+
enabled:
|
|
287
|
+
root:
|
|
288
|
+
fontSize: $font-size.t3-static
|
|
289
|
+
lineHeight: $line-height.t3-static
|
|
290
|
+
fontWeight: $font-weight.bold
|
|
291
|
+
textStyle=t4StaticRegular:
|
|
292
|
+
enabled:
|
|
293
|
+
root:
|
|
294
|
+
fontSize: $font-size.t4-static
|
|
295
|
+
lineHeight: $line-height.t4-static
|
|
296
|
+
fontWeight: $font-weight.regular
|
|
297
|
+
textStyle=t4StaticMedium:
|
|
298
|
+
enabled:
|
|
299
|
+
root:
|
|
300
|
+
fontSize: $font-size.t4-static
|
|
301
|
+
lineHeight: $line-height.t4-static
|
|
302
|
+
fontWeight: $font-weight.medium
|
|
303
|
+
textStyle=t4StaticBold:
|
|
304
|
+
enabled:
|
|
305
|
+
root:
|
|
306
|
+
fontSize: $font-size.t4-static
|
|
307
|
+
lineHeight: $line-height.t4-static
|
|
308
|
+
fontWeight: $font-weight.bold
|
|
309
|
+
textStyle=t5StaticRegular:
|
|
310
|
+
enabled:
|
|
311
|
+
root:
|
|
312
|
+
fontSize: $font-size.t5-static
|
|
313
|
+
lineHeight: $line-height.t5-static
|
|
314
|
+
fontWeight: $font-weight.regular
|
|
315
|
+
textStyle=t5StaticMedium:
|
|
316
|
+
enabled:
|
|
317
|
+
root:
|
|
318
|
+
fontSize: $font-size.t5-static
|
|
319
|
+
lineHeight: $line-height.t5-static
|
|
320
|
+
fontWeight: $font-weight.medium
|
|
321
|
+
textStyle=t5StaticBold:
|
|
322
|
+
enabled:
|
|
323
|
+
root:
|
|
324
|
+
fontSize: $font-size.t5-static
|
|
325
|
+
lineHeight: $line-height.t5-static
|
|
326
|
+
fontWeight: $font-weight.bold
|
|
327
|
+
textStyle=t6StaticRegular:
|
|
328
|
+
enabled:
|
|
329
|
+
root:
|
|
330
|
+
fontSize: $font-size.t6-static
|
|
331
|
+
lineHeight: $line-height.t6-static
|
|
332
|
+
fontWeight: $font-weight.regular
|
|
333
|
+
textStyle=t6StaticMedium:
|
|
334
|
+
enabled:
|
|
335
|
+
root:
|
|
336
|
+
fontSize: $font-size.t6-static
|
|
337
|
+
lineHeight: $line-height.t6-static
|
|
338
|
+
fontWeight: $font-weight.medium
|
|
339
|
+
textStyle=t6StaticBold:
|
|
340
|
+
enabled:
|
|
341
|
+
root:
|
|
342
|
+
fontSize: $font-size.t6-static
|
|
343
|
+
lineHeight: $line-height.t6-static
|
|
344
|
+
fontWeight: $font-weight.bold
|
|
345
|
+
textStyle=t7StaticRegular:
|
|
346
|
+
enabled:
|
|
347
|
+
root:
|
|
348
|
+
fontSize: $font-size.t7-static
|
|
349
|
+
lineHeight: $line-height.t7-static
|
|
350
|
+
fontWeight: $font-weight.regular
|
|
351
|
+
textStyle=t7StaticMedium:
|
|
352
|
+
enabled:
|
|
353
|
+
root:
|
|
354
|
+
fontSize: $font-size.t7-static
|
|
355
|
+
lineHeight: $line-height.t7-static
|
|
356
|
+
fontWeight: $font-weight.medium
|
|
357
|
+
textStyle=t7StaticBold:
|
|
358
|
+
enabled:
|
|
359
|
+
root:
|
|
360
|
+
fontSize: $font-size.t7-static
|
|
361
|
+
lineHeight: $line-height.t7-static
|
|
362
|
+
fontWeight: $font-weight.bold
|
|
363
|
+
textStyle=t8StaticBold:
|
|
364
|
+
enabled:
|
|
365
|
+
root:
|
|
366
|
+
fontSize: $font-size.t8-static
|
|
367
|
+
lineHeight: $line-height.t8-static
|
|
368
|
+
fontWeight: $font-weight.bold
|
|
369
|
+
textStyle=t9StaticBold:
|
|
370
|
+
enabled:
|
|
371
|
+
root:
|
|
372
|
+
fontSize: $font-size.t9-static
|
|
373
|
+
lineHeight: $line-height.t9-static
|
|
374
|
+
fontWeight: $font-weight.bold
|
|
375
|
+
textStyle=t10StaticBold:
|
|
376
|
+
enabled:
|
|
377
|
+
root:
|
|
378
|
+
fontSize: $font-size.t10-static
|
|
379
|
+
lineHeight: $line-height.t10-static
|
|
380
|
+
fontWeight: $font-weight.bold
|
package/dimension.yaml
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: dimension
|
|
4
|
+
name: Dimension
|
|
5
|
+
data:
|
|
6
|
+
collection: global
|
|
7
|
+
tokens:
|
|
8
|
+
$dimension.x0_5:
|
|
9
|
+
values:
|
|
10
|
+
default: 2px
|
|
11
|
+
$dimension.x1:
|
|
12
|
+
values:
|
|
13
|
+
default: 4px
|
|
14
|
+
$dimension.x1_5:
|
|
15
|
+
values:
|
|
16
|
+
default: 6px
|
|
17
|
+
$dimension.x2:
|
|
18
|
+
values:
|
|
19
|
+
default: 8px
|
|
20
|
+
$dimension.x2_5:
|
|
21
|
+
values:
|
|
22
|
+
default: 10px
|
|
23
|
+
$dimension.x3:
|
|
24
|
+
values:
|
|
25
|
+
default: 12px
|
|
26
|
+
$dimension.x3_5:
|
|
27
|
+
values:
|
|
28
|
+
default: 14px
|
|
29
|
+
$dimension.x4:
|
|
30
|
+
values:
|
|
31
|
+
default: 16px
|
|
32
|
+
$dimension.x4_5:
|
|
33
|
+
values:
|
|
34
|
+
default: 18px
|
|
35
|
+
$dimension.x5:
|
|
36
|
+
values:
|
|
37
|
+
default: 20px
|
|
38
|
+
$dimension.x6:
|
|
39
|
+
values:
|
|
40
|
+
default: 24px
|
|
41
|
+
$dimension.x7:
|
|
42
|
+
values:
|
|
43
|
+
default: 28px
|
|
44
|
+
$dimension.x8:
|
|
45
|
+
values:
|
|
46
|
+
default: 32px
|
|
47
|
+
$dimension.x9:
|
|
48
|
+
values:
|
|
49
|
+
default: 36px
|
|
50
|
+
$dimension.x10:
|
|
51
|
+
values:
|
|
52
|
+
default: 40px
|
|
53
|
+
$dimension.x12:
|
|
54
|
+
values:
|
|
55
|
+
default: 48px
|
|
56
|
+
$dimension.x13:
|
|
57
|
+
values:
|
|
58
|
+
default: 52px
|
|
59
|
+
$dimension.x14:
|
|
60
|
+
values:
|
|
61
|
+
default: 56px
|
|
62
|
+
$dimension.x16:
|
|
63
|
+
values:
|
|
64
|
+
default: 64px
|
|
65
|
+
$dimension.spacing-x.between-chips:
|
|
66
|
+
description: Chip 사이의 수평 간격에 사용합니다.
|
|
67
|
+
values:
|
|
68
|
+
default: $dimension.x2
|
|
69
|
+
$dimension.spacing-x.global-gutter:
|
|
70
|
+
description: 화면 전체에 적용되는 기본 수평 padding 값입니다.
|
|
71
|
+
values:
|
|
72
|
+
default: $dimension.x4
|
|
73
|
+
$dimension.spacing-y.component-default:
|
|
74
|
+
description: 컴포넌트 간 수직 간격 토큰이 정의되지 않은 컴포넌트 사이의 수직 간격에 사용합니다.
|
|
75
|
+
values:
|
|
76
|
+
default: $dimension.x3
|
|
77
|
+
$dimension.spacing-y.nav-to-title:
|
|
78
|
+
description: Top Navigation과 Page Title 사이의 간격입니다.
|
|
79
|
+
values:
|
|
80
|
+
default: $dimension.x5
|
|
81
|
+
$dimension.spacing-y.screen-bottom:
|
|
82
|
+
description: 화면 하단의 여백입니다.
|
|
83
|
+
values:
|
|
84
|
+
default: $dimension.x14
|
|
85
|
+
$dimension.spacing-y.between-text:
|
|
86
|
+
description: 텍스트 요소 간의 수직 간격입니다.
|
|
87
|
+
values:
|
|
88
|
+
default: $dimension.x1_5
|
package/duration.yaml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: duration
|
|
4
|
+
name: Duration
|
|
5
|
+
lastUpdated: 25-11-18
|
|
6
|
+
data:
|
|
7
|
+
collection: global
|
|
8
|
+
tokens:
|
|
9
|
+
$duration.d1:
|
|
10
|
+
values:
|
|
11
|
+
default: 50ms
|
|
12
|
+
$duration.d2:
|
|
13
|
+
values:
|
|
14
|
+
default: 100ms
|
|
15
|
+
$duration.d3:
|
|
16
|
+
values:
|
|
17
|
+
default: 150ms
|
|
18
|
+
$duration.d4:
|
|
19
|
+
values:
|
|
20
|
+
default: 200ms
|
|
21
|
+
$duration.d5:
|
|
22
|
+
values:
|
|
23
|
+
default: 250ms
|
|
24
|
+
$duration.d6:
|
|
25
|
+
values:
|
|
26
|
+
default: 300ms
|
|
27
|
+
$duration.color-transition:
|
|
28
|
+
values:
|
|
29
|
+
default: $duration.d3
|
package/font-size.yaml
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: font-size
|
|
4
|
+
name: Font Size
|
|
5
|
+
data:
|
|
6
|
+
collection: global
|
|
7
|
+
tokens:
|
|
8
|
+
$font-size.t1:
|
|
9
|
+
values:
|
|
10
|
+
default: 0.6875rem # 11px ÷ 16
|
|
11
|
+
$font-size.t2:
|
|
12
|
+
values:
|
|
13
|
+
default: 0.75rem # 12px ÷ 16
|
|
14
|
+
$font-size.t3:
|
|
15
|
+
values:
|
|
16
|
+
default: 0.8125rem # 13px ÷ 16
|
|
17
|
+
$font-size.t4:
|
|
18
|
+
values:
|
|
19
|
+
default: 0.875rem # 14px ÷ 16
|
|
20
|
+
$font-size.t5:
|
|
21
|
+
values:
|
|
22
|
+
default: 1rem # 16px ÷ 16
|
|
23
|
+
$font-size.t6:
|
|
24
|
+
values:
|
|
25
|
+
default: 1.125rem # 18px ÷ 16
|
|
26
|
+
$font-size.t7:
|
|
27
|
+
values:
|
|
28
|
+
default: 1.25rem # 20px ÷ 16
|
|
29
|
+
$font-size.t8:
|
|
30
|
+
values:
|
|
31
|
+
default: 1.375rem # 22px ÷ 16
|
|
32
|
+
$font-size.t9:
|
|
33
|
+
values:
|
|
34
|
+
default: 1.5rem # 24px ÷ 16
|
|
35
|
+
$font-size.t10:
|
|
36
|
+
values:
|
|
37
|
+
default: 1.625rem # 26px ÷ 16
|
|
38
|
+
$font-size.t1-static:
|
|
39
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
40
|
+
values:
|
|
41
|
+
default: 11px
|
|
42
|
+
$font-size.t2-static:
|
|
43
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
44
|
+
values:
|
|
45
|
+
default: 12px
|
|
46
|
+
$font-size.t3-static:
|
|
47
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
48
|
+
values:
|
|
49
|
+
default: 13px
|
|
50
|
+
$font-size.t4-static:
|
|
51
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
52
|
+
values:
|
|
53
|
+
default: 14px
|
|
54
|
+
$font-size.t5-static:
|
|
55
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
56
|
+
values:
|
|
57
|
+
default: 16px
|
|
58
|
+
$font-size.t6-static:
|
|
59
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
60
|
+
values:
|
|
61
|
+
default: 18px
|
|
62
|
+
$font-size.t7-static:
|
|
63
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
64
|
+
values:
|
|
65
|
+
default: 20px
|
|
66
|
+
$font-size.t8-static:
|
|
67
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
68
|
+
values:
|
|
69
|
+
default: 22px
|
|
70
|
+
$font-size.t9-static:
|
|
71
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
72
|
+
values:
|
|
73
|
+
default: 24px
|
|
74
|
+
$font-size.t10-static:
|
|
75
|
+
description: 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다.
|
|
76
|
+
values:
|
|
77
|
+
default: 26px
|
package/font-weight.yaml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
kind: Tokens
|
|
2
|
+
metadata:
|
|
3
|
+
id: font-weight
|
|
4
|
+
name: Font Weight
|
|
5
|
+
data:
|
|
6
|
+
collection: global
|
|
7
|
+
tokens:
|
|
8
|
+
$font-weight.regular:
|
|
9
|
+
values:
|
|
10
|
+
default: 400
|
|
11
|
+
$font-weight.medium:
|
|
12
|
+
values:
|
|
13
|
+
default: 500
|
|
14
|
+
$font-weight.bold:
|
|
15
|
+
values:
|
|
16
|
+
default: 700
|