@ponchia/ui 0.4.1 → 0.6.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/CHANGELOG.md +552 -8
- package/MIGRATIONS.json +106 -0
- package/README.md +34 -8
- package/annotations/index.d.ts +402 -0
- package/annotations/index.d.ts.map +1 -0
- package/annotations/index.js +792 -0
- package/behaviors/carousel.js +198 -0
- package/behaviors/combobox.js +226 -0
- package/behaviors/command.js +190 -0
- package/behaviors/connectors.js +95 -0
- package/behaviors/crosshair.js +57 -0
- package/behaviors/dialog.js +74 -0
- package/behaviors/disclosure.js +26 -0
- package/behaviors/dismissible.js +25 -0
- package/behaviors/forms.js +186 -0
- package/behaviors/glyph.js +108 -0
- package/behaviors/index.d.ts +79 -0
- package/behaviors/index.js +18 -1409
- package/behaviors/internal.js +97 -0
- package/behaviors/legend.js +67 -0
- package/behaviors/menu.js +47 -0
- package/behaviors/popover.js +179 -0
- package/behaviors/spotlight.js +52 -0
- package/behaviors/table.js +136 -0
- package/behaviors/tabs.js +103 -0
- package/behaviors/theme.js +84 -0
- package/behaviors/toast.js +164 -0
- package/classes/classes.json +1857 -0
- package/classes/index.d.ts +306 -13
- package/classes/index.js +339 -12
- package/classes/vscode.css-custom-data.json +12 -0
- package/connectors/index.d.ts +191 -0
- package/connectors/index.d.ts.map +1 -0
- package/connectors/index.js +275 -0
- package/css/analytical.css +21 -0
- package/css/annotations.css +292 -0
- package/css/app.css +43 -13
- package/css/base.css +15 -10
- package/css/command.css +97 -0
- package/css/connectors.css +110 -0
- package/css/content.css +7 -1
- package/css/crosshair.css +100 -0
- package/css/dataviz.css +5 -1
- package/css/disclosure.css +38 -6
- package/css/dots.css +57 -0
- package/css/feedback.css +111 -2
- package/css/fonts.css +11 -7
- package/css/forms.css +42 -1
- package/css/generated.css +117 -0
- package/css/legend.css +272 -0
- package/css/marks.css +174 -0
- package/css/motion.css +24 -44
- package/css/navigation.css +7 -0
- package/css/overlay.css +31 -1
- package/css/primitives.css +109 -5
- package/css/report.css +39 -81
- package/css/selection.css +46 -0
- package/css/site.css +16 -2
- package/css/sources.css +221 -0
- package/css/spotlight.css +104 -0
- package/css/state.css +121 -0
- package/css/tokens.css +60 -37
- package/css/workbench.css +83 -0
- package/dist/bronto.css +1 -1
- package/dist/css/analytical.css +1 -0
- package/dist/css/annotations.css +1 -0
- package/dist/css/app.css +1 -1
- package/dist/css/base.css +1 -1
- package/dist/css/command.css +1 -0
- package/dist/css/connectors.css +1 -0
- package/dist/css/content.css +1 -1
- package/dist/css/crosshair.css +1 -0
- package/dist/css/disclosure.css +1 -1
- package/dist/css/dots.css +1 -1
- package/dist/css/feedback.css +1 -1
- package/dist/css/fonts.css +1 -1
- package/dist/css/forms.css +1 -1
- package/dist/css/generated.css +1 -0
- package/dist/css/legend.css +1 -0
- package/dist/css/marks.css +1 -0
- package/dist/css/motion.css +1 -1
- package/dist/css/navigation.css +1 -1
- package/dist/css/overlay.css +1 -1
- package/dist/css/primitives.css +1 -1
- package/dist/css/report.css +1 -1
- package/dist/css/selection.css +1 -0
- package/dist/css/site.css +1 -1
- package/dist/css/sources.css +1 -0
- package/dist/css/spotlight.css +1 -0
- package/dist/css/state.css +1 -0
- package/dist/css/tokens.css +1 -1
- package/dist/css/workbench.css +1 -0
- package/docs/adr/0003-theme-model.md +7 -4
- package/docs/annotations.md +425 -0
- package/docs/architecture.md +246 -0
- package/docs/command.md +95 -0
- package/docs/connectors.md +91 -0
- package/docs/contrast.md +116 -92
- package/docs/crosshair.md +63 -0
- package/docs/d2.md +195 -0
- package/docs/generated.md +91 -0
- package/docs/legends.md +184 -0
- package/docs/marks.md +93 -0
- package/docs/mermaid.md +152 -0
- package/docs/reference.md +385 -23
- package/docs/reporting.md +436 -63
- package/docs/selection.md +40 -0
- package/docs/sources.md +137 -0
- package/docs/spotlight.md +78 -0
- package/docs/stability.md +24 -2
- package/docs/state.md +85 -0
- package/docs/usage.md +123 -4
- package/docs/vega.md +225 -0
- package/docs/workbench.md +78 -0
- package/fonts/doto-400.woff2 +0 -0
- package/fonts/doto-500.woff2 +0 -0
- package/fonts/doto-600.woff2 +0 -0
- package/fonts/doto-700.woff2 +0 -0
- package/fonts/doto-800.woff2 +0 -0
- package/fonts/doto-900.woff2 +0 -0
- package/glyphs/glyphs.js +6 -4
- package/llms.txt +362 -14
- package/package.json +115 -12
- package/qwik/index.d.ts +42 -54
- package/qwik/index.d.ts.map +1 -0
- package/qwik/index.js +75 -3
- package/react/index.d.ts +39 -56
- package/react/index.d.ts.map +1 -0
- package/react/index.js +67 -3
- package/solid/index.d.ts +64 -56
- package/solid/index.d.ts.map +1 -0
- package/solid/index.js +70 -3
- package/tokens/d2.d.ts +38 -0
- package/tokens/d2.js +71 -0
- package/tokens/d2.json +43 -0
- package/tokens/index.d.ts +5 -5
- package/tokens/index.js +23 -5
- package/tokens/index.json +9 -0
- package/tokens/mermaid.d.ts +23 -0
- package/tokens/mermaid.js +181 -0
- package/tokens/mermaid.json +163 -0
- package/tokens/resolved.json +45 -1
- package/tokens/skins.js +3 -2
- package/tokens/tokens.dtcg.json +26 -0
- package/tokens/vega.d.ts +34 -0
- package/tokens/vega.js +155 -0
- package/tokens/vega.json +179 -0
- package/fonts/doto-400.ttf +0 -0
- package/fonts/doto-500.ttf +0 -0
- package/fonts/doto-600.ttf +0 -0
- package/fonts/doto-700.ttf +0 -0
- package/fonts/doto-800.ttf +0 -0
- package/fonts/doto-900.ttf +0 -0
package/tokens/vega.js
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
/** @ponchia/ui — GENERATED from the token source by scripts/gen-vega.mjs.
|
|
2
|
+
* Do not edit by hand; run `npm run vega:build`. Drift-checked in CI.
|
|
3
|
+
*
|
|
4
|
+
* An on-brand Vega-Lite / Vega `config`, resolved to static colours per
|
|
5
|
+
* theme. Vega is the consumer's renderer — this is config only, we never
|
|
6
|
+
* import it. Values are resolved hex on purpose: Vega bakes colours into
|
|
7
|
+
* the SVG/canvas scene and cannot read `var(--x)`. See docs/vega.md. */
|
|
8
|
+
|
|
9
|
+
/** Resolved Vega-Lite `config` for each bronto theme. */
|
|
10
|
+
export const vega = {
|
|
11
|
+
light: {
|
|
12
|
+
background: '#f4f4f2',
|
|
13
|
+
view: { stroke: '#d8d8d4' },
|
|
14
|
+
mark: { color: '#d71921' },
|
|
15
|
+
rule: { color: '#a8a8a2' },
|
|
16
|
+
text: {
|
|
17
|
+
color: '#0a0a0a',
|
|
18
|
+
font: "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
19
|
+
},
|
|
20
|
+
title: {
|
|
21
|
+
color: '#0a0a0a',
|
|
22
|
+
subtitleColor: '#686863',
|
|
23
|
+
font: "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
24
|
+
subtitleFont:
|
|
25
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
26
|
+
},
|
|
27
|
+
axis: {
|
|
28
|
+
domainColor: '#a8a8a2',
|
|
29
|
+
gridColor: '#d8d8d4',
|
|
30
|
+
tickColor: '#a8a8a2',
|
|
31
|
+
labelColor: '#353533',
|
|
32
|
+
titleColor: '#0a0a0a',
|
|
33
|
+
labelFont:
|
|
34
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
35
|
+
titleFont:
|
|
36
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
37
|
+
},
|
|
38
|
+
legend: {
|
|
39
|
+
labelColor: '#353533',
|
|
40
|
+
titleColor: '#0a0a0a',
|
|
41
|
+
labelFont:
|
|
42
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
43
|
+
titleFont:
|
|
44
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
45
|
+
},
|
|
46
|
+
header: {
|
|
47
|
+
labelColor: '#353533',
|
|
48
|
+
titleColor: '#0a0a0a',
|
|
49
|
+
labelFont:
|
|
50
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
51
|
+
titleFont:
|
|
52
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
53
|
+
},
|
|
54
|
+
range: {
|
|
55
|
+
category: [
|
|
56
|
+
'#d71921',
|
|
57
|
+
'#e69f00',
|
|
58
|
+
'#56b4e9',
|
|
59
|
+
'#009e73',
|
|
60
|
+
'#f0e442',
|
|
61
|
+
'#0072b2',
|
|
62
|
+
'#cc79a7',
|
|
63
|
+
'#4d5358',
|
|
64
|
+
],
|
|
65
|
+
ordinal: ['#ffe4e1', '#f9bdb7', '#ed8c84', '#d55753', '#ac3031', '#79191b'],
|
|
66
|
+
ramp: ['#ffe4e1', '#f9bdb7', '#ed8c84', '#d55753', '#ac3031', '#79191b'],
|
|
67
|
+
heatmap: ['#ffe4e1', '#f9bdb7', '#ed8c84', '#d55753', '#ac3031', '#79191b'],
|
|
68
|
+
diverging: ['#0c54a0', '#558ac0', '#aac8e3', '#d9dfe5', '#e0b491', '#ce7a3b', '#b95115'],
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
dark: {
|
|
72
|
+
background: '#121212',
|
|
73
|
+
view: { stroke: '#383838' },
|
|
74
|
+
mark: { color: '#ff3b41' },
|
|
75
|
+
rule: { color: '#555555' },
|
|
76
|
+
text: {
|
|
77
|
+
color: '#e6e6e6',
|
|
78
|
+
font: "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
79
|
+
},
|
|
80
|
+
title: {
|
|
81
|
+
color: '#e6e6e6',
|
|
82
|
+
subtitleColor: '#a0a0a0',
|
|
83
|
+
font: "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
84
|
+
subtitleFont:
|
|
85
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
86
|
+
},
|
|
87
|
+
axis: {
|
|
88
|
+
domainColor: '#555555',
|
|
89
|
+
gridColor: '#383838',
|
|
90
|
+
tickColor: '#555555',
|
|
91
|
+
labelColor: '#c8c8c8',
|
|
92
|
+
titleColor: '#e6e6e6',
|
|
93
|
+
labelFont:
|
|
94
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
95
|
+
titleFont:
|
|
96
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
97
|
+
},
|
|
98
|
+
legend: {
|
|
99
|
+
labelColor: '#c8c8c8',
|
|
100
|
+
titleColor: '#e6e6e6',
|
|
101
|
+
labelFont:
|
|
102
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
103
|
+
titleFont:
|
|
104
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
105
|
+
},
|
|
106
|
+
header: {
|
|
107
|
+
labelColor: '#c8c8c8',
|
|
108
|
+
titleColor: '#e6e6e6',
|
|
109
|
+
labelFont:
|
|
110
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
111
|
+
titleFont:
|
|
112
|
+
"'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
113
|
+
},
|
|
114
|
+
range: {
|
|
115
|
+
category: [
|
|
116
|
+
'#ff3b41',
|
|
117
|
+
'#e69f00',
|
|
118
|
+
'#56b4e9',
|
|
119
|
+
'#009e73',
|
|
120
|
+
'#f0e442',
|
|
121
|
+
'#0072b2',
|
|
122
|
+
'#cc79a7',
|
|
123
|
+
'#4d5358',
|
|
124
|
+
],
|
|
125
|
+
ordinal: ['#551112', '#8d1a1e', '#c13c3b', '#e66e68', '#f8a49d', '#fed2cd'],
|
|
126
|
+
ramp: ['#551112', '#8d1a1e', '#c13c3b', '#e66e68', '#f8a49d', '#fed2cd'],
|
|
127
|
+
heatmap: ['#551112', '#8d1a1e', '#c13c3b', '#e66e68', '#f8a49d', '#fed2cd'],
|
|
128
|
+
diverging: ['#5aa3ec', '#4683c5', '#3e5f8a', '#44484d', '#a56b38', '#e18e4b', '#f9a870'],
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
/** The on-brand Vega-Lite `config` for a bronto theme (default `light`).
|
|
134
|
+
* Spread into a spec — `{ ...spec, config: brontoVegaConfig(theme) }` —
|
|
135
|
+
* or hand to vega-embed as `{ config: brontoVegaConfig(theme) }`. */
|
|
136
|
+
export function brontoVegaConfig(theme = 'light') {
|
|
137
|
+
return vega[theme === 'dark' ? 'dark' : 'light'];
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/** The live accent hex for a theme — series 1 of `range.category`, the one
|
|
141
|
+
* chromatic mark. Use it to spend the accent on a single emphasised mark in
|
|
142
|
+
* a multi-series chart (a Vega-Lite conditional to this colour) without
|
|
143
|
+
* reverse-engineering the palette array index. Re-skins with `--accent`. */
|
|
144
|
+
export function brontoVegaAccent(theme = 'light') {
|
|
145
|
+
return vega[theme === 'dark' ? 'dark' : 'light'].range.category[0];
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/** The neutral series hex for a theme — the last of `range.category` — for the
|
|
149
|
+
* "every other mark stays quiet" half of accent-spending. */
|
|
150
|
+
export function brontoVegaNeutral(theme = 'light') {
|
|
151
|
+
const cat = vega[theme === 'dark' ? 'dark' : 'light'].range.category;
|
|
152
|
+
return cat[cat.length - 1];
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export default brontoVegaConfig;
|
package/tokens/vega.json
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$comment": "@ponchia/ui Vega-Lite `config` resolved to static colours per theme. Spread into a spec's `config`, or pass `{ config }` to vega-embed. Monochrome chrome + one rationed accent (the default mark / series 1); `range.category` is the CVD-safe 8-series palette, `range.ramp`/`heatmap`/`ordinal` the sequential ramp, `range.diverging` the −…+ ramp. Resolved hex on purpose: Vega bakes colours into SVG/canvas and cannot read var(). Generated from the token source — do not edit by hand; run `npm run vega:build`. Drift-checked in CI.",
|
|
3
|
+
"light": {
|
|
4
|
+
"background": "#f4f4f2",
|
|
5
|
+
"view": {
|
|
6
|
+
"stroke": "#d8d8d4"
|
|
7
|
+
},
|
|
8
|
+
"mark": {
|
|
9
|
+
"color": "#d71921"
|
|
10
|
+
},
|
|
11
|
+
"rule": {
|
|
12
|
+
"color": "#a8a8a2"
|
|
13
|
+
},
|
|
14
|
+
"text": {
|
|
15
|
+
"color": "#0a0a0a",
|
|
16
|
+
"font": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
17
|
+
},
|
|
18
|
+
"title": {
|
|
19
|
+
"color": "#0a0a0a",
|
|
20
|
+
"subtitleColor": "#686863",
|
|
21
|
+
"font": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
22
|
+
"subtitleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
23
|
+
},
|
|
24
|
+
"axis": {
|
|
25
|
+
"domainColor": "#a8a8a2",
|
|
26
|
+
"gridColor": "#d8d8d4",
|
|
27
|
+
"tickColor": "#a8a8a2",
|
|
28
|
+
"labelColor": "#353533",
|
|
29
|
+
"titleColor": "#0a0a0a",
|
|
30
|
+
"labelFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
31
|
+
"titleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
32
|
+
},
|
|
33
|
+
"legend": {
|
|
34
|
+
"labelColor": "#353533",
|
|
35
|
+
"titleColor": "#0a0a0a",
|
|
36
|
+
"labelFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
37
|
+
"titleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
38
|
+
},
|
|
39
|
+
"header": {
|
|
40
|
+
"labelColor": "#353533",
|
|
41
|
+
"titleColor": "#0a0a0a",
|
|
42
|
+
"labelFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
43
|
+
"titleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
44
|
+
},
|
|
45
|
+
"range": {
|
|
46
|
+
"category": [
|
|
47
|
+
"#d71921",
|
|
48
|
+
"#e69f00",
|
|
49
|
+
"#56b4e9",
|
|
50
|
+
"#009e73",
|
|
51
|
+
"#f0e442",
|
|
52
|
+
"#0072b2",
|
|
53
|
+
"#cc79a7",
|
|
54
|
+
"#4d5358"
|
|
55
|
+
],
|
|
56
|
+
"ordinal": [
|
|
57
|
+
"#ffe4e1",
|
|
58
|
+
"#f9bdb7",
|
|
59
|
+
"#ed8c84",
|
|
60
|
+
"#d55753",
|
|
61
|
+
"#ac3031",
|
|
62
|
+
"#79191b"
|
|
63
|
+
],
|
|
64
|
+
"ramp": [
|
|
65
|
+
"#ffe4e1",
|
|
66
|
+
"#f9bdb7",
|
|
67
|
+
"#ed8c84",
|
|
68
|
+
"#d55753",
|
|
69
|
+
"#ac3031",
|
|
70
|
+
"#79191b"
|
|
71
|
+
],
|
|
72
|
+
"heatmap": [
|
|
73
|
+
"#ffe4e1",
|
|
74
|
+
"#f9bdb7",
|
|
75
|
+
"#ed8c84",
|
|
76
|
+
"#d55753",
|
|
77
|
+
"#ac3031",
|
|
78
|
+
"#79191b"
|
|
79
|
+
],
|
|
80
|
+
"diverging": [
|
|
81
|
+
"#0c54a0",
|
|
82
|
+
"#558ac0",
|
|
83
|
+
"#aac8e3",
|
|
84
|
+
"#d9dfe5",
|
|
85
|
+
"#e0b491",
|
|
86
|
+
"#ce7a3b",
|
|
87
|
+
"#b95115"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"dark": {
|
|
92
|
+
"background": "#121212",
|
|
93
|
+
"view": {
|
|
94
|
+
"stroke": "#383838"
|
|
95
|
+
},
|
|
96
|
+
"mark": {
|
|
97
|
+
"color": "#ff3b41"
|
|
98
|
+
},
|
|
99
|
+
"rule": {
|
|
100
|
+
"color": "#555555"
|
|
101
|
+
},
|
|
102
|
+
"text": {
|
|
103
|
+
"color": "#e6e6e6",
|
|
104
|
+
"font": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
105
|
+
},
|
|
106
|
+
"title": {
|
|
107
|
+
"color": "#e6e6e6",
|
|
108
|
+
"subtitleColor": "#a0a0a0",
|
|
109
|
+
"font": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
110
|
+
"subtitleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
111
|
+
},
|
|
112
|
+
"axis": {
|
|
113
|
+
"domainColor": "#555555",
|
|
114
|
+
"gridColor": "#383838",
|
|
115
|
+
"tickColor": "#555555",
|
|
116
|
+
"labelColor": "#c8c8c8",
|
|
117
|
+
"titleColor": "#e6e6e6",
|
|
118
|
+
"labelFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
119
|
+
"titleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
120
|
+
},
|
|
121
|
+
"legend": {
|
|
122
|
+
"labelColor": "#c8c8c8",
|
|
123
|
+
"titleColor": "#e6e6e6",
|
|
124
|
+
"labelFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
125
|
+
"titleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
126
|
+
},
|
|
127
|
+
"header": {
|
|
128
|
+
"labelColor": "#c8c8c8",
|
|
129
|
+
"titleColor": "#e6e6e6",
|
|
130
|
+
"labelFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif",
|
|
131
|
+
"titleFont": "'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif"
|
|
132
|
+
},
|
|
133
|
+
"range": {
|
|
134
|
+
"category": [
|
|
135
|
+
"#ff3b41",
|
|
136
|
+
"#e69f00",
|
|
137
|
+
"#56b4e9",
|
|
138
|
+
"#009e73",
|
|
139
|
+
"#f0e442",
|
|
140
|
+
"#0072b2",
|
|
141
|
+
"#cc79a7",
|
|
142
|
+
"#4d5358"
|
|
143
|
+
],
|
|
144
|
+
"ordinal": [
|
|
145
|
+
"#551112",
|
|
146
|
+
"#8d1a1e",
|
|
147
|
+
"#c13c3b",
|
|
148
|
+
"#e66e68",
|
|
149
|
+
"#f8a49d",
|
|
150
|
+
"#fed2cd"
|
|
151
|
+
],
|
|
152
|
+
"ramp": [
|
|
153
|
+
"#551112",
|
|
154
|
+
"#8d1a1e",
|
|
155
|
+
"#c13c3b",
|
|
156
|
+
"#e66e68",
|
|
157
|
+
"#f8a49d",
|
|
158
|
+
"#fed2cd"
|
|
159
|
+
],
|
|
160
|
+
"heatmap": [
|
|
161
|
+
"#551112",
|
|
162
|
+
"#8d1a1e",
|
|
163
|
+
"#c13c3b",
|
|
164
|
+
"#e66e68",
|
|
165
|
+
"#f8a49d",
|
|
166
|
+
"#fed2cd"
|
|
167
|
+
],
|
|
168
|
+
"diverging": [
|
|
169
|
+
"#5aa3ec",
|
|
170
|
+
"#4683c5",
|
|
171
|
+
"#3e5f8a",
|
|
172
|
+
"#44484d",
|
|
173
|
+
"#a56b38",
|
|
174
|
+
"#e18e4b",
|
|
175
|
+
"#f9a870"
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
package/fonts/doto-400.ttf
DELETED
|
Binary file
|
package/fonts/doto-500.ttf
DELETED
|
Binary file
|
package/fonts/doto-600.ttf
DELETED
|
Binary file
|
package/fonts/doto-700.ttf
DELETED
|
Binary file
|
package/fonts/doto-800.ttf
DELETED
|
Binary file
|
package/fonts/doto-900.ttf
DELETED
|
Binary file
|