@seed-design/lynx-css 0.1.0
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/all.css +1730 -0
- package/all.min.css +1 -0
- package/base.css +625 -0
- package/base.min.css +1 -0
- package/package.json +60 -0
- package/recipes/action-button.css +489 -0
- package/recipes/action-button.d.ts +44 -0
- package/recipes/action-button.mjs +212 -0
- package/recipes/bottom-sheet-handle.css +18 -0
- package/recipes/bottom-sheet-handle.d.ts +21 -0
- package/recipes/bottom-sheet-handle.mjs +36 -0
- package/recipes/bottom-sheet.css +91 -0
- package/recipes/bottom-sheet.d.ts +28 -0
- package/recipes/bottom-sheet.mjs +76 -0
- package/recipes/checkbox-group.css +5 -0
- package/recipes/checkbox-group.d.ts +21 -0
- package/recipes/checkbox-group.mjs +36 -0
- package/recipes/checkbox.css +34 -0
- package/recipes/checkbox.d.ts +32 -0
- package/recipes/checkbox.mjs +53 -0
- package/recipes/checkmark.css +131 -0
- package/recipes/checkmark.d.ts +48 -0
- package/recipes/checkmark.mjs +220 -0
- package/recipes/progress-circle.css +80 -0
- package/recipes/progress-circle.d.ts +30 -0
- package/recipes/progress-circle.mjs +40 -0
- package/recipes/radio-group.css +5 -0
- package/recipes/radio-group.d.ts +21 -0
- package/recipes/radio-group.mjs +36 -0
- package/recipes/radio.css +34 -0
- package/recipes/radio.d.ts +32 -0
- package/recipes/radio.mjs +53 -0
- package/recipes/radiomark.css +94 -0
- package/recipes/radiomark.d.ts +40 -0
- package/recipes/radiomark.mjs +121 -0
- package/recipes/shared.mjs +48 -0
- package/recipes/switch.css +40 -0
- package/recipes/switch.d.ts +28 -0
- package/recipes/switch.mjs +49 -0
- package/recipes/switchmark.css +75 -0
- package/recipes/switchmark.d.ts +36 -0
- package/recipes/switchmark.mjs +90 -0
- package/recipes/tag-group-item.css +34 -0
- package/recipes/tag-group-item.d.ts +32 -0
- package/recipes/tag-group-item.mjs +55 -0
- package/recipes/tag-group.css +32 -0
- package/recipes/tag-group.d.ts +24 -0
- package/recipes/tag-group.mjs +48 -0
- package/vars/color/banner.d.ts +10 -0
- package/vars/color/banner.mjs +10 -0
- package/vars/color/bg.d.ts +76 -0
- package/vars/color/bg.mjs +41 -0
- package/vars/color/fg.d.ts +30 -0
- package/vars/color/fg.mjs +16 -0
- package/vars/color/index.d.ts +6 -0
- package/vars/color/index.mjs +6 -0
- package/vars/color/manner-temp/index.d.ts +10 -0
- package/vars/color/manner-temp/index.mjs +10 -0
- package/vars/color/manner-temp/l1.d.ts +2 -0
- package/vars/color/manner-temp/l1.mjs +2 -0
- package/vars/color/manner-temp/l10.d.ts +2 -0
- package/vars/color/manner-temp/l10.mjs +2 -0
- package/vars/color/manner-temp/l2.d.ts +2 -0
- package/vars/color/manner-temp/l2.mjs +2 -0
- package/vars/color/manner-temp/l3.d.ts +2 -0
- package/vars/color/manner-temp/l3.mjs +2 -0
- package/vars/color/manner-temp/l4.d.ts +2 -0
- package/vars/color/manner-temp/l4.mjs +2 -0
- package/vars/color/manner-temp/l5.d.ts +2 -0
- package/vars/color/manner-temp/l5.mjs +2 -0
- package/vars/color/manner-temp/l6.d.ts +2 -0
- package/vars/color/manner-temp/l6.mjs +2 -0
- package/vars/color/manner-temp/l7.d.ts +2 -0
- package/vars/color/manner-temp/l7.mjs +2 -0
- package/vars/color/manner-temp/l8.d.ts +2 -0
- package/vars/color/manner-temp/l8.mjs +2 -0
- package/vars/color/manner-temp/l9.d.ts +2 -0
- package/vars/color/manner-temp/l9.mjs +2 -0
- package/vars/color/palette.d.ts +94 -0
- package/vars/color/palette.mjs +94 -0
- package/vars/color/stroke.d.ts +31 -0
- package/vars/color/stroke.mjs +16 -0
- package/vars/component/action-button.d.ts +660 -0
- package/vars/component/action-button.mjs +541 -0
- package/vars/component/action-chip.d.ts +132 -0
- package/vars/component/action-chip.mjs +132 -0
- package/vars/component/action-sheet-close-button.d.ts +23 -0
- package/vars/component/action-sheet-close-button.mjs +23 -0
- package/vars/component/action-sheet-item.d.ts +36 -0
- package/vars/component/action-sheet-item.mjs +36 -0
- package/vars/component/action-sheet.d.ts +46 -0
- package/vars/component/action-sheet.mjs +46 -0
- package/vars/component/avatar-stack.d.ts +110 -0
- package/vars/component/avatar-stack.mjs +110 -0
- package/vars/component/avatar.d.ts +204 -0
- package/vars/component/avatar.mjs +162 -0
- package/vars/component/badge.d.ts +316 -0
- package/vars/component/badge.mjs +236 -0
- package/vars/component/bottom-sheet-close-button.d.ts +21 -0
- package/vars/component/bottom-sheet-close-button.mjs +21 -0
- package/vars/component/bottom-sheet-handle.d.ts +24 -0
- package/vars/component/bottom-sheet-handle.mjs +24 -0
- package/vars/component/bottom-sheet.d.ts +86 -0
- package/vars/component/bottom-sheet.mjs +86 -0
- package/vars/component/callout.d.ts +229 -0
- package/vars/component/callout.mjs +197 -0
- package/vars/component/checkbox-group.d.ts +9 -0
- package/vars/component/checkbox-group.mjs +9 -0
- package/vars/component/checkbox.d.ts +53 -0
- package/vars/component/checkbox.mjs +53 -0
- package/vars/component/checkmark.d.ts +195 -0
- package/vars/component/checkmark.mjs +165 -0
- package/vars/component/chip-tab.d.ts +162 -0
- package/vars/component/chip-tab.mjs +162 -0
- package/vars/component/chip-tablist.d.ts +31 -0
- package/vars/component/chip-tablist.mjs +31 -0
- package/vars/component/chip.d.ts +321 -0
- package/vars/component/chip.mjs +303 -0
- package/vars/component/content-placeholder.d.ts +28 -0
- package/vars/component/content-placeholder.mjs +27 -0
- package/vars/component/contextual-floating-button.d.ts +144 -0
- package/vars/component/contextual-floating-button.mjs +132 -0
- package/vars/component/control-chip.d.ts +158 -0
- package/vars/component/control-chip.mjs +158 -0
- package/vars/component/dialog.d.ts +52 -0
- package/vars/component/dialog.mjs +52 -0
- package/vars/component/divider.d.ts +9 -0
- package/vars/component/divider.mjs +9 -0
- package/vars/component/extended-action-sheet-close-button.d.ts +24 -0
- package/vars/component/extended-action-sheet-close-button.mjs +24 -0
- package/vars/component/extended-action-sheet-item.d.ts +46 -0
- package/vars/component/extended-action-sheet-item.mjs +46 -0
- package/vars/component/extended-action-sheet.d.ts +55 -0
- package/vars/component/extended-action-sheet.mjs +55 -0
- package/vars/component/extended-fab.d.ts +88 -0
- package/vars/component/extended-fab.mjs +82 -0
- package/vars/component/fab.d.ts +21 -0
- package/vars/component/fab.mjs +21 -0
- package/vars/component/field-label.d.ts +25 -0
- package/vars/component/field-label.mjs +25 -0
- package/vars/component/field.d.ts +78 -0
- package/vars/component/field.mjs +72 -0
- package/vars/component/floating-action-button.d.ts +60 -0
- package/vars/component/floating-action-button.mjs +54 -0
- package/vars/component/help-bubble.d.ts +52 -0
- package/vars/component/help-bubble.mjs +50 -0
- package/vars/component/identity-placeholder.d.ts +12 -0
- package/vars/component/identity-placeholder.mjs +12 -0
- package/vars/component/image-frame-floater.d.ts +10 -0
- package/vars/component/image-frame-floater.mjs +9 -0
- package/vars/component/image-frame-indicator.d.ts +20 -0
- package/vars/component/image-frame-indicator.mjs +18 -0
- package/vars/component/image-frame-reaction-button.d.ts +35 -0
- package/vars/component/image-frame-reaction-button.mjs +26 -0
- package/vars/component/image-frame.d.ts +48 -0
- package/vars/component/image-frame.mjs +26 -0
- package/vars/component/index.d.ts +79 -0
- package/vars/component/index.mjs +79 -0
- package/vars/component/inline-banner.d.ts +191 -0
- package/vars/component/inline-banner.mjs +191 -0
- package/vars/component/input-button.d.ts +89 -0
- package/vars/component/input-button.mjs +88 -0
- package/vars/component/link-content.d.ts +58 -0
- package/vars/component/link-content.mjs +58 -0
- package/vars/component/list-header.d.ts +29 -0
- package/vars/component/list-header.mjs +29 -0
- package/vars/component/list-item.d.ts +89 -0
- package/vars/component/list-item.mjs +87 -0
- package/vars/component/manner-temp-badge.d.ts +117 -0
- package/vars/component/manner-temp-badge.mjs +117 -0
- package/vars/component/manner-temp.d.ts +88 -0
- package/vars/component/manner-temp.mjs +88 -0
- package/vars/component/menu-sheet-close-button.d.ts +24 -0
- package/vars/component/menu-sheet-close-button.mjs +24 -0
- package/vars/component/menu-sheet-item.d.ts +73 -0
- package/vars/component/menu-sheet-item.mjs +61 -0
- package/vars/component/menu-sheet.d.ts +56 -0
- package/vars/component/menu-sheet.mjs +56 -0
- package/vars/component/notification-badge.d.ts +48 -0
- package/vars/component/notification-badge.mjs +42 -0
- package/vars/component/page-banner.d.ts +382 -0
- package/vars/component/page-banner.mjs +336 -0
- package/vars/component/progress-circle.d.ts +88 -0
- package/vars/component/progress-circle.mjs +67 -0
- package/vars/component/radio-group.d.ts +9 -0
- package/vars/component/radio-group.mjs +9 -0
- package/vars/component/radio.d.ts +53 -0
- package/vars/component/radio.mjs +53 -0
- package/vars/component/radiomark.d.ts +117 -0
- package/vars/component/radiomark.mjs +117 -0
- package/vars/component/reaction-button.d.ts +136 -0
- package/vars/component/reaction-button.mjs +136 -0
- package/vars/component/scroll-fog.d.ts +11 -0
- package/vars/component/scroll-fog.mjs +11 -0
- package/vars/component/segmented-control-indicator.d.ts +24 -0
- package/vars/component/segmented-control-indicator.mjs +24 -0
- package/vars/component/segmented-control-item.d.ts +41 -0
- package/vars/component/segmented-control-item.mjs +41 -0
- package/vars/component/segmented-control.d.ts +11 -0
- package/vars/component/segmented-control.mjs +11 -0
- package/vars/component/select-box-checkmark.d.ts +40 -0
- package/vars/component/select-box-checkmark.mjs +40 -0
- package/vars/component/select-box-group.d.ts +10 -0
- package/vars/component/select-box-group.mjs +10 -0
- package/vars/component/select-box.d.ts +107 -0
- package/vars/component/select-box.mjs +102 -0
- package/vars/component/skeleton.d.ts +76 -0
- package/vars/component/skeleton.mjs +58 -0
- package/vars/component/slider-thumb.d.ts +25 -0
- package/vars/component/slider-thumb.mjs +25 -0
- package/vars/component/slider-tick.d.ts +23 -0
- package/vars/component/slider-tick.mjs +23 -0
- package/vars/component/slider.d.ts +78 -0
- package/vars/component/slider.mjs +75 -0
- package/vars/component/snackbar.d.ts +65 -0
- package/vars/component/snackbar.mjs +65 -0
- package/vars/component/switch.d.ts +53 -0
- package/vars/component/switch.mjs +53 -0
- package/vars/component/switchmark.d.ts +112 -0
- package/vars/component/switchmark.mjs +112 -0
- package/vars/component/tab.d.ts +47 -0
- package/vars/component/tab.mjs +47 -0
- package/vars/component/tablist.d.ts +51 -0
- package/vars/component/tablist.mjs +51 -0
- package/vars/component/tag-group-item.d.ts +122 -0
- package/vars/component/tag-group-item.mjs +122 -0
- package/vars/component/tag-group.d.ts +34 -0
- package/vars/component/tag-group.mjs +34 -0
- package/vars/component/text-button.d.ts +23 -0
- package/vars/component/text-button.mjs +23 -0
- package/vars/component/text-input.d.ts +224 -0
- package/vars/component/text-input.mjs +211 -0
- package/vars/component/toggle-button.d.ts +213 -0
- package/vars/component/toggle-button.mjs +207 -0
- package/vars/component/top-navigation-icon-button.d.ts +36 -0
- package/vars/component/top-navigation-icon-button.mjs +36 -0
- package/vars/component/top-navigation-text-button.d.ts +52 -0
- package/vars/component/top-navigation-text-button.mjs +51 -0
- package/vars/component/top-navigation.d.ts +102 -0
- package/vars/component/top-navigation.mjs +94 -0
- package/vars/component/typography.d.ts +542 -0
- package/vars/component/typography.mjs +461 -0
- package/vars/dimension/index.d.ts +22 -0
- package/vars/dimension/index.mjs +22 -0
- package/vars/dimension/spacing-x.d.ts +4 -0
- package/vars/dimension/spacing-x.mjs +2 -0
- package/vars/dimension/spacing-y.d.ts +8 -0
- package/vars/dimension/spacing-y.mjs +4 -0
- package/vars/duration.d.ts +8 -0
- package/vars/duration.mjs +8 -0
- package/vars/font-size.d.ts +30 -0
- package/vars/font-size.mjs +20 -0
- package/vars/font-weight.d.ts +3 -0
- package/vars/font-weight.mjs +3 -0
- package/vars/gradient.d.ts +19 -0
- package/vars/gradient.mjs +8 -0
- package/vars/index.d.ts +51 -0
- package/vars/index.mjs +1 -0
- package/vars/line-height.d.ts +30 -0
- package/vars/line-height.mjs +20 -0
- package/vars/radius.d.ts +11 -0
- package/vars/radius.mjs +11 -0
- package/vars/shadow.d.ts +4 -0
- package/vars/shadow.mjs +3 -0
- package/vars/timing-function.d.ts +7 -0
- package/vars/timing-function.mjs +7 -0
- package/vars/vars.d.ts +10 -0
- package/vars/vars.mjs +10 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export declare const vars: {
|
|
2
|
+
"base": {
|
|
3
|
+
"enabled": {
|
|
4
|
+
"root": {
|
|
5
|
+
"height": "44px",
|
|
6
|
+
"paddingX": "var(--seed-dimension-x2_5)"
|
|
7
|
+
},
|
|
8
|
+
"label": {
|
|
9
|
+
"fontSize": "var(--seed-font-size-t5)",
|
|
10
|
+
"lineHeight": "var(--seed-line-height-t5)",
|
|
11
|
+
"fontWeight": "var(--seed-font-weight-medium)",
|
|
12
|
+
"maxFontSizeScale": "1.2",
|
|
13
|
+
"minFontSizeScale": "1",
|
|
14
|
+
"maxLineHeightScale": "1.2",
|
|
15
|
+
"minLineHeightScale": "1"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"toneLayer": {
|
|
20
|
+
"enabled": {
|
|
21
|
+
"label": {
|
|
22
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"disabled": {
|
|
26
|
+
"label": {
|
|
27
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"toneTransparent": {
|
|
32
|
+
"enabled": {
|
|
33
|
+
"label": {
|
|
34
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"disabled": {
|
|
38
|
+
"label": {
|
|
39
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"themeIos": {
|
|
44
|
+
"enabled": {
|
|
45
|
+
"root": {
|
|
46
|
+
/** 버튼 레이블이 길어졌을 때 ellipsis 말줄임을 시작할 최대 너비입니다. Top Navigation main slot이 충분한 공간을 차지할 수 있도록 하기 위해 폰트 스케일링의 영향을 받지 않는 px 값을 사용합니다. */
|
|
47
|
+
"maxWidth": "96px"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"themeAndroid": {}
|
|
52
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export const vars = {
|
|
2
|
+
"base": {
|
|
3
|
+
"enabled": {
|
|
4
|
+
"root": {
|
|
5
|
+
"height": "44px",
|
|
6
|
+
"paddingX": "var(--seed-dimension-x2_5)"
|
|
7
|
+
},
|
|
8
|
+
"label": {
|
|
9
|
+
"fontSize": "var(--seed-font-size-t5)",
|
|
10
|
+
"lineHeight": "var(--seed-line-height-t5)",
|
|
11
|
+
"fontWeight": "var(--seed-font-weight-medium)",
|
|
12
|
+
"maxFontSizeScale": "1.2",
|
|
13
|
+
"minFontSizeScale": "1",
|
|
14
|
+
"maxLineHeightScale": "1.2",
|
|
15
|
+
"minLineHeightScale": "1"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"toneLayer": {
|
|
20
|
+
"enabled": {
|
|
21
|
+
"label": {
|
|
22
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"disabled": {
|
|
26
|
+
"label": {
|
|
27
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"toneTransparent": {
|
|
32
|
+
"enabled": {
|
|
33
|
+
"label": {
|
|
34
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"disabled": {
|
|
38
|
+
"label": {
|
|
39
|
+
"color": "var(--seed-color-fg-disabled)"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"themeIos": {
|
|
44
|
+
"enabled": {
|
|
45
|
+
"root": {
|
|
46
|
+
"maxWidth": "96px"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"themeAndroid": {}
|
|
51
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
export declare const vars: {
|
|
2
|
+
"themeIos": {
|
|
3
|
+
"enabled": {
|
|
4
|
+
"root": {
|
|
5
|
+
"height": "44px",
|
|
6
|
+
"paddingX": "var(--seed-dimension-x4)"
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"themeAndroid": {
|
|
11
|
+
"enabled": {
|
|
12
|
+
"root": {
|
|
13
|
+
"height": "56px",
|
|
14
|
+
"paddingX": "var(--seed-dimension-x4)"
|
|
15
|
+
},
|
|
16
|
+
/** title과 subtitle을 포함하는 영역입니다. */
|
|
17
|
+
"main": {
|
|
18
|
+
"paddingLeft": "16px"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
/**
|
|
23
|
+
* color를 $color.bg.layer-basement 등으로 변경하여 사용할 수 있습니다.
|
|
24
|
+
*/
|
|
25
|
+
"toneLayer": {
|
|
26
|
+
"enabled": {
|
|
27
|
+
"root": {
|
|
28
|
+
"color": "var(--seed-color-bg-layer-default)"
|
|
29
|
+
},
|
|
30
|
+
"title": {
|
|
31
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
32
|
+
},
|
|
33
|
+
"subtitle": {
|
|
34
|
+
"color": "var(--seed-color-fg-neutral-muted)"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"toneTransparent": {
|
|
39
|
+
"enabled": {
|
|
40
|
+
"title": {
|
|
41
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
42
|
+
},
|
|
43
|
+
"subtitle": {
|
|
44
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
/**
|
|
49
|
+
* - `gradient=false`: false로 사용하는 것을 권장하지 않습니다. gradient 없이 사용하면 Top Navigation의 콘텐츠 가독성을 직접 확보해야 합니다. 스크린 배경 색상이 Top Navigation에 보이기를 원하는 경우 tone=layer를 사용하세요.
|
|
50
|
+
*/
|
|
51
|
+
"toneTransparentGradientFalse": {
|
|
52
|
+
"enabled": {
|
|
53
|
+
"root": {
|
|
54
|
+
"color": "#00000000"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"toneTransparentGradientTrue": {
|
|
59
|
+
"enabled": {
|
|
60
|
+
"root": {
|
|
61
|
+
"gradient": "#00000059 0%, #00000000 100%",
|
|
62
|
+
/** gradient가 표시될 때 하단 아래로 gradient가 확장되는 길이입니다. */
|
|
63
|
+
"bleedBottom": "var(--seed-dimension-x5)"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"titleLayoutTitleOnly": {
|
|
68
|
+
"enabled": {
|
|
69
|
+
"title": {
|
|
70
|
+
"fontSize": "var(--seed-font-size-t6)",
|
|
71
|
+
"fontWeight": "var(--seed-font-weight-bold)",
|
|
72
|
+
"lineHeight": "var(--seed-line-height-t6)",
|
|
73
|
+
"maxFontSizeScale": "1.2",
|
|
74
|
+
"minFontSizeScale": "1",
|
|
75
|
+
"maxLineHeightScale": "1.2",
|
|
76
|
+
"minLineHeightScale": "1"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"titleLayoutWithSubtitle": {
|
|
81
|
+
"enabled": {
|
|
82
|
+
"title": {
|
|
83
|
+
"fontSize": "var(--seed-font-size-t5)",
|
|
84
|
+
"fontWeight": "var(--seed-font-weight-bold)",
|
|
85
|
+
"lineHeight": "var(--seed-line-height-t5)",
|
|
86
|
+
"maxFontSizeScale": "1.2",
|
|
87
|
+
"minFontSizeScale": "1",
|
|
88
|
+
"maxLineHeightScale": "1.2",
|
|
89
|
+
"minLineHeightScale": "1"
|
|
90
|
+
},
|
|
91
|
+
"subtitle": {
|
|
92
|
+
"fontSize": "var(--seed-font-size-t2)",
|
|
93
|
+
"fontWeight": "var(--seed-font-weight-regular)",
|
|
94
|
+
"lineHeight": "var(--seed-line-height-t2)",
|
|
95
|
+
"maxFontSizeScale": "1.2",
|
|
96
|
+
"minFontSizeScale": "1",
|
|
97
|
+
"maxLineHeightScale": "1.2",
|
|
98
|
+
"minLineHeightScale": "1"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
export const vars = {
|
|
2
|
+
"themeIos": {
|
|
3
|
+
"enabled": {
|
|
4
|
+
"root": {
|
|
5
|
+
"height": "44px",
|
|
6
|
+
"paddingX": "var(--seed-dimension-x4)"
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"themeAndroid": {
|
|
11
|
+
"enabled": {
|
|
12
|
+
"root": {
|
|
13
|
+
"height": "56px",
|
|
14
|
+
"paddingX": "var(--seed-dimension-x4)"
|
|
15
|
+
},
|
|
16
|
+
"main": {
|
|
17
|
+
"paddingLeft": "16px"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"toneLayer": {
|
|
22
|
+
"enabled": {
|
|
23
|
+
"root": {
|
|
24
|
+
"color": "var(--seed-color-bg-layer-default)"
|
|
25
|
+
},
|
|
26
|
+
"title": {
|
|
27
|
+
"color": "var(--seed-color-fg-neutral)"
|
|
28
|
+
},
|
|
29
|
+
"subtitle": {
|
|
30
|
+
"color": "var(--seed-color-fg-neutral-muted)"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"toneTransparent": {
|
|
35
|
+
"enabled": {
|
|
36
|
+
"title": {
|
|
37
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
38
|
+
},
|
|
39
|
+
"subtitle": {
|
|
40
|
+
"color": "var(--seed-color-palette-static-white)"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"toneTransparentGradientFalse": {
|
|
45
|
+
"enabled": {
|
|
46
|
+
"root": {
|
|
47
|
+
"color": "#00000000"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"toneTransparentGradientTrue": {
|
|
52
|
+
"enabled": {
|
|
53
|
+
"root": {
|
|
54
|
+
"gradient": "#00000059 0%, #00000000 100%",
|
|
55
|
+
"bleedBottom": "var(--seed-dimension-x5)"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"titleLayoutTitleOnly": {
|
|
60
|
+
"enabled": {
|
|
61
|
+
"title": {
|
|
62
|
+
"fontSize": "var(--seed-font-size-t6)",
|
|
63
|
+
"fontWeight": "var(--seed-font-weight-bold)",
|
|
64
|
+
"lineHeight": "var(--seed-line-height-t6)",
|
|
65
|
+
"maxFontSizeScale": "1.2",
|
|
66
|
+
"minFontSizeScale": "1",
|
|
67
|
+
"maxLineHeightScale": "1.2",
|
|
68
|
+
"minLineHeightScale": "1"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"titleLayoutWithSubtitle": {
|
|
73
|
+
"enabled": {
|
|
74
|
+
"title": {
|
|
75
|
+
"fontSize": "var(--seed-font-size-t5)",
|
|
76
|
+
"fontWeight": "var(--seed-font-weight-bold)",
|
|
77
|
+
"lineHeight": "var(--seed-line-height-t5)",
|
|
78
|
+
"maxFontSizeScale": "1.2",
|
|
79
|
+
"minFontSizeScale": "1",
|
|
80
|
+
"maxLineHeightScale": "1.2",
|
|
81
|
+
"minLineHeightScale": "1"
|
|
82
|
+
},
|
|
83
|
+
"subtitle": {
|
|
84
|
+
"fontSize": "var(--seed-font-size-t2)",
|
|
85
|
+
"fontWeight": "var(--seed-font-weight-regular)",
|
|
86
|
+
"lineHeight": "var(--seed-line-height-t2)",
|
|
87
|
+
"maxFontSizeScale": "1.2",
|
|
88
|
+
"minFontSizeScale": "1",
|
|
89
|
+
"maxLineHeightScale": "1.2",
|
|
90
|
+
"minLineHeightScale": "1"
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|