minatosnow commited on
Commit
5d0e386
1 Parent(s): 4603270

First commit

Browse files
Files changed (4) hide show
  1. README.md +12 -7
  2. app.py +147 -0
  3. theme_dropdown.py +57 -0
  4. themes/theme_schema@0.0.1.json +331 -0
README.md CHANGED
@@ -1,12 +1,17 @@
 
1
  ---
2
- title: Qaigpt
3
- emoji: 🚀
4
- colorFrom: yellow
5
- colorTo: green
6
  sdk: gradio
7
- sdk_version: 3.39.0
8
  app_file: app.py
9
  pinned: false
 
10
  ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
1
+
2
  ---
3
+ tags: [gradio-theme]
4
+ title: Monochrome
5
+ colorFrom: orange
6
+ colorTo: purple
7
  sdk: gradio
8
+ sdk_version: 3.22.1b1
9
  app_file: app.py
10
  pinned: false
11
+ license: apache-2.0
12
  ---
13
+ # Monochrome
14
+ ## Description
15
+ Add a description of this theme here!
16
+ ## Contributions
17
+ Thanks to [@freddyaboulton](https://huggingface.co/freddyaboulton) for adding this gradio theme!
app.py ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import time
2
+
3
+ from theme_dropdown import create_theme_dropdown # noqa: F401
4
+
5
+ import gradio as gr
6
+
7
+ dropdown, js = create_theme_dropdown()
8
+
9
+ with gr.Blocks(theme='gradio/monochrome') as demo:
10
+ with gr.Row().style(equal_height=True):
11
+ with gr.Column(scale=10):
12
+ gr.Markdown(
13
+ """
14
+ # Theme preview: `Monochrome`
15
+ To use this theme, set `theme='gradio/monochrome'` in `gr.Blocks()` or `gr.Interface()`.
16
+ You can append an `@` and a semantic version expression, e.g. @>=1.0.0,<2.0.0 to pin to a given version
17
+ of this theme.
18
+ """
19
+ )
20
+ with gr.Column(scale=3):
21
+ with gr.Box():
22
+ dropdown.render()
23
+ toggle_dark = gr.Button(value="Toggle Dark").style(full_width=True)
24
+
25
+ dropdown.change(None, dropdown, None, _js=js)
26
+ toggle_dark.click(
27
+ None,
28
+ _js="""
29
+ () => {
30
+ document.body.classList.toggle('dark');
31
+ document.querySelector('gradio-app').style.backgroundColor = 'var(--color-background-primary)'
32
+ }
33
+ """,
34
+ )
35
+
36
+ name = gr.Textbox(
37
+ label="Name",
38
+ info="Full name, including middle name. No special characters.",
39
+ placeholder="John Doe",
40
+ value="John Doe",
41
+ interactive=True,
42
+ )
43
+
44
+ with gr.Row():
45
+ slider1 = gr.Slider(label="Slider 1")
46
+ slider2 = gr.Slider(label="Slider 2")
47
+ gr.CheckboxGroup(["A", "B", "C"], label="Checkbox Group")
48
+
49
+ with gr.Row():
50
+ with gr.Column(variant="panel", scale=1):
51
+ gr.Markdown("## Panel 1")
52
+ radio = gr.Radio(
53
+ ["A", "B", "C"],
54
+ label="Radio",
55
+ info="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
56
+ )
57
+ drop = gr.Dropdown(["Option 1", "Option 2", "Option 3"], show_label=False)
58
+ drop_2 = gr.Dropdown(
59
+ ["Option A", "Option B", "Option C"],
60
+ multiselect=True,
61
+ value=["Option A"],
62
+ label="Dropdown",
63
+ interactive=True,
64
+ )
65
+ check = gr.Checkbox(label="Go")
66
+ with gr.Column(variant="panel", scale=2):
67
+ img = gr.Image(
68
+ "https://gradio.app/assets/img/header-image.jpg", label="Image"
69
+ ).style(height=320)
70
+ with gr.Row():
71
+ go_btn = gr.Button("Go", label="Primary Button", variant="primary")
72
+ clear_btn = gr.Button(
73
+ "Clear", label="Secondary Button", variant="secondary"
74
+ )
75
+
76
+ def go(*args):
77
+ time.sleep(3)
78
+ return "https://gradio.app/assets/img/header-image.jpg"
79
+
80
+ go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
81
+
82
+ def clear():
83
+ time.sleep(0.2)
84
+ return None
85
+
86
+ clear_btn.click(clear, None, img)
87
+
88
+ with gr.Row():
89
+ btn1 = gr.Button("Button 1").style(size="sm")
90
+ btn2 = gr.UploadButton().style(size="sm")
91
+ stop_btn = gr.Button("Stop", label="Stop Button", variant="stop").style(
92
+ size="sm"
93
+ )
94
+
95
+ with gr.Row():
96
+ gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
97
+ gr.JSON(
98
+ value={"a": 1, "b": 2, "c": {"test": "a", "test2": [1, 2, 3]}}, label="JSON"
99
+ )
100
+ gr.Label(value={"cat": 0.7, "dog": 0.2, "fish": 0.1})
101
+ gr.File()
102
+ with gr.Row():
103
+ gr.ColorPicker()
104
+ gr.Video("https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4")
105
+ gr.Gallery(
106
+ [
107
+ (
108
+ "https://gradio-static-files.s3.us-west-2.amazonaws.com/lion.jpg",
109
+ "lion",
110
+ ),
111
+ (
112
+ "https://gradio-static-files.s3.us-west-2.amazonaws.com/logo.png",
113
+ "logo",
114
+ ),
115
+ (
116
+ "https://gradio-static-files.s3.us-west-2.amazonaws.com/tower.jpg",
117
+ "tower",
118
+ ),
119
+ ]
120
+ ).style(height="200px", grid=2)
121
+
122
+ with gr.Row():
123
+ with gr.Column(scale=2):
124
+ chatbot = gr.Chatbot([("Hello", "Hi")], label="Chatbot")
125
+ chat_btn = gr.Button("Add messages")
126
+
127
+ def chat(history):
128
+ time.sleep(2)
129
+ yield [["How are you?", "I am good."]]
130
+
131
+ chat_btn.click(
132
+ lambda history: history
133
+ + [["How are you?", "I am good."]]
134
+ + (time.sleep(2) or []),
135
+ chatbot,
136
+ chatbot,
137
+ )
138
+ with gr.Column(scale=1):
139
+ with gr.Accordion("Advanced Settings"):
140
+ gr.Markdown("Hello")
141
+ gr.Number(label="Chatbot control 1")
142
+ gr.Number(label="Chatbot control 2")
143
+ gr.Number(label="Chatbot control 3")
144
+
145
+
146
+ if __name__ == "__main__":
147
+ demo.queue().launch()
theme_dropdown.py ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import pathlib
3
+
4
+ from gradio.themes.utils import ThemeAsset
5
+
6
+
7
+ def create_theme_dropdown():
8
+ import gradio as gr
9
+
10
+ asset_path = pathlib.Path(__file__).parent / "themes"
11
+ themes = []
12
+ for theme_asset in os.listdir(str(asset_path)):
13
+ themes.append(
14
+ (ThemeAsset(theme_asset), gr.Theme.load(str(asset_path / theme_asset)))
15
+ )
16
+
17
+ def make_else_if(theme_asset):
18
+ return f"""
19
+ else if (theme == '{str(theme_asset[0].version)}') {{
20
+ var theme_css = `{theme_asset[1]._get_theme_css()}`
21
+ }}"""
22
+
23
+ head, tail = themes[0], themes[1:]
24
+ if_statement = f"""
25
+ if (theme == "{str(head[0].version)}") {{
26
+ var theme_css = `{head[1]._get_theme_css()}`
27
+ }} {" ".join(make_else_if(t) for t in tail)}
28
+ """
29
+
30
+ latest_to_oldest = sorted([t[0] for t in themes], key=lambda asset: asset.version)[
31
+ ::-1
32
+ ]
33
+ latest_to_oldest = [str(t.version) for t in latest_to_oldest]
34
+
35
+ component = gr.Dropdown(
36
+ choices=latest_to_oldest,
37
+ value=latest_to_oldest[0],
38
+ render=False,
39
+ label="Select Version",
40
+ ).style(container=False)
41
+
42
+ return (
43
+ component,
44
+ f"""
45
+ (theme) => {{
46
+ if (!document.querySelector('.theme-css')) {{
47
+ var theme_elem = document.createElement('style');
48
+ theme_elem.classList.add('theme-css');
49
+ document.head.appendChild(theme_elem);
50
+ }} else {{
51
+ var theme_elem = document.querySelector('.theme-css');
52
+ }}
53
+ {if_statement}
54
+ theme_elem.innerHTML = theme_css;
55
+ }}
56
+ """,
57
+ )
themes/theme_schema@0.0.1.json ADDED
@@ -0,0 +1,331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "theme": {
3
+ "_font": [
4
+ {
5
+ "__gradio_font__": true,
6
+ "name": "Quicksand",
7
+ "class": "google"
8
+ },
9
+ {
10
+ "__gradio_font__": true,
11
+ "name": "ui-sans-serif",
12
+ "class": "font"
13
+ },
14
+ {
15
+ "__gradio_font__": true,
16
+ "name": "Arial",
17
+ "class": "font"
18
+ },
19
+ {
20
+ "__gradio_font__": true,
21
+ "name": "system-ui",
22
+ "class": "font"
23
+ },
24
+ {
25
+ "__gradio_font__": true,
26
+ "name": "sans-serif",
27
+ "class": "font"
28
+ }
29
+ ],
30
+ "_font_mono": [
31
+ {
32
+ "__gradio_font__": true,
33
+ "name": "IBM Plex Mono",
34
+ "class": "google"
35
+ },
36
+ {
37
+ "__gradio_font__": true,
38
+ "name": "ui-monospace",
39
+ "class": "font"
40
+ },
41
+ {
42
+ "__gradio_font__": true,
43
+ "name": "Consolas",
44
+ "class": "font"
45
+ },
46
+ {
47
+ "__gradio_font__": true,
48
+ "name": "monospace",
49
+ "class": "font"
50
+ }
51
+ ],
52
+ "_stylesheets": [
53
+ "https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap",
54
+ "https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&display=swap"
55
+ ],
56
+ "background_fill_primary": "white",
57
+ "background_fill_primary_dark": "*neutral_900",
58
+ "background_fill_secondary": "*neutral_50",
59
+ "background_fill_secondary_dark": "*neutral_800",
60
+ "block_background_fill": "*background_fill_primary",
61
+ "block_background_fill_dark": "*neutral_800",
62
+ "block_border_color": "*border_color_primary",
63
+ "block_border_color_dark": "*border_color_primary",
64
+ "block_border_width": "0px",
65
+ "block_border_width_dark": "1px",
66
+ "block_info_text_color": "*body_text_color_subdued",
67
+ "block_info_text_color_dark": "*body_text_color_subdued",
68
+ "block_info_text_size": "*text_sm",
69
+ "block_info_text_weight": "400",
70
+ "block_label_background_fill": "*background_fill_primary",
71
+ "block_label_background_fill_dark": "*background_fill_secondary",
72
+ "block_label_border_color": "*border_color_primary",
73
+ "block_label_border_color_dark": "*border_color_primary",
74
+ "block_label_border_width": "1px",
75
+ "block_label_margin": "0",
76
+ "block_label_padding": "*spacing_sm *spacing_lg",
77
+ "block_label_radius": "calc(*radius_lg - 1px) 0 calc(*radius_lg - 1px) 0",
78
+ "block_label_right_radius": "0 calc(*radius_lg - 1px) 0 calc(*radius_lg - 1px)",
79
+ "block_label_text_color": "*body_text_color",
80
+ "block_label_text_color_dark": "*neutral_200",
81
+ "block_label_text_size": "*text_md",
82
+ "block_label_text_weight": "600",
83
+ "block_padding": "*spacing_xl calc(*spacing_xl + 2px)",
84
+ "block_radius": "*radius_lg",
85
+ "block_shadow": "*shadow_drop_lg",
86
+ "block_shadow_dark": "none",
87
+ "block_title_background_fill": "none",
88
+ "block_title_border_color": "none",
89
+ "block_title_border_width": "0px",
90
+ "block_title_padding": "0",
91
+ "block_title_radius": "none",
92
+ "block_title_text_color": "*body_text_color",
93
+ "block_title_text_color_dark": "*neutral_200",
94
+ "block_title_text_size": "*text_md",
95
+ "block_title_text_weight": "600",
96
+ "body_background_fill": "*background_fill_primary",
97
+ "body_background_fill_dark": "*background_fill_primary",
98
+ "body_text_color": "*neutral_900",
99
+ "body_text_color_dark": "*neutral_100",
100
+ "body_text_color_subdued": "*neutral_700",
101
+ "body_text_color_subdued_dark": "*neutral_400",
102
+ "body_text_size": "*text_md",
103
+ "body_text_weight": "400",
104
+ "border_color_accent": "*primary_300",
105
+ "border_color_accent_dark": "*neutral_600",
106
+ "border_color_primary": "*neutral_200",
107
+ "border_color_primary_dark": "*neutral_700",
108
+ "button_border_width": "*input_border_width",
109
+ "button_border_width_dark": "*input_border_width",
110
+ "button_cancel_background_fill": "*button_primary_background_fill",
111
+ "button_cancel_background_fill_dark": "*button_secondary_background_fill",
112
+ "button_cancel_background_fill_hover": "*button_primary_background_fill_hover",
113
+ "button_cancel_background_fill_hover_dark": "*button_cancel_background_fill",
114
+ "button_cancel_border_color": "*button_secondary_border_color",
115
+ "button_cancel_border_color_dark": "*button_secondary_border_color",
116
+ "button_cancel_border_color_hover": "*button_cancel_border_color",
117
+ "button_cancel_border_color_hover_dark": "*button_cancel_border_color",
118
+ "button_cancel_text_color": "*button_primary_text_color",
119
+ "button_cancel_text_color_dark": "*button_secondary_text_color",
120
+ "button_cancel_text_color_hover": "*button_cancel_text_color",
121
+ "button_cancel_text_color_hover_dark": "*button_cancel_text_color",
122
+ "button_large_padding": "*spacing_lg",
123
+ "button_large_radius": "*radius_lg",
124
+ "button_large_text_size": "*text_lg",
125
+ "button_large_text_weight": "600",
126
+ "button_primary_background_fill": "*neutral_900",
127
+ "button_primary_background_fill_dark": "*neutral_600",
128
+ "button_primary_background_fill_hover": "*neutral_700",
129
+ "button_primary_background_fill_hover_dark": "*neutral_600",
130
+ "button_primary_border_color": "*primary_200",
131
+ "button_primary_border_color_dark": "*primary_600",
132
+ "button_primary_border_color_hover": "*button_primary_border_color",
133
+ "button_primary_border_color_hover_dark": "*button_primary_border_color",
134
+ "button_primary_text_color": "white",
135
+ "button_primary_text_color_dark": "white",
136
+ "button_primary_text_color_hover": "*button_primary_text_color",
137
+ "button_primary_text_color_hover_dark": "*button_primary_text_color",
138
+ "button_secondary_background_fill": "*button_primary_background_fill",
139
+ "button_secondary_background_fill_dark": "*neutral_600",
140
+ "button_secondary_background_fill_hover": "*button_primary_background_fill_hover",
141
+ "button_secondary_background_fill_hover_dark": "*button_secondary_background_fill",
142
+ "button_secondary_border_color": "*neutral_200",
143
+ "button_secondary_border_color_dark": "*neutral_600",
144
+ "button_secondary_border_color_hover": "*button_secondary_border_color",
145
+ "button_secondary_border_color_hover_dark": "*button_secondary_border_color",
146
+ "button_secondary_text_color": "*button_primary_text_color",
147
+ "button_secondary_text_color_dark": "white",
148
+ "button_secondary_text_color_hover": "*button_secondary_text_color",
149
+ "button_secondary_text_color_hover_dark": "*button_secondary_text_color",
150
+ "button_shadow": "none",
151
+ "button_shadow_active": "none",
152
+ "button_shadow_hover": "none",
153
+ "button_small_padding": "*spacing_sm",
154
+ "button_small_radius": "*radius_lg",
155
+ "button_small_text_size": "*text_md",
156
+ "button_small_text_weight": "400",
157
+ "button_transition": "background-color 0.2s ease",
158
+ "checkbox_background_color": "*background_fill_primary",
159
+ "checkbox_background_color_dark": "*neutral_700",
160
+ "checkbox_background_color_focus": "*checkbox_background_color",
161
+ "checkbox_background_color_focus_dark": "*checkbox_background_color",
162
+ "checkbox_background_color_hover": "*checkbox_background_color",
163
+ "checkbox_background_color_hover_dark": "*checkbox_background_color",
164
+ "checkbox_background_color_selected": "*neutral_600",
165
+ "checkbox_background_color_selected_dark": "*neutral_700",
166
+ "checkbox_border_color": "*neutral_300",
167
+ "checkbox_border_color_dark": "*neutral_700",
168
+ "checkbox_border_color_focus": "*secondary_500",
169
+ "checkbox_border_color_focus_dark": "*secondary_500",
170
+ "checkbox_border_color_hover": "*neutral_300",
171
+ "checkbox_border_color_hover_dark": "*neutral_600",
172
+ "checkbox_border_color_selected": "*secondary_600",
173
+ "checkbox_border_color_selected_dark": "*neutral_800",
174
+ "checkbox_border_radius": "*radius_sm",
175
+ "checkbox_border_width": "*input_border_width",
176
+ "checkbox_border_width_dark": "*input_border_width",
177
+ "checkbox_check": "url(\"data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e\")",
178
+ "checkbox_label_background_fill": "*button_primary_background_fill",
179
+ "checkbox_label_background_fill_dark": "*button_secondary_background_fill",
180
+ "checkbox_label_background_fill_hover": "*button_primary_background_fill_hover",
181
+ "checkbox_label_background_fill_hover_dark": "*button_secondary_background_fill_hover",
182
+ "checkbox_label_background_fill_selected": "*checkbox_label_background_fill",
183
+ "checkbox_label_background_fill_selected_dark": "*checkbox_label_background_fill",
184
+ "checkbox_label_border_color": "*border_color_primary",
185
+ "checkbox_label_border_color_dark": "*border_color_primary",
186
+ "checkbox_label_border_color_hover": "*checkbox_label_border_color",
187
+ "checkbox_label_border_color_hover_dark": "*checkbox_label_border_color",
188
+ "checkbox_label_border_width": "*input_border_width",
189
+ "checkbox_label_border_width_dark": "*input_border_width",
190
+ "checkbox_label_gap": "*spacing_lg",
191
+ "checkbox_label_padding": "*spacing_md",
192
+ "checkbox_label_shadow": "none",
193
+ "checkbox_label_text_color": "*button_primary_text_color",
194
+ "checkbox_label_text_color_dark": "*body_text_color",
195
+ "checkbox_label_text_color_selected": "*checkbox_label_text_color",
196
+ "checkbox_label_text_color_selected_dark": "*checkbox_label_text_color",
197
+ "checkbox_label_text_size": "*text_md",
198
+ "checkbox_label_text_weight": "400",
199
+ "checkbox_shadow": "*input_shadow",
200
+ "color_accent": "*primary_500",
201
+ "color_accent_soft": "*primary_50",
202
+ "color_accent_soft_dark": "*neutral_700",
203
+ "container_radius": "*radius_lg",
204
+ "embed_radius": "*radius_lg",
205
+ "error_background_fill": "#fee2e2",
206
+ "error_background_fill_dark": "*background_fill_primary",
207
+ "error_border_color": "#fecaca",
208
+ "error_border_color_dark": "*border_color_primary",
209
+ "error_border_width": "1px",
210
+ "error_text_color": "#ef4444",
211
+ "error_text_color_dark": "#ef4444",
212
+ "font": "'Arial', 'ui-sans-serif', 'system-ui', sans-serif",
213
+ "font_mono": "'IBM Plex Mono', 'ui-monospace', 'Consolas', monospace",
214
+ "form_gap_width": "0px",
215
+ "input_background_fill": "*neutral_100",
216
+ "input_background_fill_dark": "*neutral_700",
217
+ "input_background_fill_focus": "*secondary_500",
218
+ "input_background_fill_focus_dark": "*secondary_600",
219
+ "input_background_fill_hover": "*input_background_fill",
220
+ "input_background_fill_hover_dark": "*input_background_fill",
221
+ "input_border_color": "*border_color_primary",
222
+ "input_border_color_dark": "*border_color_primary",
223
+ "input_border_color_focus": "*secondary_300",
224
+ "input_border_color_focus_dark": "*neutral_700",
225
+ "input_border_color_hover": "*input_border_color",
226
+ "input_border_color_hover_dark": "*input_border_color",
227
+ "input_border_width": "0px",
228
+ "input_padding": "*spacing_xl",
229
+ "input_placeholder_color": "*neutral_400",
230
+ "input_placeholder_color_dark": "*neutral_500",
231
+ "input_radius": "*radius_lg",
232
+ "input_shadow": "none",
233
+ "input_shadow_focus": "*input_shadow",
234
+ "input_text_size": "*text_md",
235
+ "input_text_weight": "400",
236
+ "layout_gap": "*spacing_xxl",
237
+ "link_text_color": "*secondary_600",
238
+ "link_text_color_active": "*secondary_600",
239
+ "link_text_color_active_dark": "*secondary_500",
240
+ "link_text_color_dark": "*secondary_500",
241
+ "link_text_color_hover": "*secondary_700",
242
+ "link_text_color_hover_dark": "*secondary_400",
243
+ "link_text_color_visited": "*secondary_500",
244
+ "link_text_color_visited_dark": "*secondary_600",
245
+ "loader_color": "*color_accent",
246
+ "neutral_100": "#f5f5f5",
247
+ "neutral_200": "#e5e5e5",
248
+ "neutral_300": "#d4d4d4",
249
+ "neutral_400": "#a3a3a3",
250
+ "neutral_50": "#fafafa",
251
+ "neutral_500": "#737373",
252
+ "neutral_600": "#525252",
253
+ "neutral_700": "#404040",
254
+ "neutral_800": "#262626",
255
+ "neutral_900": "#171717",
256
+ "neutral_950": "#0f0f0f",
257
+ "panel_background_fill": "*background_fill_secondary",
258
+ "panel_background_fill_dark": "*background_fill_secondary",
259
+ "panel_border_color": "*border_color_primary",
260
+ "panel_border_color_dark": "*border_color_primary",
261
+ "panel_border_width": "0",
262
+ "primary_100": "#f5f5f5",
263
+ "primary_200": "#e5e5e5",
264
+ "primary_300": "#d4d4d4",
265
+ "primary_400": "#a3a3a3",
266
+ "primary_50": "#fafafa",
267
+ "primary_500": "#737373",
268
+ "primary_600": "#525252",
269
+ "primary_700": "#404040",
270
+ "primary_800": "#262626",
271
+ "primary_900": "#171717",
272
+ "primary_950": "#0f0f0f",
273
+ "prose_header_text_weight": "600",
274
+ "prose_text_size": "*text_md",
275
+ "prose_text_weight": "400",
276
+ "radio_circle": "url(\"data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e\")",
277
+ "radius_lg": "0px",
278
+ "radius_md": "0px",
279
+ "radius_sm": "0px",
280
+ "radius_xl": "0px",
281
+ "radius_xs": "0px",
282
+ "radius_xxl": "0px",
283
+ "radius_xxs": "0px",
284
+ "secondary_100": "#f5f5f5",
285
+ "secondary_200": "#e5e5e5",
286
+ "secondary_300": "#d4d4d4",
287
+ "secondary_400": "#a3a3a3",
288
+ "secondary_50": "#fafafa",
289
+ "secondary_500": "#737373",
290
+ "secondary_600": "#525252",
291
+ "secondary_700": "#404040",
292
+ "secondary_800": "#262626",
293
+ "secondary_900": "#171717",
294
+ "secondary_950": "#0f0f0f",
295
+ "section_header_text_size": "*text_md",
296
+ "section_header_text_weight": "400",
297
+ "shadow_drop": "rgba(0,0,0,0.05) 0px 1px 2px 0px",
298
+ "shadow_drop_lg": "0 1px 4px 0 rgb(0 0 0 / 0.1)",
299
+ "shadow_inset": "rgba(0,0,0,0.05) 0px 2px 4px 0px inset",
300
+ "shadow_spread": "3px",
301
+ "shadow_spread_dark": "1px",
302
+ "slider_color": "*neutral_900",
303
+ "slider_color_dark": "*neutral_500",
304
+ "spacing_lg": "10px",
305
+ "spacing_md": "8px",
306
+ "spacing_sm": "6px",
307
+ "spacing_xl": "14px",
308
+ "spacing_xs": "4px",
309
+ "spacing_xxl": "28px",
310
+ "spacing_xxs": "2px",
311
+ "stat_background_fill": "*primary_300",
312
+ "stat_background_fill_dark": "*primary_500",
313
+ "table_border_color": "*neutral_300",
314
+ "table_border_color_dark": "*neutral_700",
315
+ "table_even_background_fill": "white",
316
+ "table_even_background_fill_dark": "*neutral_950",
317
+ "table_odd_background_fill": "*neutral_50",
318
+ "table_odd_background_fill_dark": "*neutral_900",
319
+ "table_radius": "*radius_lg",
320
+ "table_row_focus": "*color_accent_soft",
321
+ "table_row_focus_dark": "*color_accent_soft",
322
+ "text_lg": "16px",
323
+ "text_md": "14px",
324
+ "text_sm": "12px",
325
+ "text_xl": "22px",
326
+ "text_xs": "10px",
327
+ "text_xxl": "26px",
328
+ "text_xxs": "9px"
329
+ },
330
+ "version": "0.0.1"
331
+ }