@lgtm-hq/turbo-themes 0.12.16
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/LICENSE +21 -0
- package/README.md +231 -0
- package/assets/css/adapters/bulma.css +26 -0
- package/assets/css/themes/bulma-dark.css +90 -0
- package/assets/css/themes/bulma-light.css +90 -0
- package/assets/css/themes/catppuccin-frappe.css +58 -0
- package/assets/css/themes/catppuccin-latte.css +58 -0
- package/assets/css/themes/catppuccin-macchiato.css +58 -0
- package/assets/css/themes/catppuccin-mocha.css +58 -0
- package/assets/css/themes/dracula.css +90 -0
- package/assets/css/themes/github-dark.css +58 -0
- package/assets/css/themes/github-light.css +58 -0
- package/assets/css/turbo-core.css +92 -0
- package/dist/adapters/bootstrap/_utilities.scss +178 -0
- package/dist/adapters/bootstrap/_variables.scss +99 -0
- package/dist/adapters/tailwind/colors.js +133 -0
- package/dist/adapters/tailwind/preset.js +136 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/themes/bulma.d.ts +31 -0
- package/dist/themes/bulma.d.ts.map +1 -0
- package/dist/themes/bulma.js +160 -0
- package/dist/themes/bulma.js.map +1 -0
- package/dist/themes/css.d.ts +4 -0
- package/dist/themes/css.d.ts.map +1 -0
- package/dist/themes/css.js +617 -0
- package/dist/themes/css.js.map +1 -0
- package/dist/themes/packs/bulma.d.ts +12 -0
- package/dist/themes/packs/bulma.d.ts.map +1 -0
- package/dist/themes/packs/bulma.js +285 -0
- package/dist/themes/packs/bulma.js.map +1 -0
- package/dist/themes/packs/catppuccin.synced.d.ts +3 -0
- package/dist/themes/packs/catppuccin.synced.d.ts.map +1 -0
- package/dist/themes/packs/catppuccin.synced.js +340 -0
- package/dist/themes/packs/catppuccin.synced.js.map +1 -0
- package/dist/themes/packs/dracula.d.ts +8 -0
- package/dist/themes/packs/dracula.d.ts.map +1 -0
- package/dist/themes/packs/dracula.js +145 -0
- package/dist/themes/packs/dracula.js.map +1 -0
- package/dist/themes/packs/github.synced.d.ts +10 -0
- package/dist/themes/packs/github.synced.d.ts.map +1 -0
- package/dist/themes/packs/github.synced.js +281 -0
- package/dist/themes/packs/github.synced.js.map +1 -0
- package/dist/themes/registry.d.ts +3 -0
- package/dist/themes/registry.d.ts.map +1 -0
- package/dist/themes/registry.js +16 -0
- package/dist/themes/registry.js.map +1 -0
- package/dist/themes/types.d.ts +172 -0
- package/dist/themes/types.d.ts.map +1 -0
- package/dist/themes/types.js +4 -0
- package/dist/themes/types.js.map +1 -0
- package/dist/tokens/index.d.ts +8 -0
- package/dist/tokens/index.d.ts.map +1 -0
- package/dist/tokens/index.js +9 -0
- package/dist/tokens/index.js.map +1 -0
- package/dist/tokens/style-dictionary/bulma-dark.json +410 -0
- package/dist/tokens/style-dictionary/bulma-light.json +410 -0
- package/dist/tokens/style-dictionary/catppuccin-frappe.json +264 -0
- package/dist/tokens/style-dictionary/catppuccin-latte.json +264 -0
- package/dist/tokens/style-dictionary/catppuccin-macchiato.json +264 -0
- package/dist/tokens/style-dictionary/catppuccin-mocha.json +264 -0
- package/dist/tokens/style-dictionary/dracula.json +409 -0
- package/dist/tokens/style-dictionary/github-dark.json +264 -0
- package/dist/tokens/style-dictionary/github-light.json +264 -0
- package/dist/tokens/style-dictionary/themes.json +2526 -0
- package/dist/tokens/style-dictionary/tokens.json +1050 -0
- package/dist/tokens/tokens-typed.json +218 -0
- package/package.json +180 -0
- package/packages/adapters/bulma/dist/bulma-adapter.css +153 -0
- package/packages/adapters/bulma/dist/index.d.ts +60 -0
- package/packages/adapters/bulma/dist/index.d.ts.map +1 -0
- package/packages/adapters/bulma/dist/index.js +343 -0
- package/packages/adapters/bulma/dist/index.js.map +1 -0
- package/packages/adapters/tailwind/dist/colors.d.ts +32 -0
- package/packages/adapters/tailwind/dist/colors.d.ts.map +1 -0
- package/packages/adapters/tailwind/dist/colors.js +133 -0
- package/packages/adapters/tailwind/dist/colors.js.map +1 -0
- package/packages/adapters/tailwind/dist/preset.d.ts +117 -0
- package/packages/adapters/tailwind/dist/preset.d.ts.map +1 -0
- package/packages/adapters/tailwind/dist/preset.js +136 -0
- package/packages/adapters/tailwind/dist/preset.js.map +1 -0
- package/packages/adapters/tailwind/dist/tsconfig.tsbuildinfo +1 -0
- package/packages/css/dist/base.d.ts +27 -0
- package/packages/css/dist/base.d.ts.map +1 -0
- package/packages/css/dist/base.js +277 -0
- package/packages/css/dist/base.js.map +1 -0
- package/packages/css/dist/components/buttons.css +141 -0
- package/packages/css/dist/components/cards.css +157 -0
- package/packages/css/dist/components/forms.css +109 -0
- package/packages/css/dist/components/navigation.css +175 -0
- package/packages/css/dist/components/notifications.css +192 -0
- package/packages/css/dist/components/progress.css +113 -0
- package/packages/css/dist/components/sidebar.css +537 -0
- package/packages/css/dist/components/tables.css +157 -0
- package/packages/css/dist/components/tabs.css +106 -0
- package/packages/css/dist/components/tags.css +121 -0
- package/packages/css/dist/generator.d.ts +60 -0
- package/packages/css/dist/generator.d.ts.map +1 -0
- package/packages/css/dist/generator.js +267 -0
- package/packages/css/dist/generator.js.map +1 -0
- package/packages/css/dist/index.d.ts +13 -0
- package/packages/css/dist/index.d.ts.map +1 -0
- package/packages/css/dist/index.js +16 -0
- package/packages/css/dist/index.js.map +1 -0
- package/packages/css/dist/syntax.d.ts +29 -0
- package/packages/css/dist/syntax.d.ts.map +1 -0
- package/packages/css/dist/syntax.js +341 -0
- package/packages/css/dist/syntax.js.map +1 -0
- package/packages/css/dist/themes/bulma-dark.css +86 -0
- package/packages/css/dist/themes/bulma-light.css +86 -0
- package/packages/css/dist/themes/catppuccin-frappe.css +61 -0
- package/packages/css/dist/themes/catppuccin-latte.css +61 -0
- package/packages/css/dist/themes/catppuccin-macchiato.css +61 -0
- package/packages/css/dist/themes/catppuccin-mocha.css +61 -0
- package/packages/css/dist/themes/dracula.css +85 -0
- package/packages/css/dist/themes/github-dark.css +61 -0
- package/packages/css/dist/themes/github-light.css +61 -0
- package/packages/css/dist/turbo-base.css +246 -0
- package/packages/css/dist/turbo-components.css +1833 -0
- package/packages/css/dist/turbo-core.css +92 -0
- package/packages/css/dist/turbo-syntax.css +242 -0
- package/packages/css/dist/turbo.css +727 -0
- package/packages/theme-selector/dist/accessibility.d.ts +8 -0
- package/packages/theme-selector/dist/accessibility.d.ts.map +1 -0
- package/packages/theme-selector/dist/accessibility.js +19 -0
- package/packages/theme-selector/dist/accessibility.js.map +1 -0
- package/packages/theme-selector/dist/apply-theme.d.ts +12 -0
- package/packages/theme-selector/dist/apply-theme.d.ts.map +1 -0
- package/packages/theme-selector/dist/apply-theme.js +60 -0
- package/packages/theme-selector/dist/apply-theme.js.map +1 -0
- package/packages/theme-selector/dist/constants.d.ts +28 -0
- package/packages/theme-selector/dist/constants.d.ts.map +1 -0
- package/packages/theme-selector/dist/constants.js +29 -0
- package/packages/theme-selector/dist/constants.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/events.d.ts +9 -0
- package/packages/theme-selector/dist/dropdown/events.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/events.js +120 -0
- package/packages/theme-selector/dist/dropdown/events.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/helpers.d.ts +12 -0
- package/packages/theme-selector/dist/dropdown/helpers.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/helpers.js +25 -0
- package/packages/theme-selector/dist/dropdown/helpers.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/state.d.ts +26 -0
- package/packages/theme-selector/dist/dropdown/state.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/state.js +50 -0
- package/packages/theme-selector/dist/dropdown/state.js.map +1 -0
- package/packages/theme-selector/dist/dropdown/ui.d.ts +46 -0
- package/packages/theme-selector/dist/dropdown/ui.d.ts.map +1 -0
- package/packages/theme-selector/dist/dropdown/ui.js +179 -0
- package/packages/theme-selector/dist/dropdown/ui.js.map +1 -0
- package/packages/theme-selector/dist/errors.d.ts +59 -0
- package/packages/theme-selector/dist/errors.d.ts.map +1 -0
- package/packages/theme-selector/dist/errors.js +127 -0
- package/packages/theme-selector/dist/errors.js.map +1 -0
- package/packages/theme-selector/dist/index.d.ts +25 -0
- package/packages/theme-selector/dist/index.d.ts.map +1 -0
- package/packages/theme-selector/dist/index.js +114 -0
- package/packages/theme-selector/dist/index.js.map +1 -0
- package/packages/theme-selector/dist/navbar.d.ts +13 -0
- package/packages/theme-selector/dist/navbar.d.ts.map +1 -0
- package/packages/theme-selector/dist/navbar.js +75 -0
- package/packages/theme-selector/dist/navbar.js.map +1 -0
- package/packages/theme-selector/dist/storage.d.ts +32 -0
- package/packages/theme-selector/dist/storage.d.ts.map +1 -0
- package/packages/theme-selector/dist/storage.js +100 -0
- package/packages/theme-selector/dist/storage.js.map +1 -0
- package/packages/theme-selector/dist/theme-loader.d.ts +37 -0
- package/packages/theme-selector/dist/theme-loader.d.ts.map +1 -0
- package/packages/theme-selector/dist/theme-loader.js +142 -0
- package/packages/theme-selector/dist/theme-loader.js.map +1 -0
- package/packages/theme-selector/dist/theme-mapper.d.ts +25 -0
- package/packages/theme-selector/dist/theme-mapper.d.ts.map +1 -0
- package/packages/theme-selector/dist/theme-mapper.js +99 -0
- package/packages/theme-selector/dist/theme-mapper.js.map +1 -0
- package/packages/theme-selector/dist/theme-resolver.d.ts +50 -0
- package/packages/theme-selector/dist/theme-resolver.d.ts.map +1 -0
- package/packages/theme-selector/dist/theme-resolver.js +84 -0
- package/packages/theme-selector/dist/theme-resolver.js.map +1 -0
- package/packages/theme-selector/dist/types.d.ts +7 -0
- package/packages/theme-selector/dist/types.d.ts.map +1 -0
- package/packages/theme-selector/dist/types.js +6 -0
- package/packages/theme-selector/dist/types.js.map +1 -0
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
{
|
|
2
|
+
"spacing": {
|
|
3
|
+
"xs": {
|
|
4
|
+
"$value": "0.25rem",
|
|
5
|
+
"$type": "dimension"
|
|
6
|
+
},
|
|
7
|
+
"sm": {
|
|
8
|
+
"$value": "0.5rem",
|
|
9
|
+
"$type": "dimension"
|
|
10
|
+
},
|
|
11
|
+
"md": {
|
|
12
|
+
"$value": "1rem",
|
|
13
|
+
"$type": "dimension"
|
|
14
|
+
},
|
|
15
|
+
"lg": {
|
|
16
|
+
"$value": "1.5rem",
|
|
17
|
+
"$type": "dimension"
|
|
18
|
+
},
|
|
19
|
+
"xl": {
|
|
20
|
+
"$value": "2rem",
|
|
21
|
+
"$type": "dimension"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"elevation": {
|
|
25
|
+
"none": {
|
|
26
|
+
"$value": "none",
|
|
27
|
+
"$type": "shadow"
|
|
28
|
+
},
|
|
29
|
+
"sm": {
|
|
30
|
+
"$value": "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
|
|
31
|
+
"$type": "shadow"
|
|
32
|
+
},
|
|
33
|
+
"md": {
|
|
34
|
+
"$value": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
|
|
35
|
+
"$type": "shadow"
|
|
36
|
+
},
|
|
37
|
+
"lg": {
|
|
38
|
+
"$value": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
|
|
39
|
+
"$type": "shadow"
|
|
40
|
+
},
|
|
41
|
+
"xl": {
|
|
42
|
+
"$value": "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
|
|
43
|
+
"$type": "shadow"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"animation": {
|
|
47
|
+
"durationFast": {
|
|
48
|
+
"$value": "150ms",
|
|
49
|
+
"$type": "duration"
|
|
50
|
+
},
|
|
51
|
+
"durationNormal": {
|
|
52
|
+
"$value": "300ms",
|
|
53
|
+
"$type": "duration"
|
|
54
|
+
},
|
|
55
|
+
"durationSlow": {
|
|
56
|
+
"$value": "500ms",
|
|
57
|
+
"$type": "duration"
|
|
58
|
+
},
|
|
59
|
+
"easingDefault": {
|
|
60
|
+
"$value": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
61
|
+
"$type": "cubicBezier"
|
|
62
|
+
},
|
|
63
|
+
"easingEmphasized": {
|
|
64
|
+
"$value": "cubic-bezier(0.05, 0.7, 0.1, 1)",
|
|
65
|
+
"$type": "cubicBezier"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"opacity": {
|
|
69
|
+
"disabled": {
|
|
70
|
+
"$value": 0.5,
|
|
71
|
+
"$type": "number"
|
|
72
|
+
},
|
|
73
|
+
"hover": {
|
|
74
|
+
"$value": 0.8,
|
|
75
|
+
"$type": "number"
|
|
76
|
+
},
|
|
77
|
+
"pressed": {
|
|
78
|
+
"$value": 0.6,
|
|
79
|
+
"$type": "number"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"background": {
|
|
83
|
+
"base": {
|
|
84
|
+
"$value": "#ffffff",
|
|
85
|
+
"$type": "color"
|
|
86
|
+
},
|
|
87
|
+
"surface": {
|
|
88
|
+
"$value": "#f5f5f5",
|
|
89
|
+
"$type": "color"
|
|
90
|
+
},
|
|
91
|
+
"overlay": {
|
|
92
|
+
"$value": "#eeeeee",
|
|
93
|
+
"$type": "color"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"text": {
|
|
97
|
+
"primary": {
|
|
98
|
+
"$value": "#363636",
|
|
99
|
+
"$type": "color"
|
|
100
|
+
},
|
|
101
|
+
"secondary": {
|
|
102
|
+
"$value": "#4a4a4a",
|
|
103
|
+
"$type": "color"
|
|
104
|
+
},
|
|
105
|
+
"inverse": {
|
|
106
|
+
"$value": "#ffffff",
|
|
107
|
+
"$type": "color"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"brand": {
|
|
111
|
+
"primary": {
|
|
112
|
+
"$value": "#00d1b2",
|
|
113
|
+
"$type": "color"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"state": {
|
|
117
|
+
"info": {
|
|
118
|
+
"$value": "#3e8ed0",
|
|
119
|
+
"$type": "color"
|
|
120
|
+
},
|
|
121
|
+
"success": {
|
|
122
|
+
"$value": "#48c78e",
|
|
123
|
+
"$type": "color"
|
|
124
|
+
},
|
|
125
|
+
"warning": {
|
|
126
|
+
"$value": "#ffe08a",
|
|
127
|
+
"$type": "color"
|
|
128
|
+
},
|
|
129
|
+
"danger": {
|
|
130
|
+
"$value": "#f14668",
|
|
131
|
+
"$type": "color"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"border": {
|
|
135
|
+
"default": {
|
|
136
|
+
"$value": "#dbdbdb",
|
|
137
|
+
"$type": "color"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"accent": {
|
|
141
|
+
"link": {
|
|
142
|
+
"$value": "#485fc7",
|
|
143
|
+
"$type": "color"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"typography": {
|
|
147
|
+
"fonts": {
|
|
148
|
+
"sans": {
|
|
149
|
+
"$value": "\"Nunito Sans\", BlinkMacSystemFont, -apple-system, \"Segoe UI\", Roboto, Oxygen, Ubuntu, Cantarell, \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif",
|
|
150
|
+
"$type": "fontFamily"
|
|
151
|
+
},
|
|
152
|
+
"mono": {
|
|
153
|
+
"$value": "\"JetBrains Mono\", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace",
|
|
154
|
+
"$type": "fontFamily"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"webFonts": [
|
|
158
|
+
"https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap",
|
|
159
|
+
"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"content": {
|
|
163
|
+
"heading": {
|
|
164
|
+
"h1": {
|
|
165
|
+
"$value": "#00d1b2",
|
|
166
|
+
"$type": "color"
|
|
167
|
+
},
|
|
168
|
+
"h2": {
|
|
169
|
+
"$value": "#485fc7",
|
|
170
|
+
"$type": "color"
|
|
171
|
+
},
|
|
172
|
+
"h3": {
|
|
173
|
+
"$value": "#3e8ed0",
|
|
174
|
+
"$type": "color"
|
|
175
|
+
},
|
|
176
|
+
"h4": {
|
|
177
|
+
"$value": "#48c78e",
|
|
178
|
+
"$type": "color"
|
|
179
|
+
},
|
|
180
|
+
"h5": {
|
|
181
|
+
"$value": "#ffe08a",
|
|
182
|
+
"$type": "color"
|
|
183
|
+
},
|
|
184
|
+
"h6": {
|
|
185
|
+
"$value": "#f14668",
|
|
186
|
+
"$type": "color"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"body": {
|
|
190
|
+
"primary": {
|
|
191
|
+
"$value": "#4a4a4a",
|
|
192
|
+
"$type": "color"
|
|
193
|
+
},
|
|
194
|
+
"secondary": {
|
|
195
|
+
"$value": "#6b6b6b",
|
|
196
|
+
"$type": "color"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"link": {
|
|
200
|
+
"default": {
|
|
201
|
+
"$value": "#485fc7",
|
|
202
|
+
"$type": "color"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"selection": {
|
|
206
|
+
"fg": {
|
|
207
|
+
"$value": "#363636",
|
|
208
|
+
"$type": "color"
|
|
209
|
+
},
|
|
210
|
+
"bg": {
|
|
211
|
+
"$value": "#b5d5ff",
|
|
212
|
+
"$type": "color"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"blockquote": {
|
|
216
|
+
"border": {
|
|
217
|
+
"$value": "#dbdbdb",
|
|
218
|
+
"$type": "color"
|
|
219
|
+
},
|
|
220
|
+
"fg": {
|
|
221
|
+
"$value": "#4a4a4a",
|
|
222
|
+
"$type": "color"
|
|
223
|
+
},
|
|
224
|
+
"bg": {
|
|
225
|
+
"$value": "#f5f5f5",
|
|
226
|
+
"$type": "color"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"codeInline": {
|
|
230
|
+
"fg": {
|
|
231
|
+
"$value": "#f14668",
|
|
232
|
+
"$type": "color"
|
|
233
|
+
},
|
|
234
|
+
"bg": {
|
|
235
|
+
"$value": "#f5f5f5",
|
|
236
|
+
"$type": "color"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"codeBlock": {
|
|
240
|
+
"fg": {
|
|
241
|
+
"$value": "#363636",
|
|
242
|
+
"$type": "color"
|
|
243
|
+
},
|
|
244
|
+
"bg": {
|
|
245
|
+
"$value": "#f5f5f5",
|
|
246
|
+
"$type": "color"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"table": {
|
|
250
|
+
"border": {
|
|
251
|
+
"$value": "#dbdbdb",
|
|
252
|
+
"$type": "color"
|
|
253
|
+
},
|
|
254
|
+
"stripe": {
|
|
255
|
+
"$value": "#fafafa",
|
|
256
|
+
"$type": "color"
|
|
257
|
+
},
|
|
258
|
+
"theadBg": {
|
|
259
|
+
"$value": "#f0f0f0",
|
|
260
|
+
"$type": "color"
|
|
261
|
+
},
|
|
262
|
+
"cellBg": {
|
|
263
|
+
"$value": "#ffffff",
|
|
264
|
+
"$type": "color"
|
|
265
|
+
},
|
|
266
|
+
"headerFg": {
|
|
267
|
+
"$value": "#363636",
|
|
268
|
+
"$type": "color"
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"components": {
|
|
273
|
+
"card": {
|
|
274
|
+
"bg": {
|
|
275
|
+
"$value": "#ffffff",
|
|
276
|
+
"$type": "color"
|
|
277
|
+
},
|
|
278
|
+
"border": {
|
|
279
|
+
"$value": "#d5d5d5",
|
|
280
|
+
"$type": "color"
|
|
281
|
+
},
|
|
282
|
+
"headerBg": {
|
|
283
|
+
"$value": "#f5f5f5",
|
|
284
|
+
"$type": "color"
|
|
285
|
+
},
|
|
286
|
+
"footerBg": {
|
|
287
|
+
"$value": "#fafafa",
|
|
288
|
+
"$type": "color"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"message": {
|
|
292
|
+
"bg": {
|
|
293
|
+
"$value": "#f8f9fa",
|
|
294
|
+
"$type": "color"
|
|
295
|
+
},
|
|
296
|
+
"headerBg": {
|
|
297
|
+
"$value": "#eef1f4",
|
|
298
|
+
"$type": "color"
|
|
299
|
+
},
|
|
300
|
+
"border": {
|
|
301
|
+
"$value": "#d5dbe1",
|
|
302
|
+
"$type": "color"
|
|
303
|
+
},
|
|
304
|
+
"bodyFg": {
|
|
305
|
+
"$value": "#4a4a4a",
|
|
306
|
+
"$type": "color"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"panel": {
|
|
310
|
+
"bg": {
|
|
311
|
+
"$value": "#ffffff",
|
|
312
|
+
"$type": "color"
|
|
313
|
+
},
|
|
314
|
+
"headerBg": {
|
|
315
|
+
"$value": "#f0f0f0",
|
|
316
|
+
"$type": "color"
|
|
317
|
+
},
|
|
318
|
+
"headerFg": {
|
|
319
|
+
"$value": "#363636",
|
|
320
|
+
"$type": "color"
|
|
321
|
+
},
|
|
322
|
+
"border": {
|
|
323
|
+
"$value": "#d5d5d5",
|
|
324
|
+
"$type": "color"
|
|
325
|
+
},
|
|
326
|
+
"blockBg": {
|
|
327
|
+
"$value": "#fafafa",
|
|
328
|
+
"$type": "color"
|
|
329
|
+
},
|
|
330
|
+
"blockHoverBg": {
|
|
331
|
+
"$value": "#f5f5f5",
|
|
332
|
+
"$type": "color"
|
|
333
|
+
},
|
|
334
|
+
"blockActiveBg": {
|
|
335
|
+
"$value": "#eef6fc",
|
|
336
|
+
"$type": "color"
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"box": {
|
|
340
|
+
"bg": {
|
|
341
|
+
"$value": "#ffffff",
|
|
342
|
+
"$type": "color"
|
|
343
|
+
},
|
|
344
|
+
"border": {
|
|
345
|
+
"$value": "#e0e0e0",
|
|
346
|
+
"$type": "color"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"notification": {
|
|
350
|
+
"bg": {
|
|
351
|
+
"$value": "#f5f5f5",
|
|
352
|
+
"$type": "color"
|
|
353
|
+
},
|
|
354
|
+
"border": {
|
|
355
|
+
"$value": "#e0e0e0",
|
|
356
|
+
"$type": "color"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"modal": {
|
|
360
|
+
"bg": {
|
|
361
|
+
"$value": "rgba(10, 10, 10, 0.86)",
|
|
362
|
+
"$type": "color"
|
|
363
|
+
},
|
|
364
|
+
"cardBg": {
|
|
365
|
+
"$value": "#ffffff",
|
|
366
|
+
"$type": "color"
|
|
367
|
+
},
|
|
368
|
+
"headerBg": {
|
|
369
|
+
"$value": "#f5f5f5",
|
|
370
|
+
"$type": "color"
|
|
371
|
+
},
|
|
372
|
+
"footerBg": {
|
|
373
|
+
"$value": "#fafafa",
|
|
374
|
+
"$type": "color"
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"dropdown": {
|
|
378
|
+
"bg": {
|
|
379
|
+
"$value": "#ffffff",
|
|
380
|
+
"$type": "color"
|
|
381
|
+
},
|
|
382
|
+
"itemHoverBg": {
|
|
383
|
+
"$value": "#f5f5f5",
|
|
384
|
+
"$type": "color"
|
|
385
|
+
},
|
|
386
|
+
"border": {
|
|
387
|
+
"$value": "#dbdbdb",
|
|
388
|
+
"$type": "color"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"tabs": {
|
|
392
|
+
"border": {
|
|
393
|
+
"$value": "#dbdbdb",
|
|
394
|
+
"$type": "color"
|
|
395
|
+
},
|
|
396
|
+
"linkBg": {
|
|
397
|
+
"$value": "#f5f5f5",
|
|
398
|
+
"$type": "color"
|
|
399
|
+
},
|
|
400
|
+
"linkActiveBg": {
|
|
401
|
+
"$value": "#ffffff",
|
|
402
|
+
"$type": "color"
|
|
403
|
+
},
|
|
404
|
+
"linkHoverBg": {
|
|
405
|
+
"$value": "#eeeeee",
|
|
406
|
+
"$type": "color"
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
}
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
{
|
|
2
|
+
"spacing": {
|
|
3
|
+
"xs": {
|
|
4
|
+
"$value": "0.25rem",
|
|
5
|
+
"$type": "dimension"
|
|
6
|
+
},
|
|
7
|
+
"sm": {
|
|
8
|
+
"$value": "0.5rem",
|
|
9
|
+
"$type": "dimension"
|
|
10
|
+
},
|
|
11
|
+
"md": {
|
|
12
|
+
"$value": "1rem",
|
|
13
|
+
"$type": "dimension"
|
|
14
|
+
},
|
|
15
|
+
"lg": {
|
|
16
|
+
"$value": "1.5rem",
|
|
17
|
+
"$type": "dimension"
|
|
18
|
+
},
|
|
19
|
+
"xl": {
|
|
20
|
+
"$value": "2rem",
|
|
21
|
+
"$type": "dimension"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"elevation": {
|
|
25
|
+
"none": {
|
|
26
|
+
"$value": "none",
|
|
27
|
+
"$type": "shadow"
|
|
28
|
+
},
|
|
29
|
+
"sm": {
|
|
30
|
+
"$value": "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
|
|
31
|
+
"$type": "shadow"
|
|
32
|
+
},
|
|
33
|
+
"md": {
|
|
34
|
+
"$value": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
|
|
35
|
+
"$type": "shadow"
|
|
36
|
+
},
|
|
37
|
+
"lg": {
|
|
38
|
+
"$value": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
|
|
39
|
+
"$type": "shadow"
|
|
40
|
+
},
|
|
41
|
+
"xl": {
|
|
42
|
+
"$value": "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
|
|
43
|
+
"$type": "shadow"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"animation": {
|
|
47
|
+
"durationFast": {
|
|
48
|
+
"$value": "150ms",
|
|
49
|
+
"$type": "duration"
|
|
50
|
+
},
|
|
51
|
+
"durationNormal": {
|
|
52
|
+
"$value": "300ms",
|
|
53
|
+
"$type": "duration"
|
|
54
|
+
},
|
|
55
|
+
"durationSlow": {
|
|
56
|
+
"$value": "500ms",
|
|
57
|
+
"$type": "duration"
|
|
58
|
+
},
|
|
59
|
+
"easingDefault": {
|
|
60
|
+
"$value": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
61
|
+
"$type": "cubicBezier"
|
|
62
|
+
},
|
|
63
|
+
"easingEmphasized": {
|
|
64
|
+
"$value": "cubic-bezier(0.05, 0.7, 0.1, 1)",
|
|
65
|
+
"$type": "cubicBezier"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"opacity": {
|
|
69
|
+
"disabled": {
|
|
70
|
+
"$value": 0.5,
|
|
71
|
+
"$type": "number"
|
|
72
|
+
},
|
|
73
|
+
"hover": {
|
|
74
|
+
"$value": 0.8,
|
|
75
|
+
"$type": "number"
|
|
76
|
+
},
|
|
77
|
+
"pressed": {
|
|
78
|
+
"$value": 0.6,
|
|
79
|
+
"$type": "number"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"background": {
|
|
83
|
+
"base": {
|
|
84
|
+
"$value": "#303446",
|
|
85
|
+
"$type": "color"
|
|
86
|
+
},
|
|
87
|
+
"surface": {
|
|
88
|
+
"$value": "#292c3c",
|
|
89
|
+
"$type": "color"
|
|
90
|
+
},
|
|
91
|
+
"overlay": {
|
|
92
|
+
"$value": "#232634",
|
|
93
|
+
"$type": "color"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"text": {
|
|
97
|
+
"primary": {
|
|
98
|
+
"$value": "#c6d0f5",
|
|
99
|
+
"$type": "color"
|
|
100
|
+
},
|
|
101
|
+
"secondary": {
|
|
102
|
+
"$value": "#a5adce",
|
|
103
|
+
"$type": "color"
|
|
104
|
+
},
|
|
105
|
+
"inverse": {
|
|
106
|
+
"$value": "#303446",
|
|
107
|
+
"$type": "color"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"brand": {
|
|
111
|
+
"primary": {
|
|
112
|
+
"$value": "#8caaee",
|
|
113
|
+
"$type": "color"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"state": {
|
|
117
|
+
"info": {
|
|
118
|
+
"$value": "#99d1db",
|
|
119
|
+
"$type": "color"
|
|
120
|
+
},
|
|
121
|
+
"success": {
|
|
122
|
+
"$value": "#a6d189",
|
|
123
|
+
"$type": "color"
|
|
124
|
+
},
|
|
125
|
+
"warning": {
|
|
126
|
+
"$value": "#e5c890",
|
|
127
|
+
"$type": "color"
|
|
128
|
+
},
|
|
129
|
+
"danger": {
|
|
130
|
+
"$value": "#e78284",
|
|
131
|
+
"$type": "color"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"border": {
|
|
135
|
+
"default": {
|
|
136
|
+
"$value": "#737994",
|
|
137
|
+
"$type": "color"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"accent": {
|
|
141
|
+
"link": {
|
|
142
|
+
"$value": "#8caaee",
|
|
143
|
+
"$type": "color"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"typography": {
|
|
147
|
+
"fonts": {
|
|
148
|
+
"sans": {
|
|
149
|
+
"$value": "Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
150
|
+
"$type": "fontFamily"
|
|
151
|
+
},
|
|
152
|
+
"mono": {
|
|
153
|
+
"$value": "JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace",
|
|
154
|
+
"$type": "fontFamily"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"webFonts": [
|
|
158
|
+
"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap",
|
|
159
|
+
"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"content": {
|
|
163
|
+
"heading": {
|
|
164
|
+
"h1": {
|
|
165
|
+
"$value": "#a6d189",
|
|
166
|
+
"$type": "color"
|
|
167
|
+
},
|
|
168
|
+
"h2": {
|
|
169
|
+
"$value": "#8caaee",
|
|
170
|
+
"$type": "color"
|
|
171
|
+
},
|
|
172
|
+
"h3": {
|
|
173
|
+
"$value": "#85c1dc",
|
|
174
|
+
"$type": "color"
|
|
175
|
+
},
|
|
176
|
+
"h4": {
|
|
177
|
+
"$value": "#e5c890",
|
|
178
|
+
"$type": "color"
|
|
179
|
+
},
|
|
180
|
+
"h5": {
|
|
181
|
+
"$value": "#ca9ee6",
|
|
182
|
+
"$type": "color"
|
|
183
|
+
},
|
|
184
|
+
"h6": {
|
|
185
|
+
"$value": "#e78284",
|
|
186
|
+
"$type": "color"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"body": {
|
|
190
|
+
"primary": {
|
|
191
|
+
"$value": "#c6d0f5",
|
|
192
|
+
"$type": "color"
|
|
193
|
+
},
|
|
194
|
+
"secondary": {
|
|
195
|
+
"$value": "#a5adce",
|
|
196
|
+
"$type": "color"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"link": {
|
|
200
|
+
"default": {
|
|
201
|
+
"$value": "#8caaee",
|
|
202
|
+
"$type": "color"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"selection": {
|
|
206
|
+
"fg": {
|
|
207
|
+
"$value": "#c6d0f5",
|
|
208
|
+
"$type": "color"
|
|
209
|
+
},
|
|
210
|
+
"bg": {
|
|
211
|
+
"$value": "#838ba7",
|
|
212
|
+
"$type": "color"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"blockquote": {
|
|
216
|
+
"border": {
|
|
217
|
+
"$value": "#838ba7",
|
|
218
|
+
"$type": "color"
|
|
219
|
+
},
|
|
220
|
+
"fg": {
|
|
221
|
+
"$value": "#c6d0f5",
|
|
222
|
+
"$type": "color"
|
|
223
|
+
},
|
|
224
|
+
"bg": {
|
|
225
|
+
"$value": "#292c3c",
|
|
226
|
+
"$type": "color"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"codeInline": {
|
|
230
|
+
"fg": {
|
|
231
|
+
"$value": "#c6d0f5",
|
|
232
|
+
"$type": "color"
|
|
233
|
+
},
|
|
234
|
+
"bg": {
|
|
235
|
+
"$value": "#414559",
|
|
236
|
+
"$type": "color"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"codeBlock": {
|
|
240
|
+
"fg": {
|
|
241
|
+
"$value": "#c6d0f5",
|
|
242
|
+
"$type": "color"
|
|
243
|
+
},
|
|
244
|
+
"bg": {
|
|
245
|
+
"$value": "#414559",
|
|
246
|
+
"$type": "color"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"table": {
|
|
250
|
+
"border": {
|
|
251
|
+
"$value": "#838ba7",
|
|
252
|
+
"$type": "color"
|
|
253
|
+
},
|
|
254
|
+
"stripe": {
|
|
255
|
+
"$value": "#414559",
|
|
256
|
+
"$type": "color"
|
|
257
|
+
},
|
|
258
|
+
"theadBg": {
|
|
259
|
+
"$value": "#51576d",
|
|
260
|
+
"$type": "color"
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|