prism-design 2.13.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 +292 -0
- package/LICENSE +21 -0
- package/README.md +203 -0
- package/bin/clone-architect.mjs +476 -0
- package/bin/prism.mjs +467 -0
- package/catalog/index.json +1155 -0
- package/extractions/airbnb.com/DESIGN.md +1068 -0
- package/extractions/airbnb.com/tokens.json +507 -0
- package/extractions/attio.com/DESIGN.md +1295 -0
- package/extractions/attio.com/tokens.json +438 -0
- package/extractions/auroxdashboard.com/DESIGN.md +724 -0
- package/extractions/auroxdashboard.com/tokens.json +195 -0
- package/extractions/careerexplorer.com/DESIGN.md +1178 -0
- package/extractions/careerexplorer.com/tokens.json +141 -0
- package/extractions/chance.co/DESIGN.md +1209 -0
- package/extractions/chance.co/tokens.json +160 -0
- package/extractions/choisis-ton-avenir.com/DESIGN.md +1265 -0
- package/extractions/choisis-ton-avenir.com/tokens.json +227 -0
- package/extractions/example.com/DESIGN.md +436 -0
- package/extractions/example.com/tokens.json +91 -0
- package/extractions/getdesign.md/DESIGN.md +1009 -0
- package/extractions/getdesign.md/tokens.json +219 -0
- package/extractions/github.com/DESIGN.md +1130 -0
- package/extractions/github.com/tokens.json +2092 -0
- package/extractions/hello-charly.com/DESIGN.md +1146 -0
- package/extractions/hello-charly.com/tokens.json +322 -0
- package/extractions/hyperliquid.xyz/DESIGN.md +779 -0
- package/extractions/hyperliquid.xyz/tokens.json +598 -0
- package/extractions/instagram.com/DESIGN.md +996 -0
- package/extractions/instagram.com/tokens.json +1240 -0
- package/extractions/jobirl.com/DESIGN.md +1160 -0
- package/extractions/jobirl.com/tokens.json +139 -0
- package/extractions/life360.com/DESIGN.md +1133 -0
- package/extractions/life360.com/tokens.json +491 -0
- package/extractions/lifesum.com/DESIGN.md +965 -0
- package/extractions/lifesum.com/tokens.json +170 -0
- package/extractions/linear.app/DESIGN.md +1301 -0
- package/extractions/linear.app/tokens.json +732 -0
- package/extractions/mavoie.org/DESIGN.md +1148 -0
- package/extractions/mavoie.org/tokens.json +128 -0
- package/extractions/miro.com/DESIGN.md +1237 -0
- package/extractions/miro.com/tokens.json +401 -0
- package/extractions/notion.so/DESIGN.md +1319 -0
- package/extractions/notion.so/tokens.json +906 -0
- package/extractions/onetonline.org/DESIGN.md +909 -0
- package/extractions/onetonline.org/tokens.json +280 -0
- package/extractions/posthog.com/DESIGN.md +1024 -0
- package/extractions/posthog.com/tokens.json +197 -0
- package/extractions/revolut.com/DESIGN.md +1080 -0
- package/extractions/revolut.com/tokens.json +401 -0
- package/extractions/stripe.com/DESIGN.md +1272 -0
- package/extractions/stripe.com/tokens.json +794 -0
- package/extractions/switchcollective.com/DESIGN.md +1040 -0
- package/extractions/switchcollective.com/tokens.json +98 -0
- package/extractions/truity.com/DESIGN.md +970 -0
- package/extractions/truity.com/tokens.json +166 -0
- package/extractions/uniquekicks.be/DESIGN.md +1171 -0
- package/extractions/uniquekicks.be/tokens.json +237 -0
- package/package.json +122 -0
- package/scripts/analyze.ts +281 -0
- package/scripts/bank-register.ts +379 -0
- package/scripts/bank.ts +374 -0
- package/scripts/browser-stealth.ts +189 -0
- package/scripts/clone.ts +198 -0
- package/scripts/compare-vs-gd-final.ts +273 -0
- package/scripts/compare-vs-gd.ts +269 -0
- package/scripts/compare.ts +405 -0
- package/scripts/deploy-site.ts +181 -0
- package/scripts/diff-snapshots.ts +340 -0
- package/scripts/enrich-catalog.ts +212 -0
- package/scripts/extract.ts +2038 -0
- package/scripts/extractors/advanced.ts +524 -0
- package/scripts/extractors/widgets.ts +711 -0
- package/scripts/generate-design-md.ts +5775 -0
- package/scripts/generate-final-pdf.ts +274 -0
- package/scripts/generate-og-image.ts +87 -0
- package/scripts/generate-showcase.ts +1588 -0
- package/scripts/generate-site.ts +847 -0
- package/scripts/mass-extract.sh +91 -0
- package/scripts/post-process-all.sh +55 -0
- package/scripts/regen-catalog.ts +203 -0
- package/scripts/shared/cache.ts +149 -0
- package/scripts/shared/css-helpers.ts +263 -0
- package/scripts/shared/logger.ts +57 -0
- package/scripts/shared/named-colors.ts +355 -0
- package/scripts/shared/types.ts +220 -0
- package/scripts/sync-catalog.ts +105 -0
- package/scripts/tokenize.ts +988 -0
- package/templates/layout-template.md +52 -0
- package/templates/tokens-template.json +34 -0
|
@@ -0,0 +1,2092 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"source": "https://github.com/paulsainton/lifeos-app.git",
|
|
4
|
+
"domain": "github.com",
|
|
5
|
+
"extractedAt": "2026-05-30T21:32:00.797Z",
|
|
6
|
+
"tokenizedAt": "2026-05-30T21:32:11.226Z"
|
|
7
|
+
},
|
|
8
|
+
"colors": {
|
|
9
|
+
"background": {
|
|
10
|
+
"primary": "rgb(255, 255, 255)",
|
|
11
|
+
"secondary": "rgba(255, 255, 255, 0)",
|
|
12
|
+
"tertiary": "rgba(228, 235, 230, 0.996)"
|
|
13
|
+
},
|
|
14
|
+
"text": {
|
|
15
|
+
"primary": "rgb(31, 35, 40)",
|
|
16
|
+
"secondary": "rgb(0, 0, 0)",
|
|
17
|
+
"muted": "#58635b"
|
|
18
|
+
},
|
|
19
|
+
"accent": {
|
|
20
|
+
"primary": "rgb(31, 136, 61)",
|
|
21
|
+
"secondary": "rgb(9, 105, 218)"
|
|
22
|
+
},
|
|
23
|
+
"border": "rgb(37, 41, 46)",
|
|
24
|
+
"shadow": "rgba(0,0,0,0.1)",
|
|
25
|
+
"semantic": {
|
|
26
|
+
"error": "#d1242f",
|
|
27
|
+
"success": "#1a7f37",
|
|
28
|
+
"warning": "#9a6700"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"typography": {
|
|
32
|
+
"fontFamily": {
|
|
33
|
+
"primary": "Mona Sans VF",
|
|
34
|
+
"secondary": "-apple-system",
|
|
35
|
+
"mono": "Mona Sans Mono"
|
|
36
|
+
},
|
|
37
|
+
"fontSize": {
|
|
38
|
+
"xs": "12px",
|
|
39
|
+
"sm": "13px",
|
|
40
|
+
"base": "14px",
|
|
41
|
+
"lg": "24px",
|
|
42
|
+
"xl": "32px",
|
|
43
|
+
"2xl": "34px",
|
|
44
|
+
"3xl": "36px",
|
|
45
|
+
"4xl": "42px"
|
|
46
|
+
},
|
|
47
|
+
"fontWeight": {
|
|
48
|
+
"normal": "400",
|
|
49
|
+
"medium": "500",
|
|
50
|
+
"semibold": "600",
|
|
51
|
+
"bold": "700"
|
|
52
|
+
},
|
|
53
|
+
"lineHeight": {
|
|
54
|
+
"tight": "1.5",
|
|
55
|
+
"normal": "1.5",
|
|
56
|
+
"relaxed": "1.5"
|
|
57
|
+
},
|
|
58
|
+
"letterSpacing": {
|
|
59
|
+
"tight": "-0.025em",
|
|
60
|
+
"normal": "0em",
|
|
61
|
+
"wide": "0.025em"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"spacing": {
|
|
65
|
+
"xxs": "2px",
|
|
66
|
+
"xs": "6px",
|
|
67
|
+
"sm": "16px",
|
|
68
|
+
"md": "40px",
|
|
69
|
+
"base": "16px",
|
|
70
|
+
"lg": "24px",
|
|
71
|
+
"xl": "32px",
|
|
72
|
+
"2xl": "48px",
|
|
73
|
+
"3xl": "64px"
|
|
74
|
+
},
|
|
75
|
+
"borderRadius": {
|
|
76
|
+
"none": "0px",
|
|
77
|
+
"xs": "3px",
|
|
78
|
+
"sm": "6px",
|
|
79
|
+
"md": "12px",
|
|
80
|
+
"lg": "12px",
|
|
81
|
+
"xl": "12px",
|
|
82
|
+
"full": "9999px"
|
|
83
|
+
},
|
|
84
|
+
"shadows": {
|
|
85
|
+
"shadow-1": "rgba(209, 217, 224, 0.25) 0px 0px 0px 1px, rgba(37, 41, 46, 0.04) 0px 6px 12px -3px, rgba(37, 41, 46, 0.12) 0px 6px 18px 0px",
|
|
86
|
+
"shadow-2": "rgba(209, 217, 224, 0) 0px 0px 0px 1px, rgba(37, 41, 46, 0.24) 0px 40px 80px 0px",
|
|
87
|
+
"shadow-3": "rgba(31, 35, 40, 0.04) 0px 1px 0px 0px inset",
|
|
88
|
+
"shadow-4": "rgb(209, 217, 224) 0px -1px 0px 0px inset",
|
|
89
|
+
"shadow-5": "rgb(209, 217, 224) 0px 1px 0px 0px inset"
|
|
90
|
+
},
|
|
91
|
+
"transitions": {
|
|
92
|
+
"transition-1": "all",
|
|
93
|
+
"transition-2": "opacity 0.4s linear 0.4s",
|
|
94
|
+
"transition-3": "width 0.4s",
|
|
95
|
+
"transition-4": "opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1)",
|
|
96
|
+
"transition-5": "color 0.08s cubic-bezier(0.65, 0, 0.35, 1), fill 0.08s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.08s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.08s cubic-bezier(0.65, 0, 0.35, 1)"
|
|
97
|
+
},
|
|
98
|
+
"layout": {
|
|
99
|
+
"maxWidth": "80rem",
|
|
100
|
+
"headerHeight": "72px",
|
|
101
|
+
"sidebarWidth": "0px",
|
|
102
|
+
"gap": "normal",
|
|
103
|
+
"containerPadding": "0px"
|
|
104
|
+
},
|
|
105
|
+
"cssCustomProperties": {
|
|
106
|
+
"--label-blue-borderColor": "#fff0",
|
|
107
|
+
"--button-danger-shadow-selected": "inset 0 1px 0 0 #4c001433",
|
|
108
|
+
"--diffBlob-hunkNum-bgColor-rest": "#b6e3ff",
|
|
109
|
+
"--label-brown-fgColor-hover": "#64513a",
|
|
110
|
+
"--display-pink-scale-5": "#ce2c85",
|
|
111
|
+
"--label-teal-fgColor-active": "#0a4852",
|
|
112
|
+
"--brand-animation-variant-scaleInLeft-end": "1",
|
|
113
|
+
"--button-primary-iconColor-disabled": "#fffc",
|
|
114
|
+
"--button-outline-fgColor-disabled": "#0969da80",
|
|
115
|
+
"--data-yellow-color-emphasis": "#b88700",
|
|
116
|
+
"--brand-text-weight-300": "400",
|
|
117
|
+
"--display-lime-bgColor-muted": "#e3f2b5",
|
|
118
|
+
"--bgColor-black": "#1f2328",
|
|
119
|
+
"--button-default-bgColor-selected": "#e6eaef",
|
|
120
|
+
"--control-medium-gap": ".5rem",
|
|
121
|
+
"--brand-RiverBreakout-variant-gridline-spacing-outerBlock": "4rem",
|
|
122
|
+
"--label-orange-bgColor-hover": "#fecfaa",
|
|
123
|
+
"--brand-breakpoint-xlarge": "80rem",
|
|
124
|
+
"--brand-RiverAccordion-variant-gridline-spacing-outerInline": "4rem",
|
|
125
|
+
"--text-body-size-medium": ".875rem",
|
|
126
|
+
"--display-teal-scale-0": "#c7f5ef",
|
|
127
|
+
"--brand-Label-color-green-blue-start": "#08872b",
|
|
128
|
+
"--base-color-scale-teal-9": "#052b2c",
|
|
129
|
+
"--brand-Testimonial-quoteMarkBackground-teal": "#daf9f5",
|
|
130
|
+
"--buttonKeybindingHint-invisible-borderColor-disabled": "#818b981a",
|
|
131
|
+
"--brand-color-text-muted": "#58635b",
|
|
132
|
+
"--label-plum-borderColor": "#fff0",
|
|
133
|
+
"--display-cyan-bgColor-emphasis": "#007b94",
|
|
134
|
+
"--control-danger-fgColor-hover": "#d1242f",
|
|
135
|
+
"--display-auburn-scale-1": "#e6d6d5",
|
|
136
|
+
"--brand-pagination-link-bgColor-rest": "#000",
|
|
137
|
+
"--control-checked-borderColor-active": "#0757ba",
|
|
138
|
+
"--display-blue-scale-7": "#004db3",
|
|
139
|
+
"--brand-SubNav-color-link-bgColor": "#e4ebe6",
|
|
140
|
+
"--button-danger-borderColor-rest": "#d1d9e0",
|
|
141
|
+
"--button-default-bgColor-rest": "#f6f8fa",
|
|
142
|
+
"--fontStack-sansSerif": "\"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
143
|
+
"--Layout-outer-spacing-x": "0px",
|
|
144
|
+
"--brand-Icon-color-coral": "#e13f1b",
|
|
145
|
+
"--display-orange-borderColor-emphasis": "#b8500f",
|
|
146
|
+
"--label-olive-fgColor-hover": "#495a2b",
|
|
147
|
+
"--data-coral-color-muted": "#ffe5db",
|
|
148
|
+
"--progressBar-track-borderColor": "#fff0",
|
|
149
|
+
"--brand-breakpoint-xsmall": "20rem",
|
|
150
|
+
"--control-small-gap": ".25rem",
|
|
151
|
+
"--brand-breakpoint-large": "63.25rem",
|
|
152
|
+
"--breakpoint-xlarge": "80rem",
|
|
153
|
+
"--brand-IDE-playPauseControl-rest": "#d2d9d4",
|
|
154
|
+
"--base-duration-600": ".6s",
|
|
155
|
+
"--progressBar-bgColor-neutral": "#59636e",
|
|
156
|
+
"--buttonKeybindingHint-invisible-bgColor-active": "#818b9826",
|
|
157
|
+
"--brand-Tabs-list-borderWidth-active": "max(1px, .0625rem)",
|
|
158
|
+
"--display-yellow-scale-9": "#422b00",
|
|
159
|
+
"--brand-Tabs-item-underline-rest": "#000",
|
|
160
|
+
"--text-codeBlock-size": ".8125rem",
|
|
161
|
+
"--button-invisible-bgColor-disabled": "#fff0",
|
|
162
|
+
"--button-primary-borderColor-hover": "#1f232826",
|
|
163
|
+
"--display-orange-scale-3": "#f68c41",
|
|
164
|
+
"--brand-Prose-blockquote-spacing": "1.5rem",
|
|
165
|
+
"--brand-text-weight-normal": "400",
|
|
166
|
+
"--brand-control-medium-lineBoxHeight": "1rem",
|
|
167
|
+
"--base-color-scale-teal-4": "#23b1ae",
|
|
168
|
+
"--brand-VideoPlayer-closedCaption-text-padding": ".625rem",
|
|
169
|
+
"--focus-outline-width": ".125rem",
|
|
170
|
+
"--brand-Testimonial-quoteMarkColor-pink-blue-end": "#0377ff",
|
|
171
|
+
"--brand-text-letterSpacing-100": ".21px",
|
|
172
|
+
"--base-size-8": ".5rem",
|
|
173
|
+
"--brand-body-fontFamily": "\"Mona Sans\", \"MonaSansFallback\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
174
|
+
"--brand-Icon-color-lemon": "#a98906",
|
|
175
|
+
"--zIndex-skipLink": "600",
|
|
176
|
+
"--brand-Eyebrowbanner-fgColor-green-blue-end": "#0377ff",
|
|
177
|
+
"--fgColor-success": "#1a7f37",
|
|
178
|
+
"--control-small-paddingBlock": ".25rem",
|
|
179
|
+
"--brand-Eyebrowbanner-icon-background-teal": "#daf9f5",
|
|
180
|
+
"--brand-Grid-spacing-margin": "1rem",
|
|
181
|
+
"--header-borderColor-divider": "#818b98",
|
|
182
|
+
"--brand-videoPlayer-title-fgColor": "#f2f5f3",
|
|
183
|
+
"--base-text-lineHeight-relaxed": "1.625",
|
|
184
|
+
"--display-red-scale-1": "#fecdcd",
|
|
185
|
+
"--border-severe-muted": ".0625rem solid #fb8f4466",
|
|
186
|
+
"--label-orange-fgColor-hover": "#8d3c11",
|
|
187
|
+
"--brand-text-size-700": "2.5rem",
|
|
188
|
+
"--brand-PricingOptions-item-bgColor-solid": "#f2f5f3",
|
|
189
|
+
"--brand-Testimonial-quote-color-default": "#000",
|
|
190
|
+
"--brand-videoPlayer-playButton-bgColor-rest": "#0377ff",
|
|
191
|
+
"--base-color-scale-yellow-1": "#ffe777",
|
|
192
|
+
"--contribution-halloween-bgColor-2": "#ffd642",
|
|
193
|
+
"--label-gray-fgColor-hover": "#4e535a",
|
|
194
|
+
"--text-body-shorthand-small": "400 .75rem / 1.625 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
195
|
+
"--color-prettylights-syntax-meta-diff-range": "#8250df",
|
|
196
|
+
"--display-auburn-scale-8": "#5d3937",
|
|
197
|
+
"--display-red-scale-4": "#f85461",
|
|
198
|
+
"--button-danger-borderColor-active": "#1f232826",
|
|
199
|
+
"--display-green-scale-8": "#254b34",
|
|
200
|
+
"--brand-animation-variant-scaleInRight-distance": "-1.25rem",
|
|
201
|
+
"--brand-Icon-background-coral": "#fff0eb",
|
|
202
|
+
"--color-ansi-yellow-bright": "#633c01",
|
|
203
|
+
"--label-gray-bgColor-rest": "#e8ecf2",
|
|
204
|
+
"--brand-box-spacing-normal": "1.5rem",
|
|
205
|
+
"--brand-Testimonial-quoteMarkColor-indigo": "#4956e5",
|
|
206
|
+
"--base-size-negative-2": "-.125rem",
|
|
207
|
+
"--bgColor-open-muted": "#dafbe1",
|
|
208
|
+
"--brand-Eyebrowbanner-fgColor-purple": "#8534f3",
|
|
209
|
+
"--bgColor-white": "#fff",
|
|
210
|
+
"--controlKnob-borderColor-rest": "#d1d9e0",
|
|
211
|
+
"--brand-borderRadius-small": ".25rem",
|
|
212
|
+
"--brand-CTABanner-shadow-color-start": "#08872b",
|
|
213
|
+
"--brand-Eyebrowbanner-fgColor-purple-red-end": "#cf2230",
|
|
214
|
+
"--brand-color-text-emphasized": "#08872b",
|
|
215
|
+
"--label-yellow-borderColor": "#fff0",
|
|
216
|
+
"--text-title-size-large": "2rem",
|
|
217
|
+
"--brand-River-label-margin": "1rem",
|
|
218
|
+
"--brand-button-accent-bgColor-active": "#08872b",
|
|
219
|
+
"--bgColor-open-emphasis": "#1f883d",
|
|
220
|
+
"--color-project-gradient-out": "#fff0",
|
|
221
|
+
"--brand-Accordion-toggle-color-end": "#0d6731",
|
|
222
|
+
"--brand-stack-gap-spacious": "3rem",
|
|
223
|
+
"--color-prettylights-syntax-variable": "#953800",
|
|
224
|
+
"--brand-text-subhead-size-medium": "1rem",
|
|
225
|
+
"--bgColor-neutral-emphasis": "#59636e",
|
|
226
|
+
"--display-purple-scale-2": "#d1b1fc",
|
|
227
|
+
"--base-color-scale-pink-5": "#ef2aa4",
|
|
228
|
+
"--color-prettylights-syntax-markup-ignored-text": "#d1d9e0",
|
|
229
|
+
"--brand-LogoSuite-color-control-hover": "#d2d9d4",
|
|
230
|
+
"--fgColor-white": "#fff",
|
|
231
|
+
"--controlStack-medium-gap-auto": ".5rem",
|
|
232
|
+
"--brand-InlineLink-transition-timing": ".3s",
|
|
233
|
+
"--label-red-fgColor-active": "#880c27",
|
|
234
|
+
"--brand-Label-color-yellow": "#be7d00",
|
|
235
|
+
"--base-color-scale-indigo-4": "#6b7bef",
|
|
236
|
+
"--brand-control-large-paddingBlock-condensed": ".75rem",
|
|
237
|
+
"--brand-Label-color-red-orange-end": "#b85b06",
|
|
238
|
+
"--display-olive-scale-2": "#b9c832",
|
|
239
|
+
"--brand-VideoPlayer-range-borderRadius": ".1875rem",
|
|
240
|
+
"--label-coral-fgColor-rest": "#ba2e12",
|
|
241
|
+
"--display-pine-scale-8": "#114b36",
|
|
242
|
+
"--brand-Label-color-teal": "#197b7b",
|
|
243
|
+
"--display-plum-borderColor-muted": "#f0cdfe",
|
|
244
|
+
"--base-size-negative-28": "-1.75rem",
|
|
245
|
+
"--brand-Pillar-icon-color-lime": "#92c219",
|
|
246
|
+
"--data-pine-color-emphasis": "#167e53",
|
|
247
|
+
"--brand-Bento-item-borderRadius-large": "1.5rem",
|
|
248
|
+
"--display-yellow-scale-5": "#946a00",
|
|
249
|
+
"--brand-Testimonial-quoteMarkBackground-red": "#ffebe9",
|
|
250
|
+
"--label-coral-bgColor-rest": "#ffe5db",
|
|
251
|
+
"--text-subtitle-weight": "400",
|
|
252
|
+
"--brand-button-primary-bgColor-rest": "#000",
|
|
253
|
+
"--button-outline-bgColor-hover": "#0969da",
|
|
254
|
+
"--brand-text-letterSpacing-700": "0",
|
|
255
|
+
"--control-large-gap": ".5rem",
|
|
256
|
+
"--base-color-scale-yellow-9": "#471f00",
|
|
257
|
+
"--color-ansi-red": "#cf222e",
|
|
258
|
+
"--label-purple-borderColor": "#fff0",
|
|
259
|
+
"--bgColor-draft-muted": "#818b981f",
|
|
260
|
+
"--control-large-paddingBlock": ".625rem",
|
|
261
|
+
"--color-mktg-btn-shadow-focus": "#00000026 0 0 0 4px",
|
|
262
|
+
"--overlay-paddingBlock-condensed": ".25rem",
|
|
263
|
+
"--display-purple-scale-7": "#6223d7",
|
|
264
|
+
"--brand-control-large-lineBoxHeight": "1.25rem",
|
|
265
|
+
"--buttonKeybindingHint-primary-fgColor-disabled": "#fffc",
|
|
266
|
+
"--zIndex-default": "0",
|
|
267
|
+
"--label-orange-bgColor-rest": "#ffe7d1",
|
|
268
|
+
"--control-bgColor-selected": "#f6f8fa",
|
|
269
|
+
"--base-color-scale-pink-7": "#952866",
|
|
270
|
+
"--display-plum-fgColor": "#961edc",
|
|
271
|
+
"--text-codeInline-size": ".9285em",
|
|
272
|
+
"--label-lime-fgColor-rest": "#476c28",
|
|
273
|
+
"--brand-heading-lineHeight-1000": "1",
|
|
274
|
+
"--brand-text-weight-350": "400",
|
|
275
|
+
"--brand-animation-transition-default": "opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1)",
|
|
276
|
+
"--control-minTarget-coarse": "2.75rem",
|
|
277
|
+
"--contribution-winter-bgColor-4": "#0a3069",
|
|
278
|
+
"--brand-Eyebrowbanner-fgColor-default-end": "#cf2230",
|
|
279
|
+
"--base-color-scale-lime-3": "#d1f441",
|
|
280
|
+
"--label-pink-bgColor-hover": "#fdc9e2",
|
|
281
|
+
"--brand-controlStack-large-gap-spacious": ".75rem",
|
|
282
|
+
"--buttonKeybindingHint-default-fgColor-rest": "#59636e",
|
|
283
|
+
"--button-default-borderColor-disabled": "#818b981a",
|
|
284
|
+
"--brand-control-checkbox-fg-checked": "#fff",
|
|
285
|
+
"--brand-text-letterSpacing-500": "0",
|
|
286
|
+
"--Layout-template-columns": "1fr 220px",
|
|
287
|
+
"--spinner-size-medium": "2rem",
|
|
288
|
+
"--color-project-gradient-in": "#fff",
|
|
289
|
+
"--display-auburn-scale-6": "#8a5551",
|
|
290
|
+
"--contribution-winter-bgColor-1": "#b6e3ff",
|
|
291
|
+
"--brand-Testimonial-borderMask-subtle": "linear-gradient(180deg, #0009, #0000004d)",
|
|
292
|
+
"--text-title-lineHeight-large": "1.5",
|
|
293
|
+
"--label-pink-fgColor-rest": "#b12f79",
|
|
294
|
+
"--base-color-scale-lemon-6": "#806803",
|
|
295
|
+
"--brand-Eyebrowbanner-fgColor-blue-purple-end": "#8534f3",
|
|
296
|
+
"--label-blue-bgColor-rest": "#d1f0ff",
|
|
297
|
+
"--control-transparent-bgColor-disabled": "#eff2f5",
|
|
298
|
+
"--Layout-row-gap": "1rem",
|
|
299
|
+
"--brand-Icon-background-red": "#ffebe9",
|
|
300
|
+
"--brand-button-secondary-borderColor-hover": "#0d111752",
|
|
301
|
+
"--label-lime-bgColor-active": "#9bd039",
|
|
302
|
+
"--diffBlob-expander-iconColor": "#59636e",
|
|
303
|
+
"--brand-Label-color-orange": "#b85b06",
|
|
304
|
+
"--controlStack-large-gap-auto": ".5rem",
|
|
305
|
+
"--codeMirror-bgColor": "#fff",
|
|
306
|
+
"--button-danger-bgColor-active": "#a40e26",
|
|
307
|
+
"--display-pink-scale-1": "#fdc9e2",
|
|
308
|
+
"--brand-VideoPlayer-closedCaption-margin": "0 auto 15px auto",
|
|
309
|
+
"--controlKnob-borderColor-disabled": "#eff2f5",
|
|
310
|
+
"--brand-Eyebrowbanner-icon-background-pink": "#fff0fc",
|
|
311
|
+
"--label-teal-fgColor-hover": "#0d5b63",
|
|
312
|
+
"--button-outline-borderColor-active": "#1f232826",
|
|
313
|
+
"--stack-padding-spacious": "1.5rem",
|
|
314
|
+
"--fgColor-onEmphasis": "#fff",
|
|
315
|
+
"--display-cyan-borderColor-muted": "#7ae9ff",
|
|
316
|
+
"--control-borderColor-selected": "#f6f8fa",
|
|
317
|
+
"--base-color-scale-yellow-3": "#fabf21",
|
|
318
|
+
"--buttonKeybindingHint-danger-borderColor-rest": "#d1d9e0b3",
|
|
319
|
+
"--color-ansi-red-bright": "#a40e26",
|
|
320
|
+
"--brand-RiverAccordion-variant-gridline-spacing-outerBlock": "4rem",
|
|
321
|
+
"--brand-control-color-fg-disabled": "#b6bfb8",
|
|
322
|
+
"--brand-Tooltip-color-default": "#fff",
|
|
323
|
+
"--brand-color-text-onEmphasis": "#fff",
|
|
324
|
+
"--codeMirror-matchingBracket-fgColor": "#1f2328",
|
|
325
|
+
"--display-lemon-scale-2": "#d8bd0e",
|
|
326
|
+
"--bgColor-success-emphasis": "#1f883d",
|
|
327
|
+
"--brand-Prose-lineLength": "68ch",
|
|
328
|
+
"--brand-River-spacing-outerBlock": "3rem",
|
|
329
|
+
"--button-default-borderColor-rest": "#d1d9e0",
|
|
330
|
+
"--label-lemon-fgColor-rest": "#786002",
|
|
331
|
+
"--stack-gap-condensed": ".5rem",
|
|
332
|
+
"--display-indigo-scale-4": "#7a82f0",
|
|
333
|
+
"--base-color-scale-gray-3": "#c4ccc6",
|
|
334
|
+
"--text-display-size": "2.5rem",
|
|
335
|
+
"--display-purple-scale-9": "#391b79",
|
|
336
|
+
"--brand-text-lineHeight-100": "1.5",
|
|
337
|
+
"--display-gray-bgColor-emphasis": "#647182",
|
|
338
|
+
"--base-size-36": "2.25rem",
|
|
339
|
+
"--brand-Accordion-toggle-color-orange": "#b85b06",
|
|
340
|
+
"--brand-FAQGroup-buttonIndicator-active": "#0d6731",
|
|
341
|
+
"--brand-Pillar-icon-color-default": "",
|
|
342
|
+
"--control-transparent-bgColor-selected": "#818b9826",
|
|
343
|
+
"--display-pine-scale-7": "#135d41",
|
|
344
|
+
"--control-checked-bgColor-active": "#0757ba",
|
|
345
|
+
"--display-green-bgColor-emphasis": "#2c8141",
|
|
346
|
+
"--base-zIndex-100": "100",
|
|
347
|
+
"--data-blue-color-muted": "#d1f0ff",
|
|
348
|
+
"--bgColor-closed-muted": "#ffebe9",
|
|
349
|
+
"--brand-button-accent-fgColor-rest": "#fff",
|
|
350
|
+
"--base-size-negative-32": "-2rem",
|
|
351
|
+
"--brand-IDE-scrollBar-fgColor": "#d2d9d4",
|
|
352
|
+
"--base-color-scale-gray-2": "#d2d9d4",
|
|
353
|
+
"--brand-IDE-scrollBar-bgColor": "transparent",
|
|
354
|
+
"--brand-animation-variant-scaleInLeft-start": ".9",
|
|
355
|
+
"--brand-Timeline-lineLength": "44ch",
|
|
356
|
+
"--buttonKeybindingHint-primary-borderColor-disabled": "#818b981a",
|
|
357
|
+
"--display-yellow-scale-1": "#ffd642",
|
|
358
|
+
"--brand-text-lineHeight-800": "1.18",
|
|
359
|
+
"--border-muted": ".0625rem solid #d1d9e0b3",
|
|
360
|
+
"--brand-Accordion-toggle-color-red": "#cf2230",
|
|
361
|
+
"--base-color-scale-purple-5": "#8534f3",
|
|
362
|
+
"--brand-box-spacing-condensed": "1rem",
|
|
363
|
+
"--label-pink-borderColor": "#fff0",
|
|
364
|
+
"--brand-heading-weight-800": "440",
|
|
365
|
+
"--control-large-paddingInline-normal": ".75rem",
|
|
366
|
+
"--text-body-lineHeight-medium": "1.5",
|
|
367
|
+
"--bgColor-draft-emphasis": "#59636e",
|
|
368
|
+
"--brand-Testimonial-quoteMarkColor-teal": "#197b7b",
|
|
369
|
+
"--display-auburn-borderColor-muted": "#e6d6d5",
|
|
370
|
+
"--brand-RiverBreakout-variant-gridline-spacing-outerInline": "4rem",
|
|
371
|
+
"--brand-footer-socialIcon-hoverFilter": "brightness(0)",
|
|
372
|
+
"--base-color-scale-orange-3": "#f08a3a",
|
|
373
|
+
"--label-olive-borderColor": "#fff0",
|
|
374
|
+
"--base-color-scale-yellow-2": "#ffd743",
|
|
375
|
+
"--brand-control-radio-bg-checked": "#fff",
|
|
376
|
+
"--base-color-scale-teal-8": "#083d3d",
|
|
377
|
+
"--codeMirror-syntax-fgColor-support": "#0550ae",
|
|
378
|
+
"--contribution-default-bgColor-2": "#4ac26b",
|
|
379
|
+
"--border-done-emphasis": ".0625rem solid #8250df",
|
|
380
|
+
"--brand-FrostedGlassVFX-blurIntensity-medium": "3rem",
|
|
381
|
+
"--brand-PricingOptions-item-bgColor-gradient-start": "#f2f5f3",
|
|
382
|
+
"--display-lime-fgColor": "#476c28",
|
|
383
|
+
"--fgColor-muted": "#59636e",
|
|
384
|
+
"--zIndex-modal": "400",
|
|
385
|
+
"--brand-Icon-background-blue": "#ddf4ff",
|
|
386
|
+
"--lightningcss-dark": "",
|
|
387
|
+
"--brand-text-size-100": ".875rem",
|
|
388
|
+
"--overlay-paddingBlock-normal": ".75rem",
|
|
389
|
+
"--brand-River-variant-gridline-spacing-outerInline": "4rem",
|
|
390
|
+
"--brand-control-animation-duration": "80ms",
|
|
391
|
+
"--brand-LogoSuite-color-control-rest": "#fafafa",
|
|
392
|
+
"--brand-Icon-color-purple": "#8534f3",
|
|
393
|
+
"--base-color-scale-pink-1": "#ffc9f2",
|
|
394
|
+
"--brand-text-style-italic-8": "\"ital\" 8",
|
|
395
|
+
"--display-teal-borderColor-emphasis": "#127e81",
|
|
396
|
+
"--display-lemon-bgColor-emphasis": "#866e04",
|
|
397
|
+
"--diffBlob-additionWord-fgColor": "#1f2328",
|
|
398
|
+
"--selection-bgColor": "#0969da33",
|
|
399
|
+
"--border-danger-emphasis": ".0625rem solid #cf222e",
|
|
400
|
+
"--codeMirror-selection-bgColor": "#54aeff66",
|
|
401
|
+
"--base-color-scale-pink-8": "#651643",
|
|
402
|
+
"--color-prettylights-syntax-markup-inserted-text": "#116329",
|
|
403
|
+
"--border-success-muted": ".0625rem solid #4ac26b66",
|
|
404
|
+
"--label-purple-fgColor-rest": "#783ae4",
|
|
405
|
+
"--overlay-width-small": "20rem",
|
|
406
|
+
"--controlTrack-bgColor-disabled": "#818b98",
|
|
407
|
+
"--control-checked-fgColor-rest": "#fff",
|
|
408
|
+
"--brand-Token-bgColor-hover-outline": "#0000000f",
|
|
409
|
+
"--brand-text-weight-regular": "400",
|
|
410
|
+
"--control-medium-paddingInline-condensed": ".5rem",
|
|
411
|
+
"--display-pink-bgColor-muted": "#ffe5f1",
|
|
412
|
+
"--control-xlarge-paddingBlock": ".875rem",
|
|
413
|
+
"--label-coral-borderColor": "#fff0",
|
|
414
|
+
"--base-duration-50": "50ms",
|
|
415
|
+
"--buttonKeybindingHint-danger-borderColor-hover": "#1f232826",
|
|
416
|
+
"--base-color-scale-lemon-2": "#f2da3b",
|
|
417
|
+
"--display-red-scale-0": "#ffe2e0",
|
|
418
|
+
"--brand-text-size-900": "3.5rem",
|
|
419
|
+
"--button-default-bgColor-disabled": "#eff2f5",
|
|
420
|
+
"--brand-animation-variant-slideInUp-distance": ".9375rem",
|
|
421
|
+
"--color-workflow-card-bg": "#fff",
|
|
422
|
+
"--base-color-scale-coral-8": "#801e0f",
|
|
423
|
+
"--brand-Label-color-lime": "#92c219",
|
|
424
|
+
"--diffBlob-additionNum-fgColor": "#1f2328",
|
|
425
|
+
"--button-primary-iconColor-rest": "#fffc",
|
|
426
|
+
"--diffBlob-hunkLine-bgColor": "#ddf4ff",
|
|
427
|
+
"--borderColor-closed-emphasis": "#cf222e",
|
|
428
|
+
"--brand-Testimonial-quoteMarkBackground-blue-purple": "#ddf4ff",
|
|
429
|
+
"--button-primary-borderColor-rest": "#1f232826",
|
|
430
|
+
"--borderRadius-medium": ".375rem",
|
|
431
|
+
"--label-lemon-bgColor-rest": "#f7eea1",
|
|
432
|
+
"--brand-heading-fontFamily": "\"Mona Sans\", \"MonaSansFallback\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
433
|
+
"--base-color-scale-gray-4": "#b6bfb8",
|
|
434
|
+
"--color-prettylights-syntax-markup-changed-text": "#953800",
|
|
435
|
+
"--brand-borderInset-thick": "inset 0 0 0 max(2px, .125rem)",
|
|
436
|
+
"--borderColor-accent-muted": "#54aeff66",
|
|
437
|
+
"--text-title-weight-small": "600",
|
|
438
|
+
"--borderWidth-thicker": ".25rem",
|
|
439
|
+
"--csstools-color-scheme--light": "",
|
|
440
|
+
"--controlStack-medium-gap-condensed": ".5rem",
|
|
441
|
+
"--display-teal-scale-3": "#1db9b4",
|
|
442
|
+
"--display-yellow-fgColor": "#805900",
|
|
443
|
+
"--buttonKeybindingHint-invisible-fgColor-disabled": "#818b98",
|
|
444
|
+
"--brand-Eyebrowbanner-fgColor-pink-blue-end": "#0377ff",
|
|
445
|
+
"--button-invisible-iconColor-disabled": "#818b98",
|
|
446
|
+
"--display-indigo-scale-3": "#979ff7",
|
|
447
|
+
"--label-olive-bgColor-rest": "#f0f0ad",
|
|
448
|
+
"--control-fgColor-disabled": "#818b98",
|
|
449
|
+
"--codeMirror-syntax-fgColor-keyword": "#cf222e",
|
|
450
|
+
"--buttonKeybindingHint-default-fgColor-disabled": "#818b98",
|
|
451
|
+
"--base-color-scale-teal-2": "#6ee5dc",
|
|
452
|
+
"--spinner-size-large": "4rem",
|
|
453
|
+
"--brand-Testimonial-quoteMarkBackground-coral": "#fff0eb",
|
|
454
|
+
"--controlKnob-bgColor-checked": "#fff",
|
|
455
|
+
"--data-red-color-muted": "#ffe2e0",
|
|
456
|
+
"--brand-Bento-gap-medium": "2rem",
|
|
457
|
+
"--display-teal-scale-7": "#0d5b63",
|
|
458
|
+
"--display-orange-scale-6": "#a24610",
|
|
459
|
+
"--brand-PricingOptions-items4-gap": "3rem",
|
|
460
|
+
"--brand-text-size-800": "3rem",
|
|
461
|
+
"--brand-Label-color-purple-red-end": "#cf2230",
|
|
462
|
+
"--sub-nav-mktg-shadow": "0 0 0 1px #35485b24, 0 3px 2px #0000000a, 0 7px 7px #00000008",
|
|
463
|
+
"--brand-Eyebrowbanner-fgColor-default-start": "#8534f3",
|
|
464
|
+
"--label-orange-borderColor": "#fff0",
|
|
465
|
+
"--controlTrack-bgColor-rest": "#e6eaef",
|
|
466
|
+
"--brand-Card-background-default": "#fff",
|
|
467
|
+
"--button-outline-shadow-selected": "inset 0 1px 0 0 #00215533",
|
|
468
|
+
"--data-orange-color-emphasis": "#eb670f",
|
|
469
|
+
"--brand-button-primary-borderColor-hover": "#353d37",
|
|
470
|
+
"--duration-fast": "80ms",
|
|
471
|
+
"--avatar-bgColor": "#fff",
|
|
472
|
+
"--display-purple-scale-8": "#4f21ab",
|
|
473
|
+
"--brand-IDE-default-editor-tab-bgColor-active": "#fff",
|
|
474
|
+
"--brand-Timeline-bullet-size": ".5rem",
|
|
475
|
+
"--codeMirror-syntax-fgColor-variable": "#953800",
|
|
476
|
+
"--base-zIndex-600": "600",
|
|
477
|
+
"--display-orange-fgColor": "#a24610",
|
|
478
|
+
"--label-cyan-borderColor": "#fff0",
|
|
479
|
+
"--brand-FAQ-heading-marginBottom": "6rem",
|
|
480
|
+
"--display-lime-scale-8": "#2f4a21",
|
|
481
|
+
"--display-cyan-scale-4": "#0099b8",
|
|
482
|
+
"--brand-button-subtle-fgColor-disabled": "#c4ccc6",
|
|
483
|
+
"--brand-text-style-italic-4": "\"ital\" 4",
|
|
484
|
+
"--brand-IDE-default-editor-bgColor": "#fff",
|
|
485
|
+
"--display-cyan-scale-2": "#00d0fa",
|
|
486
|
+
"--display-indigo-scale-2": "#b1b9fb",
|
|
487
|
+
"--fgColor-black": "#1f2328",
|
|
488
|
+
"--display-pine-scale-2": "#1dd781",
|
|
489
|
+
"--prc-dialog-scrollgutter": "0px",
|
|
490
|
+
"--overlay-height-small": "16rem",
|
|
491
|
+
"--base-color-scale-orange-1": "#fcceab",
|
|
492
|
+
"--data-plum-color-emphasis": "#a830e8",
|
|
493
|
+
"--base-color-scale-indigo-2": "#b3c1fd",
|
|
494
|
+
"--brand-Eyebrowbanner-fgColor-coral": "#e13f1b",
|
|
495
|
+
"--label-olive-bgColor-hover": "#dbe170",
|
|
496
|
+
"--base-color-scale-blue-0": "#ddf4ff",
|
|
497
|
+
"--brand-breakpoint-medium": "48rem",
|
|
498
|
+
"--color-ansi-white-bright": "#818b98",
|
|
499
|
+
"--brand-IDE-playPauseControl-hover": "#c4ccc6",
|
|
500
|
+
"--text-title-shorthand-small": "600 1rem / 1.5 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
501
|
+
"--brand-Pillar-icon-color-pink": "#ef2aa4",
|
|
502
|
+
"--display-blue-bgColor-muted": "#d1f0ff",
|
|
503
|
+
"--brand-SubNav-width-subMenu": "18.75rem",
|
|
504
|
+
"--brand-controlStack-small-gap-condensed": ".5rem",
|
|
505
|
+
"--brand-Label-color-purple": "#8534f3",
|
|
506
|
+
"--display-orange-bgColor-emphasis": "#b8500f",
|
|
507
|
+
"--h1-size-mobile": "1.625rem",
|
|
508
|
+
"--codeMirror-cursor-fgColor": "#1f2328",
|
|
509
|
+
"--brand-fontStack-monospace": "\"Mona Sans Mono\", monospace",
|
|
510
|
+
"--label-plum-bgColor-hover": "#f0cdfe",
|
|
511
|
+
"--diffBlob-deletionNum-bgColor": "#ffcecb",
|
|
512
|
+
"--display-lemon-scale-9": "#3d2e00",
|
|
513
|
+
"--base-color-scale-green-3": "#5fed83",
|
|
514
|
+
"--base-color-scale-pink-2": "#f67ed2",
|
|
515
|
+
"--brand-text-style-italic-2": "\"ital\" 2",
|
|
516
|
+
"--control-xsmall-gap": ".25rem",
|
|
517
|
+
"--base-color-scale-lemon-5": "#a98906",
|
|
518
|
+
"--brand-RiverBreakout-variant-gridline-spacing-outerBlockEnd": "5rem",
|
|
519
|
+
"--display-olive-scale-0": "#f0f0ad",
|
|
520
|
+
"--brand-videoPlayer-playButton-fgColor-rest": "#f2f5f3",
|
|
521
|
+
"--base-color-scale-blue-6": "#0055d5",
|
|
522
|
+
"--button-primary-borderColor-active": "#1f232826",
|
|
523
|
+
"--label-red-bgColor-hover": "#fecdcd",
|
|
524
|
+
"--overlay-bgColor": "#fff",
|
|
525
|
+
"--color-diff-blob-selected-line-highlight-mix-blend-mode": "multiply",
|
|
526
|
+
"--dashboard-bgColor": "#fff",
|
|
527
|
+
"--display-coral-scale-7": "#9b2712",
|
|
528
|
+
"--display-brown-scale-7": "#64513a",
|
|
529
|
+
"--label-green-fgColor-active": "#254b34",
|
|
530
|
+
"--brand-Accordion-toggle-color-lemon": "#a98906",
|
|
531
|
+
"--brand-VideoPlayer-playButton-width": "6rem",
|
|
532
|
+
"--brand-button-subtle-fgColor-rest": "#000",
|
|
533
|
+
"--button-invisible-fgColor-active": "#25292e",
|
|
534
|
+
"--button-danger-iconColor-hover": "#fff",
|
|
535
|
+
"--display-auburn-scale-4": "#b4827e",
|
|
536
|
+
"--brand-Testimonial-quote-letterSpacing-default": "0",
|
|
537
|
+
"--brand-Testimonial-quoteMarkBackground-purple-red": "#f0e5ff",
|
|
538
|
+
"--brand-Testimonial-quoteMarkColor-red-orange-start": "#cf2230",
|
|
539
|
+
"--buttonKeybindingHint-danger-bgColor-active": "#1f232866",
|
|
540
|
+
"--brand-Testimonial-quote-fontWeight-default": "425",
|
|
541
|
+
"--display-plum-scale-5": "#a830e8",
|
|
542
|
+
"--base-color-scale-red-0": "#ffebe9",
|
|
543
|
+
"--display-gray-scale-8": "#424448",
|
|
544
|
+
"--brand-Statistic-spacing-condensed": "1rem",
|
|
545
|
+
"--brand-SubdomainNavBar-canvas-overflow-hover": "#f2f5f3",
|
|
546
|
+
"--brand-color-neutral-emphasis": "#77827a",
|
|
547
|
+
"--brand-borderWidth-thicker": "max(4px, .25rem)",
|
|
548
|
+
"--label-lime-fgColor-hover": "#3a5b25",
|
|
549
|
+
"--bgColor-attention-emphasis": "#9a6700",
|
|
550
|
+
"--brand-Label-color-indigo": "#4956e5",
|
|
551
|
+
"--button-outline-fgColor-rest": "#0969da",
|
|
552
|
+
"--display-coral-scale-5": "#d43511",
|
|
553
|
+
"--control-iconColor-rest": "#59636e",
|
|
554
|
+
"--border-default": ".0625rem solid #d1d9e0",
|
|
555
|
+
"--base-text-weight-semibold": "600",
|
|
556
|
+
"--base-duration-300": ".3s",
|
|
557
|
+
"--label-auburn-bgColor-hover": "#e6d6d5",
|
|
558
|
+
"--base-text-lineHeight-loose": "1.75",
|
|
559
|
+
"--spinner-size-small": "1rem",
|
|
560
|
+
"--brand-Grid-spacing-row": "3rem",
|
|
561
|
+
"--button-primary-shadow-selected": "inset 0 1px 0 0 #002d114d",
|
|
562
|
+
"--brand-text-weight-medium": "500",
|
|
563
|
+
"--base-color-scale-indigo-1": "#d4dbff",
|
|
564
|
+
"--buttonKeybindingHint-default-bgColor-disabled": "#eff2f5",
|
|
565
|
+
"--brand-VideoPlayer-tooltip-padding-inline": ".3125rem",
|
|
566
|
+
"--display-green-scale-6": "#2b6e3f",
|
|
567
|
+
"--display-pine-borderColor-muted": "#80efb9",
|
|
568
|
+
"--brand-Eyebrowbanner-icon-background-lime": "#f3fec8",
|
|
569
|
+
"--display-plum-scale-4": "#c264f2",
|
|
570
|
+
"--label-purple-fgColor-hover": "#6223d7",
|
|
571
|
+
"--brand-PricingOptions-items1-container-paddingInline": "2rem",
|
|
572
|
+
"--boxShadow-thin": "inset 0 0 0 .0625rem",
|
|
573
|
+
"--brand-text-subhead-weight-medium": "550",
|
|
574
|
+
"--brand-Testimonial-quoteMarkColor-yellow": "#be7d00",
|
|
575
|
+
"--display-pine-fgColor": "#156f4b",
|
|
576
|
+
"--breakpoint-medium": "48rem",
|
|
577
|
+
"--base-size-128": "8rem",
|
|
578
|
+
"--fgColor-neutral": "#59636e",
|
|
579
|
+
"--brand-button-subtle-bgColor-rest": "#0d111712",
|
|
580
|
+
"--display-lemon-scale-3": "#c2a60a",
|
|
581
|
+
"--contribution-default-bgColor-1": "#aceebb",
|
|
582
|
+
"--brand-Timeline-strokeWidth": ".125rem",
|
|
583
|
+
"--color-mktg-btn-shadow-outline": "#00000026 0 0 0 1px inset",
|
|
584
|
+
"--data-gray-color-emphasis": "#808fa3",
|
|
585
|
+
"--base-color-scale-green-9": "#0d3024",
|
|
586
|
+
"--border-accent-emphasis": ".0625rem solid #0969da",
|
|
587
|
+
"--label-teal-borderColor": "#fff0",
|
|
588
|
+
"--display-olive-bgColor-muted": "#f0f0ad",
|
|
589
|
+
"--brand-Label-color-green-blue-purple-4": "#8250df",
|
|
590
|
+
"--brand-Label-color-purple-red-start": "#8534f3",
|
|
591
|
+
"--brand-CTABanner-shadow-color-end": "#0377ff",
|
|
592
|
+
"--base-text-weight-regular": "400",
|
|
593
|
+
"--brand-controlStack-large-gap-auto": ".5rem",
|
|
594
|
+
"--brand-RiverBreakout-variant-gridline-spacing-contentGap": "1.5rem",
|
|
595
|
+
"--borderColor-sponsors-emphasis": "#bf3989",
|
|
596
|
+
"--base-color-scale-purple-7": "#43179e",
|
|
597
|
+
"--brand-control-small-paddingInline-normal": ".75rem",
|
|
598
|
+
"--brand-Bento-item-borderRadius-medium": "1.5rem",
|
|
599
|
+
"--brand-heading-lineHeight-700": "1.2",
|
|
600
|
+
"--brand-heading-letterSpacing-1000": "-.014rem",
|
|
601
|
+
"--brand-Pillar-icon-color-purple": "#8534f3",
|
|
602
|
+
"--base-text-weight-extralight": "200",
|
|
603
|
+
"--brand-Testimonial-quoteMarkColor-pink": "#ef2aa4",
|
|
604
|
+
"--display-green-borderColor-muted": "#9ceda0",
|
|
605
|
+
"--text-title-lineHeight-medium": "1.625",
|
|
606
|
+
"--button-danger-iconColor-rest": "#d1242f",
|
|
607
|
+
"--border-transparent": ".0625rem solid #fff0",
|
|
608
|
+
"--h1-size": "2rem",
|
|
609
|
+
"--zIndex-popover": "500",
|
|
610
|
+
"--control-medium-paddingInline-normal": ".75rem",
|
|
611
|
+
"--borderRadius-default": ".375rem",
|
|
612
|
+
"--display-gray-borderColor-emphasis": "#647182",
|
|
613
|
+
"--display-green-scale-0": "#caf7ca",
|
|
614
|
+
"--display-coral-scale-0": "#ffe5db",
|
|
615
|
+
"--brand-color-border-subtle": "#d2d9d4",
|
|
616
|
+
"--buttonKeybindingHint-default-borderColor-rest": "#d1d9e0b3",
|
|
617
|
+
"--brand-text-style-italic-6": "\"ital\" 6",
|
|
618
|
+
"--base-color-scale-teal-1": "#a4efe8",
|
|
619
|
+
"--brand-videoPlayer-range-bgColor-progress": "#3094ff",
|
|
620
|
+
"--button-inactive-bgColor": "#e6eaef",
|
|
621
|
+
"--label-lemon-fgColor-active": "#523f00",
|
|
622
|
+
"--brand-videoPlayer-range-bgColor-default": "#f2f5f3",
|
|
623
|
+
"--brand-text-weight-bold": "537",
|
|
624
|
+
"--base-color-scale-orange-7": "#703100",
|
|
625
|
+
"--buttonCounter-danger-fgColor-disabled": "#d1242f80",
|
|
626
|
+
"--display-coral-scale-4": "#f25f3a",
|
|
627
|
+
"--button-invisible-fgColor-disabled": "#818b98",
|
|
628
|
+
"--display-teal-scale-9": "#073740",
|
|
629
|
+
"--display-cyan-scale-3": "#00b7db",
|
|
630
|
+
"--highlight-neutral-bgColor": "#fff8c5",
|
|
631
|
+
"--display-pink-scale-4": "#e55da5",
|
|
632
|
+
"--brand-VideoPlayer-transition": "all .3s cubic-bezier(.16, 1, .3, 1)",
|
|
633
|
+
"--color-ansi-blue": "#0969da",
|
|
634
|
+
"--brand-text-subhead-letterSpacing-large": ".1px",
|
|
635
|
+
"--brand-Timeline-lineHeight": "1.5",
|
|
636
|
+
"--brand-Testimonial-quoteMarkBackground-indigo": "#eff2ff",
|
|
637
|
+
"--brand-EyebrowBanner-borderRadius": "6.25rem",
|
|
638
|
+
"--borderColor-sponsors-muted": "#ff80c866",
|
|
639
|
+
"--brand-Label-color-blue": "#0377ff",
|
|
640
|
+
"--display-teal-fgColor": "#106e75",
|
|
641
|
+
"--brand-pagination-link-bgColor-active": "#000",
|
|
642
|
+
"--text-subtitle-lineHeight": "1.625",
|
|
643
|
+
"--base-text-weight-heavy": "900",
|
|
644
|
+
"--display-purple-scale-6": "#783ae4",
|
|
645
|
+
"--contribution-halloween-bgColor-1": "#f0db3d",
|
|
646
|
+
"--label-coral-bgColor-hover": "#fecebe",
|
|
647
|
+
"--control-xsmall-paddingBlock": ".125rem",
|
|
648
|
+
"--display-gray-borderColor-muted": "#d2dae4",
|
|
649
|
+
"--brand-Pillar-icon-color-red": "#cf2230",
|
|
650
|
+
"--buttonCounter-danger-bgColor-hover": "#fff3",
|
|
651
|
+
"--display-teal-scale-2": "#22d3c7",
|
|
652
|
+
"--button-default-bgColor-active": "#e6eaef",
|
|
653
|
+
"--button-danger-fgColor-active": "#fff",
|
|
654
|
+
"--display-auburn-borderColor-emphasis": "#9d615c",
|
|
655
|
+
"--progressBar-track-bgColor": "#d1d9e0",
|
|
656
|
+
"--brand-Testimonial-quoteMarkBackground-red-orange": "#ffebe9",
|
|
657
|
+
"--brand-color-accent-primary": "#0d6731",
|
|
658
|
+
"--display-olive-scale-8": "#3b4927",
|
|
659
|
+
"--brand-Eyebrowbanner-icon-background-indigo": "#eff2ff",
|
|
660
|
+
"--color-prettylights-syntax-sublimelinter-gutter-mark": "#818b98",
|
|
661
|
+
"--brand-text-lineHeight-900": "1.1",
|
|
662
|
+
"--brand-heading-weight-1000": "425",
|
|
663
|
+
"--brand-text-weight-800": "400",
|
|
664
|
+
"--brand-FrostedGlassVFX-borderMask": "linear-gradient(to bottom, #d8dee480, #d8dee45e 100%)",
|
|
665
|
+
"--base-color-scale-coral-3": "#ff7b56",
|
|
666
|
+
"--brand-FrostedGlassVFX-bgColor": "#ffffffb3",
|
|
667
|
+
"--brand-color-border-muted": "#e4ebe6",
|
|
668
|
+
"--brand-tiles-highlightColor": "#08872b",
|
|
669
|
+
"--overlay-width-xlarge": "60rem",
|
|
670
|
+
"--headerSearch-bgColor": "#25292e",
|
|
671
|
+
"--base-color-scale-teal-3": "#39dad2",
|
|
672
|
+
"--brand-Accordion-toggle-color-red-orange-start": "#cf2230",
|
|
673
|
+
"--label-pink-fgColor-hover": "#8e2e66",
|
|
674
|
+
"--brand-IDE-autoSuggest-borderColor": "#0377ff",
|
|
675
|
+
"--brand-Token-bgColor-hover-accent": "#0d6731",
|
|
676
|
+
"--control-checked-bgColor-rest": "#0969da",
|
|
677
|
+
"--display-olive-scale-6": "#56682c",
|
|
678
|
+
"--brand-SubNav-shadow": "0px 100px 80px #00000003, 0px 41px 33px #00000005, 0px 22px 17px #00000005, 0px 12px 10px #00000008, 0px 6px 5px #0000000a, 0px 2px 2px #00000012",
|
|
679
|
+
"--base-color-scale-red-7": "#860620",
|
|
680
|
+
"--fgColor-draft": "#59636e",
|
|
681
|
+
"--counter-bgColor-emphasis": "#59636e",
|
|
682
|
+
"--color-prettylights-syntax-brackethighlighter-unmatched": "#82071e",
|
|
683
|
+
"--control-xlarge-paddingInline-spacious": "1rem",
|
|
684
|
+
"--breakpoint-large": "63.25rem",
|
|
685
|
+
"--display-pink-scale-9": "#4d233d",
|
|
686
|
+
"--progressBar-bgColor-severe": "#bc4c00",
|
|
687
|
+
"--brand-text-weight-extralight": "400",
|
|
688
|
+
"--base-color-scale-transparent": "#fff0",
|
|
689
|
+
"--controlTrack-borderColor-disabled": "#818b98",
|
|
690
|
+
"--brand-Icon-color-orange": "#b85b06",
|
|
691
|
+
"--brand-button-accent-bgColor-hover": "#0d6731",
|
|
692
|
+
"--display-cyan-scale-6": "#006a80",
|
|
693
|
+
"--brand-Eyebrowbanner-fgColor-blue": "#0377ff",
|
|
694
|
+
"--color-mktg-btn-shadow-hover-muted": "#000000b3 0 0 0 2px inset",
|
|
695
|
+
"--brand-videoPlayer-closedCaption-borderColor-enabled": "#f2f5f3",
|
|
696
|
+
"--brand-animation-variant-scaleInUp-end": "1",
|
|
697
|
+
"--label-red-bgColor-rest": "#ffe2e0",
|
|
698
|
+
"--base-size-28": "1.75rem",
|
|
699
|
+
"--brand-button-primary-borderColor-rest": "#000",
|
|
700
|
+
"--brand-color-focus": "#0377ff",
|
|
701
|
+
"--brand-IDE-glass-editor-tab-bgColor-rest": "#ffffff1a",
|
|
702
|
+
"--base-duration-1000": "1s",
|
|
703
|
+
"--shadow-floating-small": "0 0 0 1px #d1d9e040, 0 6px 12px -3px #25292e0a, 0 6px 18px 0 #25292e1f",
|
|
704
|
+
"--brand-borderWidth-thick": "max(2px, .125rem)",
|
|
705
|
+
"--borderColor-upsell-muted": "#c297ff66",
|
|
706
|
+
"--display-orange-scale-2": "#fbaf74",
|
|
707
|
+
"--brand-animation-variant-scaleInDown-end": "1",
|
|
708
|
+
"--label-lemon-bgColor-active": "#d8bd0e",
|
|
709
|
+
"--brand-LogoSuite-color-logo-filter-muted": "brightness(0) saturate(100%) invert(37%) sepia(7%) saturate(778%) hue-rotate(171deg) brightness(96%) contrast(91%)",
|
|
710
|
+
"--display-purple-bgColor-emphasis": "#894ceb",
|
|
711
|
+
"--buttonKeybindingHint-primary-bgColor-disabled": "#002d111a",
|
|
712
|
+
"--brand-text-weight-700": "400",
|
|
713
|
+
"--codeMirror-gutterMarker-fgColor-muted": "#59636e",
|
|
714
|
+
"--color-text-white": "#fff",
|
|
715
|
+
"--buttonKeybindingHint-inactive-bgColor": "#eff2f5",
|
|
716
|
+
"--brand-Eyebrowbanner-icon-background-gray": "#f2f5f3",
|
|
717
|
+
"--border-closed-muted": ".0625rem solid #ff818266",
|
|
718
|
+
"--display-brown-scale-8": "#51412f",
|
|
719
|
+
"--base-color-scale-blue-9": "#001c4d",
|
|
720
|
+
"--diffBlob-deletionLine-bgColor": "#ffebe9",
|
|
721
|
+
"--brand-Token-fgColor-invisible": "#000",
|
|
722
|
+
"--border-danger-muted": ".0625rem solid #ff818266",
|
|
723
|
+
"--display-gray-scale-9": "#303031",
|
|
724
|
+
"--brand-control-small-paddingInline-spacious": "1.5rem",
|
|
725
|
+
"--display-teal-scale-6": "#106e75",
|
|
726
|
+
"--buttonKeybindingHint-invisible-fgColor-rest": "#59636e",
|
|
727
|
+
"--base-size-6": ".375rem",
|
|
728
|
+
"--label-indigo-fgColor-active": "#2d2db4",
|
|
729
|
+
"--brand-heading-weight-700": "460",
|
|
730
|
+
"--base-color-scale-gray-5": "#96a199",
|
|
731
|
+
"--text-subtitle-size": "1.25rem",
|
|
732
|
+
"--fgColor-accent": "#0969da",
|
|
733
|
+
"--base-color-scale-red-9": "#420011",
|
|
734
|
+
"--shadow-inset": "inset 0 1px 0 0 #1f23280a",
|
|
735
|
+
"--display-brown-scale-1": "#dfd7c8",
|
|
736
|
+
"--brand-VideoPlayer-closedCaption-text-fgColor": "#fff",
|
|
737
|
+
"--base-duration-500": ".5s",
|
|
738
|
+
"--data-lime-color-muted": "#e3f2b5",
|
|
739
|
+
"--base-text-weight-normal": "400",
|
|
740
|
+
"--overlay-height-large": "27rem",
|
|
741
|
+
"--font-size-small": ".75rem",
|
|
742
|
+
"--control-borderColor-disabled": "#818b981a",
|
|
743
|
+
"--brand-Token-bgColor-invisible": "#e4ebe6",
|
|
744
|
+
"--display-indigo-borderColor-muted": "#d2d7fe",
|
|
745
|
+
"--label-green-bgColor-hover": "#9ceda0",
|
|
746
|
+
"--data-purple-color-muted": "#f1e5ff",
|
|
747
|
+
"--border-open-muted": ".0625rem solid #4ac26b66",
|
|
748
|
+
"--text-subtitle-shorthand": "400 1.25rem / 1.625 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
749
|
+
"--reactionButton-selected-fgColor-rest": "#0969da",
|
|
750
|
+
"--border-attention-emphasis": ".0625rem solid #9a6700",
|
|
751
|
+
"--base-color-scale-lime-2": "#dcfa67",
|
|
752
|
+
"--base-color-scale-green-8": "#0e4a2e",
|
|
753
|
+
"--base-color-scale-blue-5": "#0377ff",
|
|
754
|
+
"--label-cyan-bgColor-rest": "#bdf4ff",
|
|
755
|
+
"--buttonKeybindingHint-danger-bgColor-hover": "#1f232833",
|
|
756
|
+
"--base-color-scale-teal-6": "#136061",
|
|
757
|
+
"--diffBlob-hunkNum-fgColor-rest": "#1f2328",
|
|
758
|
+
"--data-green-color-emphasis": "#30a147",
|
|
759
|
+
"--brand-control-radio-border-checked": "#000",
|
|
760
|
+
"--brand-text-size-400": "1.375rem",
|
|
761
|
+
"--brand-text-letterSpacing-300": ".18px",
|
|
762
|
+
"--base-size-negative-6": "-.375rem",
|
|
763
|
+
"--controlStack-large-gap-spacious": ".75rem",
|
|
764
|
+
"--base-color-scale-yellow-7": "#824800",
|
|
765
|
+
"--label-coral-bgColor-active": "#fcab92",
|
|
766
|
+
"--brand-Eyebrowbanner-fgColor-yellow": "#be7d00",
|
|
767
|
+
"--control-minTarget-fine": "1rem",
|
|
768
|
+
"--display-orange-scale-7": "#8d3c11",
|
|
769
|
+
"--brand-Accordion-toggle-color-yellow": "#be7d00",
|
|
770
|
+
"--brand-color-neutral-emphasisPlus": "#353d37",
|
|
771
|
+
"--brand-text-weight-500": "400",
|
|
772
|
+
"--diffBlob-additionLine-bgColor": "#dafbe1",
|
|
773
|
+
"--overlay-height-medium": "20rem",
|
|
774
|
+
"--button-invisible-borderColor-disabled": "#fff0",
|
|
775
|
+
"--brand-Accordion-toggle-color-lime": "#92c219",
|
|
776
|
+
"--display-lemon-fgColor": "#786002",
|
|
777
|
+
"--display-yellow-scale-6": "#805900",
|
|
778
|
+
"--display-pink-scale-6": "#b12f79",
|
|
779
|
+
"--label-plum-fgColor-rest": "#961edc",
|
|
780
|
+
"--brand-Statistic-spacing-spacious": "2rem",
|
|
781
|
+
"--brand-body-fontFamilyAlt": "\"Hubot Sans\", \"Hubot SansHeaderFallback\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
782
|
+
"--brand-heading-weight-900": "440",
|
|
783
|
+
"--avatar-shadow": "0 0 0 2px #fffc",
|
|
784
|
+
"--brand-control-checkbox-bg-default": "#fff",
|
|
785
|
+
"--brand-LogoSuite-color-logo-emphasis": "#000",
|
|
786
|
+
"--brand-heading-lineHeight-500": "1.3",
|
|
787
|
+
"--brand-text-lineHeight-500": "1.35",
|
|
788
|
+
"--brand-PricingOptions-item-bgColor-gradient-end": "#fff",
|
|
789
|
+
"--focus-outlineColor": "#0969da",
|
|
790
|
+
"--color-prettylights-syntax-markup-list": "#3b2300",
|
|
791
|
+
"--base-text-weight-extrabold": "800",
|
|
792
|
+
"--display-pine-scale-3": "#1dbf76",
|
|
793
|
+
"--color-prettylights-syntax-carriage-return-text": "#f6f8fa",
|
|
794
|
+
"--text-caption-shorthand": "400 .75rem / 1.25 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
795
|
+
"--borderColor-emphasis": "#818b98",
|
|
796
|
+
"--data-teal-color-muted": "#c7f5ef",
|
|
797
|
+
"--display-brown-scale-4": "#a68b64",
|
|
798
|
+
"--brand-text-weight-light": "400",
|
|
799
|
+
"--brand-color-text-subtle": "#58635b",
|
|
800
|
+
"--brand-Accordion-indicator-hover": "#96a199",
|
|
801
|
+
"--base-color-scale-lime-9": "#182c01",
|
|
802
|
+
"--brand-Accordion-toggle-color-green": "#08872b",
|
|
803
|
+
"--brand-IDE-default-bgColor": "#e4ebe6",
|
|
804
|
+
"--label-indigo-fgColor-hover": "#393cd5",
|
|
805
|
+
"--buttonKeybindingHint-danger-fgColor-hover": "#fff",
|
|
806
|
+
"--diffBlob-hunkNum-fgColor-hover": "#fff",
|
|
807
|
+
"--brand-Eyebrowbanner-borderColor-rest": "#b6bfb8",
|
|
808
|
+
"--brand-color-danger-subtle": "#ffebe9",
|
|
809
|
+
"--button-danger-iconColor-disabled": "#d1242f80",
|
|
810
|
+
"--h4-size": "1rem",
|
|
811
|
+
"--tooltip-bgColor": "#25292e",
|
|
812
|
+
"--brand-ComparisonTable-featured-color-start": "#ff4ac0",
|
|
813
|
+
"--borderColor-done-muted": "#c297ff66",
|
|
814
|
+
"--brand-animation-duration-fast": ".3s",
|
|
815
|
+
"--color-prettylights-syntax-carriage-return-bg": "#cf222e",
|
|
816
|
+
"--base-size-16": "1rem",
|
|
817
|
+
"--base-color-scale-orange-5": "#b85b06",
|
|
818
|
+
"--brand-color-text-link-pressed": "#002f7a",
|
|
819
|
+
"--color-prettylights-syntax-constant-other-reference-link": "#0a3069",
|
|
820
|
+
"--brand-IDE-autoSuggestLine-bgColor": "#ddf4ff",
|
|
821
|
+
"--display-indigo-scale-0": "#e5e9ff",
|
|
822
|
+
"--brand-animation-variant-slideInDown-distance": "-.9375rem",
|
|
823
|
+
"--brand-text-subhead-weight-large": "500",
|
|
824
|
+
"--brand-color-border-default": "#b6bfb8",
|
|
825
|
+
"--base-color-scale-red-8": "#730019",
|
|
826
|
+
"--base-size-negative-40": "-2.5rem",
|
|
827
|
+
"--display-orange-scale-8": "#70300f",
|
|
828
|
+
"--fgColor-default": "#1f2328",
|
|
829
|
+
"--button-invisible-iconColor-hover": "#59636e",
|
|
830
|
+
"--brand-VideoPlayer-closedCaption-text-bgColor": "#000000bf",
|
|
831
|
+
"--h3-size": "1.25rem",
|
|
832
|
+
"--color-prettylights-syntax-string-regexp": "#116329",
|
|
833
|
+
"--display-plum-bgColor-emphasis": "#a830e8",
|
|
834
|
+
"--display-gray-scale-7": "#4e535a",
|
|
835
|
+
"--brand-color-success-muted": "#8cf2a699",
|
|
836
|
+
"--fgColor-link": "#0969da",
|
|
837
|
+
"--control-large-paddingInline-spacious": "1rem",
|
|
838
|
+
"--display-lime-borderColor-muted": "#c7e580",
|
|
839
|
+
"--borderColor-success-muted": "#4ac26b66",
|
|
840
|
+
"--base-color-scale-purple-4": "#9f51fa",
|
|
841
|
+
"--brand-Token-border-outline": "#e4ebe6",
|
|
842
|
+
"--borderWidth-default": ".0625rem",
|
|
843
|
+
"--brand-IDE-borderColor": "#e4ebe6",
|
|
844
|
+
"--base-color-scale-black-0": "#000",
|
|
845
|
+
"--buttonKeybindingHint-primary-fgColor-rest": "#fff",
|
|
846
|
+
"--base-color-scale-pink-0": "#fff0fc",
|
|
847
|
+
"--brand-text-letterSpacing-800": "0",
|
|
848
|
+
"--display-indigo-scale-9": "#25247b",
|
|
849
|
+
"--brand-LogoSuite-logobar-marquee-gap-condensed": "2.5rem",
|
|
850
|
+
"--color-notifications-row-bg": "#fff",
|
|
851
|
+
"--display-yellow-borderColor-emphasis": "#946a00",
|
|
852
|
+
"--base-text-size-xs": ".75rem",
|
|
853
|
+
"--brand-Token-fgColor-accent": "#fff",
|
|
854
|
+
"--display-green-bgColor-muted": "#caf7ca",
|
|
855
|
+
"--brand-box-spacing-spacious": "3rem",
|
|
856
|
+
"--color-workflow-card-header-shadow": "#0000",
|
|
857
|
+
"--brand-color-neutral-muted": "#c4ccc6fe",
|
|
858
|
+
"--brand-Testimonial-quoteMarkBackground-green": "#ebf9f4",
|
|
859
|
+
"--data-pink-color-muted": "#ffe5f1",
|
|
860
|
+
"--control-fgColor-placeholder": "#59636e",
|
|
861
|
+
"--button-primary-fgColor-rest": "#fff",
|
|
862
|
+
"--display-olive-scale-1": "#dbe170",
|
|
863
|
+
"--display-olive-borderColor-emphasis": "#64762d",
|
|
864
|
+
"--control-minTarget-auto": "1rem",
|
|
865
|
+
"--brand-Pillar-icon-color-blue": "#0377ff",
|
|
866
|
+
"--display-purple-borderColor-emphasis": "#894ceb",
|
|
867
|
+
"--color-ansi-green-bright": "#1a7f37",
|
|
868
|
+
"--codeMirror-activeline-bgColor": "#818b981f",
|
|
869
|
+
"--button-invisible-borderColor-rest": "#fff0",
|
|
870
|
+
"--brand-control-color-fg-default": "#000",
|
|
871
|
+
"--display-pink-fgColor": "#b12f79",
|
|
872
|
+
"--label-pink-fgColor-active": "#6e2b53",
|
|
873
|
+
"--brand-control-large-gap": "1rem",
|
|
874
|
+
"--brand-control-small-size": "2rem",
|
|
875
|
+
"--base-duration-400": ".4s",
|
|
876
|
+
"--base-color-scale-lime-1": "#e8fc97",
|
|
877
|
+
"--label-brown-fgColor-rest": "#755f43",
|
|
878
|
+
"--display-brown-scale-6": "#755f43",
|
|
879
|
+
"--control-bgColor-active": "#e6eaef",
|
|
880
|
+
"--codeMirror-gutters-bgColor": "#fff",
|
|
881
|
+
"--display-blue-scale-0": "#d1f0ff",
|
|
882
|
+
"--brand-Prose-img-spacing": "3rem",
|
|
883
|
+
"--base-text-size-md": "1rem",
|
|
884
|
+
"--text-title-weight-large": "600",
|
|
885
|
+
"--brand-Label-color-blue-purple-end": "#8534f3",
|
|
886
|
+
"--display-green-scale-4": "#30a147",
|
|
887
|
+
"--brand-Testimonial-quoteMarkColor-red": "#cf2230",
|
|
888
|
+
"--header-fgColor-default": "#ffffffb3",
|
|
889
|
+
"--brand-Grid-spacing-column-gap": "3rem",
|
|
890
|
+
"--display-brown-borderColor-muted": "#dfd7c8",
|
|
891
|
+
"--dialog-scrollgutter": "0px",
|
|
892
|
+
"--display-orange-borderColor-muted": "#fecfaa",
|
|
893
|
+
"--color-prettylights-syntax-markup-bold": "#1f2328",
|
|
894
|
+
"--border-upsell-muted": ".0625rem solid #c297ff66",
|
|
895
|
+
"--brand-text-style-italic-9": "\"ital\" 9",
|
|
896
|
+
"--bgColor-severe-emphasis": "#bc4c00",
|
|
897
|
+
"--brand-Section-padding-condensed": "3rem",
|
|
898
|
+
"--brand-Testimonial-quoteMarkBackground-yellow": "#fff8c5",
|
|
899
|
+
"--brand-control-medium-paddingBlock-normal": "1rem",
|
|
900
|
+
"--control-xlarge-gap": ".5rem",
|
|
901
|
+
"--fontStack-system": "\"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
902
|
+
"--display-cyan-scale-1": "#7ae9ff",
|
|
903
|
+
"--display-red-scale-5": "#df0c24",
|
|
904
|
+
"--label-auburn-borderColor": "#fff0",
|
|
905
|
+
"--display-pine-bgColor-emphasis": "#167e53",
|
|
906
|
+
"--brand-FrostedGlassVFX-blurIntensity-low": ".75rem",
|
|
907
|
+
"--base-color-scale-indigo-9": "#12144f",
|
|
908
|
+
"--base-color-scale-blue-4": "#3094ff",
|
|
909
|
+
"--brand-control-checkbox-border-checked": "#000",
|
|
910
|
+
"--selectMenu-bgColor-active": "#b6e3ff",
|
|
911
|
+
"--brand-color-canvas-invert": "#000",
|
|
912
|
+
"--display-plum-scale-0": "#f8e5ff",
|
|
913
|
+
"--brand-Pillar-icon-color-green": "#08872b",
|
|
914
|
+
"--brand-heading-letterSpacing-600": "0",
|
|
915
|
+
"--base-color-scale-yellow-0": "#fff8c5",
|
|
916
|
+
"--base-size-24": "1.5rem",
|
|
917
|
+
"--display-auburn-scale-3": "#c59e9b",
|
|
918
|
+
"--brand-button-primary-fgColor-rest": "#fff",
|
|
919
|
+
"--borderColor-disabled": "#818b981a",
|
|
920
|
+
"--label-brown-fgColor-active": "#51412f",
|
|
921
|
+
"--brand-Accordion-toggle-color-green-blue-start": "#08872b",
|
|
922
|
+
"--brand-IDE-height": "50rem",
|
|
923
|
+
"--display-brown-scale-2": "#cbbda4",
|
|
924
|
+
"--display-yellow-scale-7": "#704d00",
|
|
925
|
+
"--brand-color-error-fg": "#cf2230",
|
|
926
|
+
"--label-indigo-bgColor-active": "#b1b9fb",
|
|
927
|
+
"--borderColor-draft-muted": "#d1d9e0b3",
|
|
928
|
+
"--brand-Eyebrowbanner-subHeading-fgColor": "#58635b",
|
|
929
|
+
"--data-plum-color-muted": "#f8e5ff",
|
|
930
|
+
"--display-indigo-scale-1": "#d2d7fe",
|
|
931
|
+
"--brand-Accordion-indicator-idle": "#c4ccc6",
|
|
932
|
+
"--display-green-scale-2": "#54d961",
|
|
933
|
+
"--brand-animation-duration-extended": ".7s",
|
|
934
|
+
"--contribution-default-borderColor-4": "#1f23280d",
|
|
935
|
+
"--base-size-negative-20": "-1.25rem",
|
|
936
|
+
"--label-teal-bgColor-hover": "#89ebe1",
|
|
937
|
+
"--label-coral-fgColor-active": "#7e2011",
|
|
938
|
+
"--display-plum-scale-6": "#961edc",
|
|
939
|
+
"--brand-Testimonial-quote-letterSpacing-large": "0",
|
|
940
|
+
"--display-brown-scale-5": "#856d4c",
|
|
941
|
+
"--brand-FAQGroup-buttonIndicator-idle": "#c4ccc6",
|
|
942
|
+
"--display-purple-scale-3": "#bc91f8",
|
|
943
|
+
"--display-pink-borderColor-muted": "#fdc9e2",
|
|
944
|
+
"--button-primary-borderColor-disabled": "#95d8a6",
|
|
945
|
+
"--brand-Token-bgColor-default": "#f2f5f3",
|
|
946
|
+
"--brand-stack-padding-spacious": "3rem",
|
|
947
|
+
"--label-red-fgColor-rest": "#c50d28",
|
|
948
|
+
"--buttonKeybindingHint-primary-borderColor-rest": "#1f232826",
|
|
949
|
+
"--display-red-scale-6": "#c50d28",
|
|
950
|
+
"--buttonKeybindingHint-danger-fgColor-rest": "#59636e",
|
|
951
|
+
"--borderColor-attention-muted": "#d4a72c66",
|
|
952
|
+
"--base-color-scale-orange-9": "#471700",
|
|
953
|
+
"--display-lime-borderColor-emphasis": "#527a29",
|
|
954
|
+
"--brand-Testimonial-quoteMarkColor-gray": "#96a199",
|
|
955
|
+
"--display-pink-scale-8": "#6e2b53",
|
|
956
|
+
"--skeletonLoader-bgColor": "#818b981a",
|
|
957
|
+
"--display-red-bgColor-muted": "#ffe2e0",
|
|
958
|
+
"--brand-text-size-600": "2.125rem",
|
|
959
|
+
"--base-size-negative-48": "-3rem",
|
|
960
|
+
"--brand-Accordion-toggle-color-red-orange-end": "#b85b06",
|
|
961
|
+
"--buttonKeybindingHint-inactive-borderColor": "#d1d9e0b3",
|
|
962
|
+
"--brand-VideoPlayer-playButton-height": "6rem",
|
|
963
|
+
"--topicTag-borderColor": "#fff0",
|
|
964
|
+
"--brand-breakpoint-small": "34rem",
|
|
965
|
+
"--border-severe-emphasis": ".0625rem solid #bc4c00",
|
|
966
|
+
"--codeMirror-syntax-fgColor-storage": "#cf222e",
|
|
967
|
+
"--button-invisible-bgColor-active": "#818b9826",
|
|
968
|
+
"--brand-Eyebrowbanner-icon-background-lemon": "#fdf5b3",
|
|
969
|
+
"--display-auburn-scale-7": "#744744",
|
|
970
|
+
"--brand-InlineLink-color-pressed": "#002f7a",
|
|
971
|
+
"--stack-gap-spacious": "1.5rem",
|
|
972
|
+
"--base-size-112": "7rem",
|
|
973
|
+
"--brand-VideoPlayer-range-height": ".375rem",
|
|
974
|
+
"--label-pine-bgColor-rest": "#bff8db",
|
|
975
|
+
"--display-lemon-borderColor-muted": "#f0db3d",
|
|
976
|
+
"--border-attention-muted": ".0625rem solid #d4a72c66",
|
|
977
|
+
"--display-lime-scale-6": "#476c28",
|
|
978
|
+
"--brand-Eyebrowbanner-fgColor-red": "#cf2230",
|
|
979
|
+
"--label-pine-fgColor-rest": "#156f4b",
|
|
980
|
+
"--boxShadow-thick": "inset 0 0 0 .125rem",
|
|
981
|
+
"--display-olive-scale-3": "#9bae32",
|
|
982
|
+
"--display-lemon-borderColor-emphasis": "#866e04",
|
|
983
|
+
"--display-coral-borderColor-emphasis": "#d43511",
|
|
984
|
+
"--brand-River-spacing-innerY": "2rem",
|
|
985
|
+
"--buttonKeybindingHint-danger-fgColor-disabled": "#818b98",
|
|
986
|
+
"--base-color-scale-coral-5": "#e13f1b",
|
|
987
|
+
"--label-yellow-fgColor-rest": "#805900",
|
|
988
|
+
"--color-marketing-icon-primary": "#218bff",
|
|
989
|
+
"--display-red-borderColor-emphasis": "#df0c24",
|
|
990
|
+
"--brand-River-visual-shadow": "0px 100px 80px #00000004, 0px 41.7776px 33.4221px #00000006, 0px 22.3363px 17.869px #00000007, 0px 12.5216px 10.0172px #00000009, 0px 6.6501px 5.32008px #0000000b, 0px 2.76726px 2.21381px #00000012",
|
|
991
|
+
"--contribution-default-borderColor-3": "#1f23280d",
|
|
992
|
+
"--brand-IDE-autoSuggest-fgColor": "#fff",
|
|
993
|
+
"--border-translucent": ".0625rem solid #1f232826",
|
|
994
|
+
"--data-auburn-color-emphasis": "#9d615c",
|
|
995
|
+
"--label-indigo-borderColor": "#fff0",
|
|
996
|
+
"--data-yellow-color-muted": "#ffec9e",
|
|
997
|
+
"--brand-Icon-background-yellow": "#fff8c5",
|
|
998
|
+
"--brand-control-medium-paddingInline-normal": "1rem",
|
|
999
|
+
"--base-text-weight-medium": "500",
|
|
1000
|
+
"--brand-heading-lineHeight-800": "1.2",
|
|
1001
|
+
"--label-plum-fgColor-hover": "#7d1eb8",
|
|
1002
|
+
"--Layout-inner-spacing-max": "0px",
|
|
1003
|
+
"--text-body-weight": "400",
|
|
1004
|
+
"--label-purple-bgColor-active": "#d1b1fc",
|
|
1005
|
+
"--base-color-scale-green-6": "#08872b",
|
|
1006
|
+
"--brand-color-danger-fg": "#cf2230",
|
|
1007
|
+
"--base-zIndex-400": "400",
|
|
1008
|
+
"--brand-Label-color-green-blue-end": "#0377ff",
|
|
1009
|
+
"--label-pine-borderColor": "#fff0",
|
|
1010
|
+
"--label-cyan-bgColor-active": "#00d0fa",
|
|
1011
|
+
"--brand-Eyebrowbanner-icon-background-orange": "#fff1e5",
|
|
1012
|
+
"--brand-text-subhead-letterSpacing-medium": ".24px",
|
|
1013
|
+
"--button-danger-fgColor-hover": "#fff",
|
|
1014
|
+
"--brand-IDE-default-editor-tab-bgColor-rest": "#f2f5f3",
|
|
1015
|
+
"--buttonKeybindingHint-danger-fgColor-active": "#fff",
|
|
1016
|
+
"--bgColor-neutral-muted": "#818b981f",
|
|
1017
|
+
"--display-blue-fgColor": "#005fcc",
|
|
1018
|
+
"--bgColor-accent-emphasis": "#0969da",
|
|
1019
|
+
"--bgColor-done-muted": "#fbefff",
|
|
1020
|
+
"--codeMirror-syntax-fgColor-string": "#0a3069",
|
|
1021
|
+
"--brand-animation-variant-scaleInTop-distance": "",
|
|
1022
|
+
"--brand-color-accent-secondary": "#be7d00",
|
|
1023
|
+
"--color-prettylights-syntax-invalid-illegal-text": "#d1242f",
|
|
1024
|
+
"--brand-FrostedGlassVFX-boxShadow": "0 4px 10px 0 #00000005",
|
|
1025
|
+
"--display-orange-scale-5": "#b8500f",
|
|
1026
|
+
"--button-outline-borderColor-hover": "#1f232826",
|
|
1027
|
+
"--display-lime-scale-7": "#3a5b25",
|
|
1028
|
+
"--avatarStack-fade-bgColor-muted": "#dae0e7",
|
|
1029
|
+
"--display-blue-scale-6": "#005fcc",
|
|
1030
|
+
"--text-caption-weight": "400",
|
|
1031
|
+
"--base-size-negative-8": "-.5rem",
|
|
1032
|
+
"--label-auburn-fgColor-rest": "#8a5551",
|
|
1033
|
+
"--base-size-44": "2.75rem",
|
|
1034
|
+
"--brand-button-subtle-bgColor-hover": "#0d11170d",
|
|
1035
|
+
"--brand-SubNav-color-link-rest": "#000",
|
|
1036
|
+
"--contribution-default-bgColor-4": "#116329",
|
|
1037
|
+
"--control-xlarge-size": "3rem",
|
|
1038
|
+
"--brand-color-text-default": "#000",
|
|
1039
|
+
"--base-size-32": "2rem",
|
|
1040
|
+
"--borderColor-attention-emphasis": "#9a6700",
|
|
1041
|
+
"--brand-ActionMenu-color-item-hover": "#e4ebe6",
|
|
1042
|
+
"--brand-control-small-paddingBlock": ".5rem",
|
|
1043
|
+
"--base-color-scale-purple-1": "#dbbffd",
|
|
1044
|
+
"--base-text-lineHeight-tight": "1.25",
|
|
1045
|
+
"--brand-borderInset-thin": "inset 0 0 0 max(1px, .0625rem)",
|
|
1046
|
+
"--zIndex-behind": "-1",
|
|
1047
|
+
"--borderColor-muted": "#d1d9e0b3",
|
|
1048
|
+
"--base-color-scale-purple-9": "#160048",
|
|
1049
|
+
"--brand-Testimonial-quoteMarkBackground-lime": "#f3fec8",
|
|
1050
|
+
"--brand-color-success-fg": "#08872b",
|
|
1051
|
+
"--buttonKeybindingHint-danger-borderColor-active": "#1f232826",
|
|
1052
|
+
"--brand-Label-color-red-orange-start": "#cf2230",
|
|
1053
|
+
"--base-color-scale-teal-0": "#daf9f5",
|
|
1054
|
+
"--page-header-bgColor": "#f6f8fa",
|
|
1055
|
+
"--base-color-scale-lime-5": "#92c219",
|
|
1056
|
+
"--brand-River-variant-gridline-spacing-outerBlock": "4rem",
|
|
1057
|
+
"--h6-size": ".75rem",
|
|
1058
|
+
"--text-title-shorthand-large": "600 2rem / 1.5 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1059
|
+
"--brand-Eyebrowbanner-icon-background-default": "#f2f5f3",
|
|
1060
|
+
"--base-color-scale-purple-2": "#c898fd",
|
|
1061
|
+
"--display-brown-borderColor-emphasis": "#856d4c",
|
|
1062
|
+
"--brand-Pillar-icon-color-lemon": "#a98906",
|
|
1063
|
+
"--display-coral-fgColor": "#ba2e12",
|
|
1064
|
+
"--data-blue-color-emphasis": "#006edb",
|
|
1065
|
+
"--brand-EyebrowBanner-heading-size": "1rem",
|
|
1066
|
+
"--base-color-scale-red-3": "#ff8182",
|
|
1067
|
+
"--brand-text-weight-semibold": "525",
|
|
1068
|
+
"--base-color-scale-blue-1": "#bcecff",
|
|
1069
|
+
"--display-teal-borderColor-muted": "#89ebe1",
|
|
1070
|
+
"--display-cyan-fgColor": "#006a80",
|
|
1071
|
+
"--brand-control-large-paddingBlock-normal": "1.25rem",
|
|
1072
|
+
"--brand-control-large-paddingInline-condensed": "1rem",
|
|
1073
|
+
"--base-color-scale-pink-3": "#ff80d2",
|
|
1074
|
+
"--color-prettylights-syntax-markup-deleted-bg": "#ffebe9",
|
|
1075
|
+
"--bgColor-transparent": "#fff0",
|
|
1076
|
+
"--display-lemon-scale-5": "#866e04",
|
|
1077
|
+
"--button-outline-bgColor-active": "#0757ba",
|
|
1078
|
+
"--brand-tiles-bgColor-rest": "#fafafa",
|
|
1079
|
+
"--base-color-scale-coral-9": "#500a00",
|
|
1080
|
+
"--brand-control-animation-easing": "cubic-bezier(.33, 1, .68, 1)",
|
|
1081
|
+
"--brand-PricingOptions-borderMask": "linear-gradient(180deg, #0009, #0000004d)",
|
|
1082
|
+
"--color-prettylights-syntax-markup-inserted-bg": "#dafbe1",
|
|
1083
|
+
"--brand-Testimonial-quoteMarkColor-green-blue-end": "#0377ff",
|
|
1084
|
+
"--display-teal-scale-4": "#179b9b",
|
|
1085
|
+
"--shadow-floating-large": "0 0 0 1px #d1d9e000, 0 40px 80px 0 #25292e3d",
|
|
1086
|
+
"--fgColor-closed": "#d1242f",
|
|
1087
|
+
"--display-lime-scale-4": "#6c9d2f",
|
|
1088
|
+
"--base-color-scale-lemon-0": "#fdf5b3",
|
|
1089
|
+
"--color-ansi-black": "#1f2328",
|
|
1090
|
+
"--brand-Icon-color-gray": "#77827a",
|
|
1091
|
+
"--color-prettylights-syntax-brackethighlighter-angle": "#59636e",
|
|
1092
|
+
"--control-medium-size": "2rem",
|
|
1093
|
+
"--display-coral-scale-1": "#fecebe",
|
|
1094
|
+
"--h2-size-mobile": "1.375rem",
|
|
1095
|
+
"--h00-size": "3rem",
|
|
1096
|
+
"--contribution-default-borderColor-0": "#1f23280d",
|
|
1097
|
+
"--brand-PricingOptions-featureList-group-heading-color": "#000",
|
|
1098
|
+
"--display-yellow-scale-3": "#d19d00",
|
|
1099
|
+
"--label-lime-bgColor-rest": "#e3f2b5",
|
|
1100
|
+
"--brand-animation-duration-default": ".6s",
|
|
1101
|
+
"--text-body-size-large": "1rem",
|
|
1102
|
+
"--data-pink-color-emphasis": "#ce2c85",
|
|
1103
|
+
"--brand-CTABanner-bgColor": "#f2f5f3",
|
|
1104
|
+
"--buttonCounter-outline-fgColor-rest": "#0550ae",
|
|
1105
|
+
"--text-caption-size": ".75rem",
|
|
1106
|
+
"--control-bgColor-rest": "#f6f8fa",
|
|
1107
|
+
"--h0-size-mobile": "2rem",
|
|
1108
|
+
"--display-pine-scale-1": "#80efb9",
|
|
1109
|
+
"--label-orange-fgColor-rest": "#a24610",
|
|
1110
|
+
"--brand-color-canvas-inset": "#f2f5f3",
|
|
1111
|
+
"--button-invisible-fgColor-hover": "#25292e",
|
|
1112
|
+
"--color-prettylights-syntax-markup-ignored-bg": "#0550ae",
|
|
1113
|
+
"--brand-Testimonial-quoteMarkBackground-gray": "#f2f5f3",
|
|
1114
|
+
"--label-olive-fgColor-rest": "#56682c",
|
|
1115
|
+
"--border-success-emphasis": ".0625rem solid #1a7f37",
|
|
1116
|
+
"--display-gray-scale-5": "#647182",
|
|
1117
|
+
"--brand-color-text-error": "#cf222e",
|
|
1118
|
+
"--brand-Label-color-green-blue-purple-2": "#096bde",
|
|
1119
|
+
"--contribution-default-bgColor-0": "#eff2f5",
|
|
1120
|
+
"--brand-Accordion-toggle-color-default": "#000",
|
|
1121
|
+
"--border-sponsors-muted": ".0625rem solid #ff80c866",
|
|
1122
|
+
"--display-brown-bgColor-muted": "#eeeae2",
|
|
1123
|
+
"--brand-animation-variant-scaleIn-start": ".96",
|
|
1124
|
+
"--brand-EyebrowBanner-spacing-inner-inline": "1.25rem",
|
|
1125
|
+
"--buttonCounter-outline-bgColor-rest": "#0969da1a",
|
|
1126
|
+
"--brand-Icon-background-default": "#ebf9f4",
|
|
1127
|
+
"--outline-focus-width": ".125rem",
|
|
1128
|
+
"--controlTrack-borderColor-rest": "#d1d9e0",
|
|
1129
|
+
"--base-color-scale-coral-7": "#a22710",
|
|
1130
|
+
"--display-coral-scale-2": "#fcab92",
|
|
1131
|
+
"--display-plum-scale-8": "#651d96",
|
|
1132
|
+
"--display-plum-scale-1": "#f0cdfe",
|
|
1133
|
+
"--display-indigo-scale-8": "#2d2db4",
|
|
1134
|
+
"--brand-Testimonial-quoteMarkColor-green": "#08872b",
|
|
1135
|
+
"--overlay-backdrop-bgColor": "#c8d1da66",
|
|
1136
|
+
"--display-lime-scale-2": "#9bd039",
|
|
1137
|
+
"--color-prettylights-syntax-storage-modifier-import": "#1f2328",
|
|
1138
|
+
"--brand-control-medium-gap": ".75rem",
|
|
1139
|
+
"--label-purple-bgColor-hover": "#e6d2fe",
|
|
1140
|
+
"--brand-heading-lineHeight-400": "1.3",
|
|
1141
|
+
"--brand-color-canvas-overlay": "#fff",
|
|
1142
|
+
"--brand-Eyebrowbanner-fgColor-red-orange-start": "#cf2230",
|
|
1143
|
+
"--borderColor-done-emphasis": "#8250df",
|
|
1144
|
+
"--breakpoint-small": "34rem",
|
|
1145
|
+
"--label-teal-bgColor-rest": "#c7f5ef",
|
|
1146
|
+
"--base-size-20": "1.25rem",
|
|
1147
|
+
"--brand-RiverBreakout-spacing-inner": "4rem",
|
|
1148
|
+
"--base-color-scale-lime-7": "#425e13",
|
|
1149
|
+
"--data-green-color-muted": "#caf7ca",
|
|
1150
|
+
"--brand-control-checkbox-bg-disabled": "#e4ebe6",
|
|
1151
|
+
"--sideNav-bgColor-selected": "#fff",
|
|
1152
|
+
"--base-color-scale-pink-9": "#3d0a28",
|
|
1153
|
+
"--treeViewItem-leadingVisual-iconColor-rest": "#54aeff",
|
|
1154
|
+
"--brand-Hero-narrow-padding": "6rem 0",
|
|
1155
|
+
"--control-checked-borderColor-hover": "#0860ca",
|
|
1156
|
+
"--brand-control-radio-border-default": "#b6bfb8",
|
|
1157
|
+
"--brand-Eyebrowbanner-fgColor-pink-blue-start": "#ef2aa4",
|
|
1158
|
+
"--brand-FAQGroup-buttonIndicator-hover": "#96a199",
|
|
1159
|
+
"--brand-Pillar-icon-color-coral": "#e13f1b",
|
|
1160
|
+
"--codeMirror-lineNumber-fgColor": "#59636e",
|
|
1161
|
+
"--label-pine-fgColor-active": "#114b36",
|
|
1162
|
+
"--brand-Accordion-indicator-active": "#0d6731",
|
|
1163
|
+
"--brand-FrostedGlassVFX-blurIntensity-high": "5rem",
|
|
1164
|
+
"--text-body-size-small": ".75rem",
|
|
1165
|
+
"--display-orange-scale-9": "#54230d",
|
|
1166
|
+
"--label-gray-bgColor-hover": "#d2dae4",
|
|
1167
|
+
"--bgColor-disabled": "#eff2f5",
|
|
1168
|
+
"--base-color-scale-lime-4": "#b2de28",
|
|
1169
|
+
"--control-large-size": "2.5rem",
|
|
1170
|
+
"--brand-heading-letterSpacing-900": "0",
|
|
1171
|
+
"--brand-Testimonial-quoteMarkBackground-orange": "#fff1e5",
|
|
1172
|
+
"--brand-Label-color-lemon": "#a98906",
|
|
1173
|
+
"--base-color-scale-gray-7": "#58635b",
|
|
1174
|
+
"--color-prettylights-syntax-constant": "#0550ae",
|
|
1175
|
+
"--brand-stack-padding-normal": "1.5rem",
|
|
1176
|
+
"--base-color-scale-lime-6": "#698e17",
|
|
1177
|
+
"--display-lime-scale-3": "#80b530",
|
|
1178
|
+
"--display-plum-scale-2": "#e2a7fb",
|
|
1179
|
+
"--bgColor-success-muted": "#dafbe1",
|
|
1180
|
+
"--brand-text-lineHeight-700": "1.2",
|
|
1181
|
+
"--base-text-weight-bold": "700",
|
|
1182
|
+
"--diffBlob-additionLine-fgColor": "#1f2328",
|
|
1183
|
+
"--base-color-scale-red-1": "#ffcecb",
|
|
1184
|
+
"--color-prettylights-syntax-markup-deleted-text": "#82071e",
|
|
1185
|
+
"--label-blue-fgColor-rest": "#005fcc",
|
|
1186
|
+
"--buttonCounter-danger-bgColor-rest": "#cf222e1a",
|
|
1187
|
+
"--base-color-scale-indigo-3": "#8e9df7",
|
|
1188
|
+
"--diffBlob-deletionWord-bgColor": "#ffcecb",
|
|
1189
|
+
"--control-transparent-borderColor-hover": "#fff0",
|
|
1190
|
+
"--display-cyan-scale-0": "#bdf4ff",
|
|
1191
|
+
"--borderColor-default": "#d1d9e0",
|
|
1192
|
+
"--label-purple-fgColor-active": "#4f21ab",
|
|
1193
|
+
"--base-color-scale-coral-1": "#ffcab8",
|
|
1194
|
+
"--base-color-scale-red-6": "#ae0b29",
|
|
1195
|
+
"--bgColor-sponsors-muted": "#ffeff7",
|
|
1196
|
+
"--label-plum-bgColor-rest": "#f8e5ff",
|
|
1197
|
+
"--base-color-scale-pink-4": "#ff4ac0",
|
|
1198
|
+
"--control-borderColor-danger": "#cf222e",
|
|
1199
|
+
"--display-plum-scale-3": "#d487f7",
|
|
1200
|
+
"--display-lemon-scale-0": "#f7eea1",
|
|
1201
|
+
"--base-size-40": "2.5rem",
|
|
1202
|
+
"--brand-text-weight-1000": "400",
|
|
1203
|
+
"--base-color-scale-green-0": "#ebf9f4",
|
|
1204
|
+
"--brand-text-size-500": "1.75rem",
|
|
1205
|
+
"--brand-SubNav-bgColor": "#fff",
|
|
1206
|
+
"--brand-SubdomainNavBar-border-nav-pressed": "#000",
|
|
1207
|
+
"--display-lime-bgColor-emphasis": "#527a29",
|
|
1208
|
+
"--brand-button-secondary-fgColor-rest": "#000",
|
|
1209
|
+
"--base-color-scale-white-0": "#fff",
|
|
1210
|
+
"--data-teal-color-emphasis": "#179b9b",
|
|
1211
|
+
"--brand-Accordion-toggle-color-blue": "#0377ff",
|
|
1212
|
+
"--base-color-scale-lime-8": "#2c440b",
|
|
1213
|
+
"--label-blue-fgColor-hover": "#004db3",
|
|
1214
|
+
"--display-coral-scale-6": "#ba2e12",
|
|
1215
|
+
"--display-brown-bgColor-emphasis": "#856d4c",
|
|
1216
|
+
"--brand-animation-variant-scaleInDown-distance": "-3.125rem",
|
|
1217
|
+
"--overlay-padding-condensed": ".5rem",
|
|
1218
|
+
"--menu-bgColor-active": "#fff0",
|
|
1219
|
+
"--base-size-80": "5rem",
|
|
1220
|
+
"--brand-Testimonial-quoteMarkColor-red-orange-end": "#b85b06",
|
|
1221
|
+
"--brand-FAQ-color-tabLabel-selected": "#000",
|
|
1222
|
+
"--color-prettylights-syntax-string": "#0a3069",
|
|
1223
|
+
"--bgColor-done-emphasis": "#8250df",
|
|
1224
|
+
"--button-invisible-bgColor-hover": "#818b981a",
|
|
1225
|
+
"--label-olive-bgColor-active": "#b9c832",
|
|
1226
|
+
"--control-xlarge-paddingInline-normal": ".75rem",
|
|
1227
|
+
"--brand-Eyebrowbanner-icon-background-purple": "#f0e5ff",
|
|
1228
|
+
"--brand-Eyebrowbanner-fgColor-green-blue-start": "#08872b",
|
|
1229
|
+
"--color-ansi-cyan-bright": "#3192aa",
|
|
1230
|
+
"--brand-text-letterSpacing-350": ".18px",
|
|
1231
|
+
"--bgColor-muted": "#f6f8fa",
|
|
1232
|
+
"--brand-button-secondary-bgColor-rest": "transparent",
|
|
1233
|
+
"--control-bgColor-hover": "#eff2f5",
|
|
1234
|
+
"--bgColor-emphasis": "#25292e",
|
|
1235
|
+
"--brand-Token-bgColor-hover-invisible": "#0000000f",
|
|
1236
|
+
"--controlStack-small-gap-auto": ".5rem",
|
|
1237
|
+
"--display-cyan-scale-7": "#00596b",
|
|
1238
|
+
"--brand-ComparisonTable-heading-marginBottom": "6rem",
|
|
1239
|
+
"--brand-Accordion-toggle-color-start": "#0d6731",
|
|
1240
|
+
"--contribution-default-borderColor-2": "#1f23280d",
|
|
1241
|
+
"--brand-Tabs-item-default-borderColor-active": "#b6bfb8",
|
|
1242
|
+
"--underlineNav-borderColor-active": "#fd8c73",
|
|
1243
|
+
"--data-lime-color-emphasis": "#527a29",
|
|
1244
|
+
"--display-green-scale-3": "#31bf46",
|
|
1245
|
+
"--border-sponsors-emphasis": ".0625rem solid #bf3989",
|
|
1246
|
+
"--border-accent-muted": ".0625rem solid #54aeff66",
|
|
1247
|
+
"--body-font-size": ".875rem",
|
|
1248
|
+
"--brand-Eyebrowbanner-fgColor-pink": "#ef2aa4",
|
|
1249
|
+
"--brand-color-success-subtle": "#bfffd1",
|
|
1250
|
+
"--brand-PricingOptions-items3-container-padding-inline": "1.5rem",
|
|
1251
|
+
"--base-size-4": ".25rem",
|
|
1252
|
+
"--label-green-bgColor-rest": "#caf7ca",
|
|
1253
|
+
"--brand-text-weight-200": "400",
|
|
1254
|
+
"--brand-VideoPlayer-range-minWidth": "4.6875rem",
|
|
1255
|
+
"--color-ansi-cyan": "#1b7c83",
|
|
1256
|
+
"--buttonKeybindingHint-danger-bgColor-rest": "#eff2f5",
|
|
1257
|
+
"--brand-heading-weight-400": "480",
|
|
1258
|
+
"--brand-IDE-autoSuggest-bgColor": "#0969da",
|
|
1259
|
+
"--color-project-sidebar-bg": "#fff",
|
|
1260
|
+
"--display-orange-scale-1": "#fecfaa",
|
|
1261
|
+
"--display-red-bgColor-emphasis": "#df0c24",
|
|
1262
|
+
"--h00-size-mobile": "2.5rem",
|
|
1263
|
+
"--brand-Section-container-maxWidth": "80rem",
|
|
1264
|
+
"--color-prettylights-syntax-markup-changed-bg": "#ffd8b5",
|
|
1265
|
+
"--borderRadius-large": ".75rem",
|
|
1266
|
+
"--brand-controlStack-medium-gap-spacious": ".75rem",
|
|
1267
|
+
"--stack-padding-normal": "1rem",
|
|
1268
|
+
"--brand-control-radio-bg-default": "#fff",
|
|
1269
|
+
"--brand-text-subhead-lineHeight-medium": "1.3",
|
|
1270
|
+
"--data-olive-color-muted": "#f0f0ad",
|
|
1271
|
+
"--brand-PricingOptions-items2-gap": "6rem",
|
|
1272
|
+
"--color-ansi-blue-bright": "#218bff",
|
|
1273
|
+
"--brand-Eyebrowbanner-heading-fgColor": "#000",
|
|
1274
|
+
"--contribution-halloween-bgColor-4": "#1f2328",
|
|
1275
|
+
"--brand-controlStack-small-gap-spacious": "1rem",
|
|
1276
|
+
"--brand-animation-easing-glide": "cubic-bezier(.33, 1, .68, 1)",
|
|
1277
|
+
"--display-auburn-scale-5": "#9d615c",
|
|
1278
|
+
"--easing-easeInOut": "cubic-bezier(.65,0,.35,1)",
|
|
1279
|
+
"--display-lemon-scale-7": "#654f01",
|
|
1280
|
+
"--brand-Eyebrowbanner-icon-background-yellow": "#fff8c5",
|
|
1281
|
+
"--buttonKeybindingHint-inactive-fgColor": "#59636e",
|
|
1282
|
+
"--label-brown-bgColor-hover": "#dfd7c8",
|
|
1283
|
+
"--display-gray-scale-3": "#9ba9bb",
|
|
1284
|
+
"--base-color-scale-lemon-3": "#e1c50f",
|
|
1285
|
+
"--label-gray-borderColor": "#fff0",
|
|
1286
|
+
"--label-blue-fgColor-active": "#003d99",
|
|
1287
|
+
"--base-duration-200": ".2s",
|
|
1288
|
+
"--base-color-scale-orange-2": "#f4a876",
|
|
1289
|
+
"--brand-borderRadius-large": "1rem",
|
|
1290
|
+
"--display-pink-scale-7": "#8e2e66",
|
|
1291
|
+
"--brand-RiverAccordion-variant-gridline-spacing-contentGap": "4rem",
|
|
1292
|
+
"--base-color-scale-coral-2": "#ffa387",
|
|
1293
|
+
"--base-color-scale-gray-6": "#77827a",
|
|
1294
|
+
"--label-green-bgColor-active": "#54d961",
|
|
1295
|
+
"--brand-IDE-glass-bgColor-rest": "#ffffffd9",
|
|
1296
|
+
"--brand-Label-color-default": "#000",
|
|
1297
|
+
"--display-plum-scale-7": "#7d1eb8",
|
|
1298
|
+
"--brand-Testimonial-borderMask-default": "linear-gradient(180deg, #0009, #0000004d)",
|
|
1299
|
+
"--brand-Label-color-pink": "#ef2aa4",
|
|
1300
|
+
"--data-lemon-color-muted": "#f7eea1",
|
|
1301
|
+
"--control-xsmall-size": "1.5rem",
|
|
1302
|
+
"--brand-Link-color-default": "#000",
|
|
1303
|
+
"--brand-borderRadius-medium": ".5rem",
|
|
1304
|
+
"--label-yellow-bgColor-rest": "#ffec9e",
|
|
1305
|
+
"--display-indigo-scale-7": "#393cd5",
|
|
1306
|
+
"--brand-LogoSuite-color-logo-filter-emphasis": "brightness(0) saturate(100%) invert(12%) sepia(20%) saturate(450%) hue-rotate(172deg) brightness(100%) contrast(91%)",
|
|
1307
|
+
"--breakpoint-xxlarge": "87.5rem",
|
|
1308
|
+
"--brand-button-secondary-borderColor-active": "#0d111752",
|
|
1309
|
+
"--control-xlarge-paddingInline-condensed": ".5rem",
|
|
1310
|
+
"--control-borderColor-warning": "#9a6700",
|
|
1311
|
+
"--base-color-scale-lemon-1": "#f5e36b",
|
|
1312
|
+
"--fgColor-danger": "#d1242f",
|
|
1313
|
+
"--brand-Testimonial-quoteMarkColor-green-blue-start": "#08872b",
|
|
1314
|
+
"--display-indigo-scale-5": "#5a61e7",
|
|
1315
|
+
"--display-olive-scale-4": "#819532",
|
|
1316
|
+
"--counter-borderColor": "#fff0",
|
|
1317
|
+
"--brand-Bento-content-padding-spacious": "3.5rem",
|
|
1318
|
+
"--brand-fontStack-sansSerifAlt": "\"Hubot Sans\", \"Hubot SansHeaderFallback\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1319
|
+
"--brand-Eyebrowbanner-fgColor-gray": "#96a199",
|
|
1320
|
+
"--controlTrack-bgColor-active": "#dae0e7",
|
|
1321
|
+
"--brand-borderRadius-full": "624.938rem",
|
|
1322
|
+
"--brand-borderRadius-xlarge": "1.5rem",
|
|
1323
|
+
"--brand-IDE-default-editor-tabs-bgColor": "#f2f5f3",
|
|
1324
|
+
"--overlay-width-medium": "30rem",
|
|
1325
|
+
"--brand-animation-variant-scaleInUp-start": ".96",
|
|
1326
|
+
"--display-plum-bgColor-muted": "#f8e5ff",
|
|
1327
|
+
"--buttonKeybindingHint-primary-bgColor-rest": "#002d1133",
|
|
1328
|
+
"--brand-River-spacing-inner": "1.5rem",
|
|
1329
|
+
"--display-blue-scale-2": "#75c8ff",
|
|
1330
|
+
"--button-invisible-bgColor-rest": "#fff0",
|
|
1331
|
+
"--display-gray-scale-0": "#e8ecf2",
|
|
1332
|
+
"--overlay-width-xsmall": "12rem",
|
|
1333
|
+
"--fgColor-severe": "#bc4c00",
|
|
1334
|
+
"--control-transparent-borderColor-active": "#fff0",
|
|
1335
|
+
"--button-danger-fgColor-disabled": "#d1242f80",
|
|
1336
|
+
"--zIndex-dropdown": "200",
|
|
1337
|
+
"--brand-text-lineHeight-1000": "1.08",
|
|
1338
|
+
"--brand-SubdomainNavBar-canvas-search": "#fff",
|
|
1339
|
+
"--base-color-scale-lemon-8": "#413200",
|
|
1340
|
+
"--base-color-scale-gray-9": "#191f1b",
|
|
1341
|
+
"--data-brown-color-muted": "#eeeae2",
|
|
1342
|
+
"--display-coral-scale-9": "#5d180e",
|
|
1343
|
+
"--color-user-mention-fg": "#1f2328",
|
|
1344
|
+
"--button-primary-bgColor-rest": "#1f883d",
|
|
1345
|
+
"--brand-Accordion-toggle-color-coral": "#e13f1b",
|
|
1346
|
+
"--brand-control-radio-dot-default": "#000",
|
|
1347
|
+
"--brand-Token-fgColor-default": "#000",
|
|
1348
|
+
"--brand-text-lineHeight-350": "1.5",
|
|
1349
|
+
"--base-zIndex-500": "500",
|
|
1350
|
+
"--display-brown-fgColor": "#755f43",
|
|
1351
|
+
"--display-pine-bgColor-muted": "#bff8db",
|
|
1352
|
+
"--brand-EyebrowBanner-subHeading-size": "1rem",
|
|
1353
|
+
"--progressBar-bgColor-danger": "#cf222e",
|
|
1354
|
+
"--brand-RiverStoryScroll-content-inactive-bgColor": "#fff",
|
|
1355
|
+
"--brand-heading-weight-500": "480",
|
|
1356
|
+
"--brand-Icon-background-gray": "#f2f5f3",
|
|
1357
|
+
"--label-pine-bgColor-active": "#1dd781",
|
|
1358
|
+
"--brand-Accordion-toggle-color-pink-blue-end": "#0377ff",
|
|
1359
|
+
"--label-pink-bgColor-rest": "#ffe5f1",
|
|
1360
|
+
"--base-size-64": "4rem",
|
|
1361
|
+
"--brand-Hero-regular-padding": "8rem 0",
|
|
1362
|
+
"--control-medium-paddingInline-spacious": "1rem",
|
|
1363
|
+
"--brand-LogoSuite-logobar-rowGap": "2.5rem",
|
|
1364
|
+
"--base-color-scale-indigo-6": "#2d3dd7",
|
|
1365
|
+
"--control-small-paddingInline-normal": ".75rem",
|
|
1366
|
+
"--base-size-48": "3rem",
|
|
1367
|
+
"--zIndex-overlay": "300",
|
|
1368
|
+
"--brand-Testimonial-quote-color-emphasis": "#1a7f37",
|
|
1369
|
+
"--base-color-scale-blue-3": "#5fb9ff",
|
|
1370
|
+
"--brand-animation-variant-scaleIn-end": "1",
|
|
1371
|
+
"--label-auburn-bgColor-active": "#d4b7b5",
|
|
1372
|
+
"--display-red-scale-8": "#880c27",
|
|
1373
|
+
"--brand-Pillar-icon-color-orange": "#b85b06",
|
|
1374
|
+
"--brand-Accordion-toggle-color-purple-red-end": "#cf2230",
|
|
1375
|
+
"--text-body-lineHeight-small": "1.625",
|
|
1376
|
+
"--overlay-offset": ".25rem",
|
|
1377
|
+
"--display-lemon-bgColor-muted": "#f7eea1",
|
|
1378
|
+
"--brand-Icon-background-orange": "#fff1e5",
|
|
1379
|
+
"--brand-Eyebrowbanner-fgColor-lemon": "#a98906",
|
|
1380
|
+
"--buttonCounter-outline-fgColor-disabled": "#0969da80",
|
|
1381
|
+
"--underlineNav-iconColor-rest": "#59636e",
|
|
1382
|
+
"--display-cyan-scale-8": "#004857",
|
|
1383
|
+
"--brand-animation-variant-scaleInLeft-distance": "1.25rem",
|
|
1384
|
+
"--base-color-scale-orange-4": "#da7210",
|
|
1385
|
+
"--base-color-scale-lemon-4": "#c7a60b",
|
|
1386
|
+
"--label-cyan-fgColor-rest": "#006a80",
|
|
1387
|
+
"--button-primary-bgColor-disabled": "#95d8a6",
|
|
1388
|
+
"--brand-Section-padding-normal": "6rem",
|
|
1389
|
+
"--buttonKeybindingHint-default-bgColor-rest": "#eff2f5",
|
|
1390
|
+
"--bgColor-attention-muted": "#fff8c5",
|
|
1391
|
+
"--brand-text-subhead-lineHeight-large": "1.3",
|
|
1392
|
+
"--control-borderColor-success": "#1a7f37",
|
|
1393
|
+
"--reactionButton-selected-bgColor-rest": "#ddf4ff",
|
|
1394
|
+
"--brand-Eyebrowbanner-icon-background-blue": "#ddf4ff",
|
|
1395
|
+
"--display-cyan-scale-5": "#007b94",
|
|
1396
|
+
"--display-yellow-borderColor-muted": "#ffd642",
|
|
1397
|
+
"--diffBlob-deletionLine-fgColor": "#1f2328",
|
|
1398
|
+
"--brand-animation-easing-default": "cubic-bezier(.16, 1, .3, 1)",
|
|
1399
|
+
"--text-title-size-small": "1rem",
|
|
1400
|
+
"--brand-Accordion-border-color-default": "#e4ebe6",
|
|
1401
|
+
"--button-danger-bgColor-rest": "#f6f8fa",
|
|
1402
|
+
"--data-purple-color-emphasis": "#894ceb",
|
|
1403
|
+
"--display-indigo-scale-6": "#494edf",
|
|
1404
|
+
"--base-color-scale-orange-0": "#fff1e5",
|
|
1405
|
+
"--tab-size-preference": "4",
|
|
1406
|
+
"--borderColor-severe-emphasis": "#bc4c00",
|
|
1407
|
+
"--brand-Testimonial-quoteMarkBackground-pink-blue": "#fff0fc",
|
|
1408
|
+
"--brand-animation-duration-faster": ".2s",
|
|
1409
|
+
"--codeMirror-gutterMarker-fgColor-default": "#fff",
|
|
1410
|
+
"--base-color-scale-green-7": "#0d6731",
|
|
1411
|
+
"--borderColor-neutral-muted": "#d1d9e0b3",
|
|
1412
|
+
"--display-teal-bgColor-muted": "#c7f5ef",
|
|
1413
|
+
"--fgColor-upsell": "#8250df",
|
|
1414
|
+
"--brand-Label-color-red": "#cf2230",
|
|
1415
|
+
"--brand-control-checkbox-bg-indeterminate": "#000",
|
|
1416
|
+
"--brand-control-color-border-disabled": "#d2d9d4",
|
|
1417
|
+
"--brand-RiverStoryScroll-pagination-fgColor": "#77827a",
|
|
1418
|
+
"--display-blue-borderColor-muted": "#ade1ff",
|
|
1419
|
+
"--Layout-pane-width": "220px",
|
|
1420
|
+
"--display-green-scale-9": "#1d3528",
|
|
1421
|
+
"--display-yellow-bgColor-emphasis": "#946a00",
|
|
1422
|
+
"--brand-SubdomainNavBar-canvas-overflow-default": "#fff",
|
|
1423
|
+
"--brand-color-canvas-muted": "#fafafa",
|
|
1424
|
+
"--display-lemon-scale-6": "#786002",
|
|
1425
|
+
"--brand-fontStack-system": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1426
|
+
"--brand-button-primary-shadow-active": "inset 0px 1px 0px 0px #353d37",
|
|
1427
|
+
"--base-color-scale-lime-0": "#f3fec8",
|
|
1428
|
+
"--brand-Label-color-blue-purple-start": "#0377ff",
|
|
1429
|
+
"--controlTrack-fgColor-disabled": "#fff",
|
|
1430
|
+
"--underlineNav-borderColor-hover": "#d1d9e0b3",
|
|
1431
|
+
"--color-ansi-green": "#116329",
|
|
1432
|
+
"--data-brown-color-emphasis": "#856d4c",
|
|
1433
|
+
"--display-pine-scale-4": "#1aa267",
|
|
1434
|
+
"--brand-EyebrowBanner-spacing-inner-block": ".875rem",
|
|
1435
|
+
"--brand-Label-color-coral": "#e13f1b",
|
|
1436
|
+
"--display-orange-scale-4": "#eb670f",
|
|
1437
|
+
"--base-color-scale-gray-8": "#353d37",
|
|
1438
|
+
"--display-auburn-scale-9": "#432928",
|
|
1439
|
+
"--label-green-fgColor-rest": "#2b6e3f",
|
|
1440
|
+
"--fgColor-disabled": "#818b98",
|
|
1441
|
+
"--color-prettylights-syntax-invalid-illegal-bg": "#ffebe9",
|
|
1442
|
+
"--contribution-winter-bgColor-2": "#54aeff",
|
|
1443
|
+
"--control-transparent-bgColor-rest": "#fff0",
|
|
1444
|
+
"--label-plum-bgColor-active": "#e2a7fb",
|
|
1445
|
+
"--color-prettylights-syntax-entity-tag": "#0550ae",
|
|
1446
|
+
"--brand-button-primary-fgColor-disabled": "#d2d9d4",
|
|
1447
|
+
"--buttonKeybindingHint-invisible-bgColor-rest": "#eff2f5",
|
|
1448
|
+
"--brand-FAQ-color-heading": "#000",
|
|
1449
|
+
"--base-color-scale-yellow-5": "#be7d00",
|
|
1450
|
+
"--base-duration-0": "0s",
|
|
1451
|
+
"--display-plum-borderColor-emphasis": "#a830e8",
|
|
1452
|
+
"--control-checked-bgColor-hover": "#0860ca",
|
|
1453
|
+
"--base-color-scale-purple-8": "#26115f",
|
|
1454
|
+
"--text-codeInline-weight": "400",
|
|
1455
|
+
"--display-pine-borderColor-emphasis": "#167e53",
|
|
1456
|
+
"--label-cyan-fgColor-active": "#004857",
|
|
1457
|
+
"--button-default-borderColor-hover": "#d1d9e0",
|
|
1458
|
+
"--base-color-scale-purple-6": "#6619e1",
|
|
1459
|
+
"--display-yellow-scale-8": "#5c3d00",
|
|
1460
|
+
"--display-pink-scale-0": "#ffe5f1",
|
|
1461
|
+
"--brand-Eyebrowbanner-fgColor-default-middle": "#ef2aa4",
|
|
1462
|
+
"--brand-control-medium-size": "3rem",
|
|
1463
|
+
"--display-orange-scale-0": "#ffe7d1",
|
|
1464
|
+
"--brand-text-size-200": "1rem",
|
|
1465
|
+
"--brand-Icon-background-lemon": "#fdf5b3",
|
|
1466
|
+
"--label-yellow-bgColor-hover": "#ffd642",
|
|
1467
|
+
"--brand-Pillar-icon-color-indigo": "#4956e5",
|
|
1468
|
+
"--brand-Testimonial-quoteMarkBackground-purple": "#f0e5ff",
|
|
1469
|
+
"--base-color-scale-indigo-5": "#4956e5",
|
|
1470
|
+
"--display-yellow-scale-0": "#ffec9e",
|
|
1471
|
+
"--control-bgColor-disabled": "#eff2f5",
|
|
1472
|
+
"--display-lime-scale-9": "#213319",
|
|
1473
|
+
"--brand-Accordion-toggle-color-blue-purple-end": "#8534f3",
|
|
1474
|
+
"--bgColor-upsell-emphasis": "#8250df",
|
|
1475
|
+
"--label-green-borderColor": "#fff0",
|
|
1476
|
+
"--display-green-fgColor": "#2b6e3f",
|
|
1477
|
+
"--brand-Eyebrowbanner-fgColor-lime": "#92c219",
|
|
1478
|
+
"--brand-button-primary-bgColor-disabled": "#b6bfb8",
|
|
1479
|
+
"--buttonKeybindingHint-invisible-bgColor-hover": "#818b981a",
|
|
1480
|
+
"--base-text-weight-light": "300",
|
|
1481
|
+
"--selectMenu-borderColor": "#fff0",
|
|
1482
|
+
"--controlKnob-borderColor-checked": "#0969da",
|
|
1483
|
+
"--brand-Eyebrowbanner-fgColor-red-orange-end": "#b85b06",
|
|
1484
|
+
"--button-primary-fgColor-disabled": "#fffc",
|
|
1485
|
+
"--brand-videoPlayer-title-bgColor": "linear-gradient(180deg, #000000e6, #00000073 66%, transparent)",
|
|
1486
|
+
"--base-zIndex-200": "200",
|
|
1487
|
+
"--Layout-column-gap": "1rem",
|
|
1488
|
+
"--bgColor-inset": "#f6f8fa",
|
|
1489
|
+
"--display-olive-fgColor": "#56682c",
|
|
1490
|
+
"--brand-text-size-300": "1.125rem",
|
|
1491
|
+
"--display-olive-scale-7": "#495a2b",
|
|
1492
|
+
"--brand-heading-letterSpacing-700": "0",
|
|
1493
|
+
"--button-outline-fgColor-active": "#fff",
|
|
1494
|
+
"--brand-Testimonial-quoteMarkColor-purple": "#8534f3",
|
|
1495
|
+
"--borderColor-translucent": "#1f232826",
|
|
1496
|
+
"--base-color-scale-lemon-9": "#322400",
|
|
1497
|
+
"--display-auburn-bgColor-muted": "#f2e9e9",
|
|
1498
|
+
"--header-bgColor": "#25292e",
|
|
1499
|
+
"--base-color-scale-purple-0": "#f0e5ff",
|
|
1500
|
+
"--brand-control-checkbox-bg-checked": "#000",
|
|
1501
|
+
"--brand-text-weight-100": "400",
|
|
1502
|
+
"--brand-text-letterSpacing-200": ".24px",
|
|
1503
|
+
"--bgColor-sponsors-emphasis": "#bf3989",
|
|
1504
|
+
"--base-color-scale-gray-0": "#f2f5f3",
|
|
1505
|
+
"--brand-SubdomainNavBar-border-nav-default": "#191f1b",
|
|
1506
|
+
"--base-size-96": "6rem",
|
|
1507
|
+
"--color-prettylights-syntax-markup-heading": "#0550ae",
|
|
1508
|
+
"--brand-controlStack-medium-gap-condensed": ".5rem",
|
|
1509
|
+
"--header-fgColor-logo": "#fff",
|
|
1510
|
+
"--display-pine-scale-9": "#0d3627",
|
|
1511
|
+
"--controlKnob-bgColor-disabled": "#eff2f5",
|
|
1512
|
+
"--lightningcss-light": "",
|
|
1513
|
+
"--display-orange-bgColor-muted": "#ffe7d1",
|
|
1514
|
+
"--border-done-muted": ".0625rem solid #c297ff66",
|
|
1515
|
+
"--brand-text-style-italic-3": "\"ital\" 3",
|
|
1516
|
+
"--display-plum-scale-9": "#471769",
|
|
1517
|
+
"--brand-videoPlayer-closedCaption-fgColor-enabled": "#000",
|
|
1518
|
+
"--brand-text-letterSpacing-900": "0",
|
|
1519
|
+
"--base-color-scale-green-2": "#8cf2a6",
|
|
1520
|
+
"--progressBar-bgColor-done": "#8250df",
|
|
1521
|
+
"--label-gray-bgColor-active": "#b4c0cf",
|
|
1522
|
+
"--codeMirror-syntax-fgColor-entity": "#8250df",
|
|
1523
|
+
"--display-olive-borderColor-muted": "#dbe170",
|
|
1524
|
+
"--label-lime-borderColor": "#fff0",
|
|
1525
|
+
"--diffBlob-deletionWord-fgColor": "#1f2328",
|
|
1526
|
+
"--brand-FAQ-maxWidth-list": "51rem",
|
|
1527
|
+
"--display-coral-scale-3": "#f88768",
|
|
1528
|
+
"--display-purple-scale-1": "#e6d2fe",
|
|
1529
|
+
"--base-color-scale-orange-6": "#954502",
|
|
1530
|
+
"--borderColor-open-muted": "#4ac26b66",
|
|
1531
|
+
"--button-invisible-fgColor-rest": "#25292e",
|
|
1532
|
+
"--border-neutral-muted": ".0625rem solid #d1d9e0b3",
|
|
1533
|
+
"--brand-borderInset-thicker": "inset 0 0 0 max(4px, .25rem)",
|
|
1534
|
+
"--display-teal-scale-8": "#0a4852",
|
|
1535
|
+
"--borderColor-draft-emphasis": "#59636e",
|
|
1536
|
+
"--brand-Prose-unorderedList-imageUrl": "url(\"data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 aria-hidden=%27true%27 focusable=%27false%27 role=%27img%27 viewBox=%270 -3 16 16%27 width=%2716%27 height=%2716%27 fill=%27black%27 style=%27display: inline-block; vertical-align: text-bottom; overflow: visible;%27%3e%3cpath d=%27M2 7.75A.75.75 0 0 1 2.75 7h10a.75.75 0 0 1 0 1.5h-10A.75.75 0 0 1 2 7.75Z%27%3e%3c/path%3e%3c/svg%3e\")",
|
|
1537
|
+
"--brand-button-accent-bgColor-rest": "#08872b",
|
|
1538
|
+
"--label-red-bgColor-active": "#fda5a7",
|
|
1539
|
+
"--display-brown-scale-0": "#eeeae2",
|
|
1540
|
+
"--display-blue-borderColor-emphasis": "#006edb",
|
|
1541
|
+
"--label-auburn-fgColor-hover": "#744744",
|
|
1542
|
+
"--brand-control-checkbox-border-default": "#b6bfb8",
|
|
1543
|
+
"--display-purple-fgColor": "#783ae4",
|
|
1544
|
+
"--buttonCounter-danger-bgColor-disabled": "#cf222e0d",
|
|
1545
|
+
"--base-size-2": ".125rem",
|
|
1546
|
+
"--controlStack-medium-gap-spacious": ".75rem",
|
|
1547
|
+
"--buttonKeybindingHint-invisible-borderColor-rest": "#fff0",
|
|
1548
|
+
"--display-coral-borderColor-muted": "#fecebe",
|
|
1549
|
+
"--border-draft-muted": ".0625rem solid #d1d9e0b3",
|
|
1550
|
+
"--button-default-fgColor-disabled": "#818b98",
|
|
1551
|
+
"--progressBar-bgColor-sponsors": "#bf3989",
|
|
1552
|
+
"--bgColor-closed-emphasis": "#cf222e",
|
|
1553
|
+
"--controlTrack-bgColor-hover": "#e0e6eb",
|
|
1554
|
+
"--display-purple-borderColor-muted": "#e6d2fe",
|
|
1555
|
+
"--border-emphasis": ".0625rem solid #818b98",
|
|
1556
|
+
"--brand-Label-color-pink-blue-start": "#ef2aa4",
|
|
1557
|
+
"--brand-Testimonial-quoteMarkColor-blue": "#0377ff",
|
|
1558
|
+
"--brand-Testimonial-quoteMarkBackground-blue": "#ddf4ff",
|
|
1559
|
+
"--display-cyan-borderColor-emphasis": "#007b94",
|
|
1560
|
+
"--base-color-scale-red-4": "#fa4549",
|
|
1561
|
+
"--brand-Icon-color-teal": "#197b7b",
|
|
1562
|
+
"--brand-Card-animation-duration": ".4s",
|
|
1563
|
+
"--label-teal-fgColor-rest": "#106e75",
|
|
1564
|
+
"--brand-Pillar-icon-color-gray": "#77827a",
|
|
1565
|
+
"--brand-Testimonial-quote-fontWeight-large": "460",
|
|
1566
|
+
"--button-default-borderColor-active": "#d1d9e0",
|
|
1567
|
+
"--brand-button-secondary-borderColor-rest": "#0d111729",
|
|
1568
|
+
"--display-pink-borderColor-emphasis": "#ce2c85",
|
|
1569
|
+
"--brand-Bento-content-padding-normal": "1.5rem",
|
|
1570
|
+
"--base-color-scale-indigo-7": "#262dae",
|
|
1571
|
+
"--control-transparent-bgColor-hover": "#818b981a",
|
|
1572
|
+
"--display-green-scale-7": "#285c3b",
|
|
1573
|
+
"--brand-control-color-border-default": "#b6bfb8",
|
|
1574
|
+
"--brand-color-canvas-subtle": "#f2f5f3",
|
|
1575
|
+
"--brand-button-accent-fgColor-disabled": "#d2d9d4",
|
|
1576
|
+
"--label-gray-fgColor-active": "#424448",
|
|
1577
|
+
"--brand-text-style-italic-10": "\"ital\" 10",
|
|
1578
|
+
"--shadow-floating-medium": "0 0 0 1px #d1d9e000, 0 8px 16px -4px #25292e14, 0 4px 32px -4px #25292e14, 0 24px 48px -12px #25292e14, 0 48px 96px -24px #25292e14",
|
|
1579
|
+
"--control-danger-fgColor-rest": "#d1242f",
|
|
1580
|
+
"--brand-Bento-content-padding-condensed": "1rem",
|
|
1581
|
+
"--brand-heading-letterSpacing-500": "0",
|
|
1582
|
+
"--label-brown-borderColor": "#fff0",
|
|
1583
|
+
"--overlay-height-xlarge": "37.5rem",
|
|
1584
|
+
"--display-auburn-scale-2": "#d4b7b5",
|
|
1585
|
+
"--control-small-paddingInline-spacious": "1rem",
|
|
1586
|
+
"--brand-text-weight-900": "400",
|
|
1587
|
+
"--border-disabled": ".0625rem solid #818b981a",
|
|
1588
|
+
"--brand-Testimonial-quoteMarkColor-pink-blue-start": "#ef2aa4",
|
|
1589
|
+
"--display-yellow-scale-2": "#ebb400",
|
|
1590
|
+
"--avatar-borderColor": "#1f232826",
|
|
1591
|
+
"--brand-animation-variant-scaleInDown-start": "0",
|
|
1592
|
+
"--brand-Label-color-green": "#08872b",
|
|
1593
|
+
"--text-codeBlock-shorthand": "400 .8125rem / 1.5 ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace",
|
|
1594
|
+
"--brand-InlineLink-color-rest": "#005dd5",
|
|
1595
|
+
"--control-borderColor-rest": "#d1d9e0",
|
|
1596
|
+
"--brand-Tabs-item-accent-fgColor-rest": "#fff",
|
|
1597
|
+
"--display-blue-scale-5": "#006edb",
|
|
1598
|
+
"--data-lemon-color-emphasis": "#866e04",
|
|
1599
|
+
"--label-yellow-fgColor-active": "#5c3d00",
|
|
1600
|
+
"--brand-LogoSuite-logobar-marquee-gap-default": "6rem",
|
|
1601
|
+
"--display-red-scale-2": "#fda5a7",
|
|
1602
|
+
"--brand-color-success-emphasis": "#0fbf3e",
|
|
1603
|
+
"--display-auburn-scale-0": "#f2e9e9",
|
|
1604
|
+
"--display-red-scale-7": "#a60c29",
|
|
1605
|
+
"--base-easing-easeIn": "cubic-bezier(.7, .1, .75, .9)",
|
|
1606
|
+
"--base-color-scale-lemon-7": "#614d01",
|
|
1607
|
+
"--text-title-lineHeight-small": "1.5",
|
|
1608
|
+
"--brand-text-style-italic-7": "\"ital\" 7",
|
|
1609
|
+
"--brand-Card-animation-easing": "cubic-bezier(.01, .73, .08, .93)",
|
|
1610
|
+
"--control-small-size": "1.75rem",
|
|
1611
|
+
"--label-green-fgColor-hover": "#285c3b",
|
|
1612
|
+
"--brand-SubdomainNavBar-fg-overflow-default": "#000",
|
|
1613
|
+
"--brand-Eyebrowbanner-fgColor-blue-purple-start": "#0377ff",
|
|
1614
|
+
"--label-olive-fgColor-active": "#3b4927",
|
|
1615
|
+
"--color-prettylights-syntax-comment": "#59636e",
|
|
1616
|
+
"--button-outline-bgColor-disabled": "#eff2f5",
|
|
1617
|
+
"--base-color-scale-green-5": "#0fbf3e",
|
|
1618
|
+
"--base-zIndex-300": "300",
|
|
1619
|
+
"--brand-color-neutral-subtle": "#e4ebe6fe",
|
|
1620
|
+
"--brand-animation-variant-scaleInRight-start": ".9",
|
|
1621
|
+
"--control-borderColor-emphasis": "#818b98",
|
|
1622
|
+
"--brand-Statistic-spacing-normal": "1.5rem",
|
|
1623
|
+
"--label-yellow-fgColor-hover": "#704d00",
|
|
1624
|
+
"--control-large-paddingInline-condensed": ".5rem",
|
|
1625
|
+
"--reactionButton-selected-fgColor-hover": "#0550ae",
|
|
1626
|
+
"--control-transparent-borderColor-rest": "#fff0",
|
|
1627
|
+
"--brand-button-primary-bgColor-active": "#353d37",
|
|
1628
|
+
"--display-coral-scale-8": "#7e2011",
|
|
1629
|
+
"--brand-heading-lineHeight-900": "1",
|
|
1630
|
+
"--button-danger-bgColor-disabled": "#eff2f5",
|
|
1631
|
+
"--control-xsmall-paddingInline-spacious": ".75rem",
|
|
1632
|
+
"--bgColor-danger-emphasis": "#cf222e",
|
|
1633
|
+
"--brand-Card-background-overlay": "#f2f5f333",
|
|
1634
|
+
"--display-purple-scale-0": "#f1e5ff",
|
|
1635
|
+
"--brand-Icon-background-indigo": "#eff2ff",
|
|
1636
|
+
"--brand-IDE-glass-chat-bgColor": "#ffffff0f",
|
|
1637
|
+
"--h0-size": "2.5rem",
|
|
1638
|
+
"--display-blue-scale-9": "#002b75",
|
|
1639
|
+
"--brand-text-subhead-size-large": "1.25rem",
|
|
1640
|
+
"--brand-animation-variant-scaleInUp-distance": "1.5rem",
|
|
1641
|
+
"--brand-Testimonial-quoteMarkColor-lime": "#92c219",
|
|
1642
|
+
"--brand-text-letterSpacing-400": "0",
|
|
1643
|
+
"--label-orange-fgColor-active": "#70300f",
|
|
1644
|
+
"--borderColor-neutral-emphasis": "#59636e",
|
|
1645
|
+
"--display-lime-scale-5": "#527a29",
|
|
1646
|
+
"--control-checked-borderColor-rest": "#0969da",
|
|
1647
|
+
"--brand-Timeline-line-color": "#b6bfb8",
|
|
1648
|
+
"--color-project-header-bg": "#24292f",
|
|
1649
|
+
"--brand-text-weight-extrabold": "543",
|
|
1650
|
+
"--control-fgColor-rest": "#25292e",
|
|
1651
|
+
"--Layout-content-width": "100%",
|
|
1652
|
+
"--base-color-scale-coral-4": "#fe4c25",
|
|
1653
|
+
"--color-ansi-gray": "#59636e",
|
|
1654
|
+
"--brand-color-error-subtle": "#ffebe9",
|
|
1655
|
+
"--shadow-resting-small": "0 1px 1px 0 #1f23280a, 0 1px 2px 0 #1f232808",
|
|
1656
|
+
"--brand-button-secondary-fgColor-disabled": "#c4ccc6",
|
|
1657
|
+
"--color-ansi-white": "#59636e",
|
|
1658
|
+
"--h5-size": ".875rem",
|
|
1659
|
+
"--borderRadius-small": ".1875rem",
|
|
1660
|
+
"--brand-button-primary-bgColor-hover": "#353d37",
|
|
1661
|
+
"--brand-Icon-color-pink": "#ef2aa4",
|
|
1662
|
+
"--stack-padding-condensed": ".5rem",
|
|
1663
|
+
"--label-blue-bgColor-hover": "#ade1ff",
|
|
1664
|
+
"--brand-button-subtle-bgColor-active": "#0d111712",
|
|
1665
|
+
"--data-coral-color-emphasis": "#d43511",
|
|
1666
|
+
"--base-text-size-xl": "2rem",
|
|
1667
|
+
"--base-size-negative-36": "-2.25rem",
|
|
1668
|
+
"--label-purple-bgColor-rest": "#f1e5ff",
|
|
1669
|
+
"--label-lime-bgColor-hover": "#c7e580",
|
|
1670
|
+
"--control-xsmall-paddingInline-normal": ".5rem",
|
|
1671
|
+
"--display-indigo-bgColor-emphasis": "#5a61e7",
|
|
1672
|
+
"--display-pink-scale-2": "#f8a5cf",
|
|
1673
|
+
"--brand-Eyebrowbanner-fgColor-purple-red-start": "#8534f3",
|
|
1674
|
+
"--brand-control-small-gap": ".5rem",
|
|
1675
|
+
"--brand-text-size-1000": "4rem",
|
|
1676
|
+
"--brand-SubdomainNavBar-canvas-default": "#ffffff80",
|
|
1677
|
+
"--brand-color-error-emphasis": "#cf2230",
|
|
1678
|
+
"--text-body-shorthand-large": "400 1rem / 1.5 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1679
|
+
"--brand-Tabs-container-padding": ".25rem",
|
|
1680
|
+
"--brand-Eyebrowbanner-bgColor-rest": "#fff9",
|
|
1681
|
+
"--display-lemon-scale-1": "#f0db3d",
|
|
1682
|
+
"--brand-AnchorNav-link-underline-default": "#b6bfb8",
|
|
1683
|
+
"--brand-Bento-gap-small": "1.25rem",
|
|
1684
|
+
"--controlStack-small-gap-spacious": "1rem",
|
|
1685
|
+
"--h2-size": "1.5rem",
|
|
1686
|
+
"--overlay-borderRadius": ".375rem",
|
|
1687
|
+
"--base-color-scale-indigo-0": "#eff2ff",
|
|
1688
|
+
"--brand-animation-variant-slideInRight-distance": "-.9375rem",
|
|
1689
|
+
"--text-body-lineHeight-large": "1.5",
|
|
1690
|
+
"--brand-Testimonial-quoteMarkColor-purple-red-end": "#cf2230",
|
|
1691
|
+
"--text-display-lineHeight": "1.375",
|
|
1692
|
+
"--text-display-shorthand": "500 2.5rem / 1.375 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1693
|
+
"--buttonKeybindingHint-default-borderColor-disabled": "#818b981a",
|
|
1694
|
+
"--brand-Token-bgColor-outline": "transparent",
|
|
1695
|
+
"--borderColor-danger-muted": "#ff818266",
|
|
1696
|
+
"--brand-LogoSuite-logobar-columnGap-condensed": "2.5rem",
|
|
1697
|
+
"--bgColor-upsell-muted": "#fbefff",
|
|
1698
|
+
"--text-codeBlock-lineHeight": "1.5",
|
|
1699
|
+
"--base-duration-800": ".8s",
|
|
1700
|
+
"--brand-heading-lineHeight-600": "1.2",
|
|
1701
|
+
"--label-lemon-fgColor-hover": "#654f01",
|
|
1702
|
+
"--display-gray-scale-4": "#808fa3",
|
|
1703
|
+
"--brand-LogoSuite-logobar-columnGap-default": "5rem",
|
|
1704
|
+
"--borderColor-accent-emphasis": "#0969da",
|
|
1705
|
+
"--brand-Bento-gap-large": "2rem",
|
|
1706
|
+
"--base-text-lineHeight-snug": "1.375",
|
|
1707
|
+
"--border-draft-emphasis": ".0625rem solid #59636e",
|
|
1708
|
+
"--brand-fontStack-sansSerif": "\"Mona Sans\", \"MonaSansFallback\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1709
|
+
"--brand-PricingOptions-items4-container-padding-inline": "1.5rem",
|
|
1710
|
+
"--buttonCounter-invisible-bgColor-rest": "#818b981f",
|
|
1711
|
+
"--color-ansi-black-bright": "#393f46",
|
|
1712
|
+
"--shadow-resting-medium": "0 1px 1px 0 #25292e1a, 0 3px 6px 0 #25292e1f",
|
|
1713
|
+
"--brand-button-primary-borderColor-disabled": "#b6bfb8",
|
|
1714
|
+
"--brand-Token-bgColor-accent": "#08872b",
|
|
1715
|
+
"--base-color-scale-coral-6": "#c53211",
|
|
1716
|
+
"--display-pine-scale-0": "#bff8db",
|
|
1717
|
+
"--brand-SubNav-color-link-active": "#000",
|
|
1718
|
+
"--display-lime-scale-0": "#e3f2b5",
|
|
1719
|
+
"--progressBar-bgColor-success": "#1f883d",
|
|
1720
|
+
"--control-checked-bgColor-disabled": "#818b98",
|
|
1721
|
+
"--brand-Icon-background-teal": "#daf9f5",
|
|
1722
|
+
"--base-text-size-sm": ".875rem",
|
|
1723
|
+
"--brand-Testimonial-quoteMarkColor-lemon": "#a98906",
|
|
1724
|
+
"--brand-heading-weight-600": "460",
|
|
1725
|
+
"--bgColor-default": "#fff",
|
|
1726
|
+
"--control-checked-fgColor-disabled": "#fff",
|
|
1727
|
+
"--brand-text-letterSpacing-600": "0",
|
|
1728
|
+
"--base-color-scale-yellow-4": "#db9d00",
|
|
1729
|
+
"--borderColor-closed-muted": "#ff818266",
|
|
1730
|
+
"--base-size-negative-24": "-1.5rem",
|
|
1731
|
+
"--brand-text-weight-400": "400",
|
|
1732
|
+
"--color-ansi-yellow": "#4d2d00",
|
|
1733
|
+
"--brand-Icon-color-green": "#08872b",
|
|
1734
|
+
"--label-gray-fgColor-rest": "#5c6570",
|
|
1735
|
+
"--focus-outline-offset": "-.125rem",
|
|
1736
|
+
"--base-duration-700": ".7s",
|
|
1737
|
+
"--brand-videoPlayer-controls-bgColor": "#000",
|
|
1738
|
+
"--display-pine-scale-6": "#156f4b",
|
|
1739
|
+
"--brand-Icon-background-green": "#ebf9f4",
|
|
1740
|
+
"--display-red-scale-3": "#fb8389",
|
|
1741
|
+
"--fgColor-attention": "#9a6700",
|
|
1742
|
+
"--brand-Accordion-toggle-color-pink-blue-start": "#ef2aa4",
|
|
1743
|
+
"--brand-tiles-bgColor-hover": "#f2f5f3",
|
|
1744
|
+
"--brand-stack-gap-condensed": "1rem",
|
|
1745
|
+
"--label-pine-fgColor-hover": "#135d41",
|
|
1746
|
+
"--buttonCounter-danger-fgColor-rest": "#c21c2c",
|
|
1747
|
+
"--borderRadius-full": "624.938rem",
|
|
1748
|
+
"--base-color-scale-purple-3": "#b870ff",
|
|
1749
|
+
"--label-lemon-borderColor": "#fff0",
|
|
1750
|
+
"--base-color-scale-yellow-8": "#653200",
|
|
1751
|
+
"--display-indigo-fgColor": "#494edf",
|
|
1752
|
+
"--label-brown-bgColor-rest": "#eeeae2",
|
|
1753
|
+
"--text-caption-lineHeight": "1.25",
|
|
1754
|
+
"--color-ansi-magenta-bright": "#a475f9",
|
|
1755
|
+
"--display-red-fgColor": "#c50d28",
|
|
1756
|
+
"--brand-Eyebrowbanner-icon-background-coral": "#fff0eb",
|
|
1757
|
+
"--base-color-scale-coral-0": "#fff0eb",
|
|
1758
|
+
"--brand-breadcrumbs-separator-borderColor": "#77827a",
|
|
1759
|
+
"--button-danger-fgColor-rest": "#d1242f",
|
|
1760
|
+
"--brand-PricingOptions-items3-gap": "4rem",
|
|
1761
|
+
"--color-prettylights-syntax-entity": "#6639ba",
|
|
1762
|
+
"--base-easing-easeOut": "cubic-bezier(.3, .8, .6, 1)",
|
|
1763
|
+
"--brand-Icon-color-blue": "#0377ff",
|
|
1764
|
+
"--brand-color-text-danger": "#cf222e",
|
|
1765
|
+
"--brand-Accordion-toggle-color-purple-red-start": "#8534f3",
|
|
1766
|
+
"--color-marketing-icon-secondary": "#54aeff",
|
|
1767
|
+
"--label-lemon-bgColor-hover": "#f0db3d",
|
|
1768
|
+
"--text-title-weight-medium": "600",
|
|
1769
|
+
"--control-medium-paddingBlock": ".375rem",
|
|
1770
|
+
"--borderWidth-thick": ".125rem",
|
|
1771
|
+
"--progressBar-bgColor-attention": "#9a6700",
|
|
1772
|
+
"--bgColor-inverse": "#25292e",
|
|
1773
|
+
"--codeMirror-syntax-fgColor-constant": "#0550ae",
|
|
1774
|
+
"--base-color-scale-yellow-6": "#a06100",
|
|
1775
|
+
"--avatarStack-fade-bgColor-default": "#c8d1da",
|
|
1776
|
+
"--base-text-size-2xl": "2.5rem",
|
|
1777
|
+
"--label-auburn-bgColor-rest": "#f2e9e9",
|
|
1778
|
+
"--brand-Section-padding-spacious": "8rem",
|
|
1779
|
+
"--button-star-iconColor": "#eac54f",
|
|
1780
|
+
"--label-indigo-bgColor-hover": "#d2d7fe",
|
|
1781
|
+
"--brand-videoPlayer-controls-fgColor": "#f2f5f3",
|
|
1782
|
+
"--brand-Icon-background-purple": "#f0e5ff",
|
|
1783
|
+
"--brand-control-large-paddingInline-spacious": "2rem",
|
|
1784
|
+
"--color-prettylights-syntax-markup-italic": "#1f2328",
|
|
1785
|
+
"--diffBlob-emptyLine-bgColor": "#f6f8fa",
|
|
1786
|
+
"--brand-controlStack-large-gap-condensed": ".5rem",
|
|
1787
|
+
"--color-notifications-row-read-bg": "#f6f8fa",
|
|
1788
|
+
"--shadow-floating-xlarge": "0 0 0 1px #d1d9e000, 0 56px 112px 0 #25292e52",
|
|
1789
|
+
"--brand-Testimonial-quote-fontSize-large": "1.75rem",
|
|
1790
|
+
"--control-xsmall-paddingInline-condensed": ".25rem",
|
|
1791
|
+
"--Layout-inner-spacing-min": "0px",
|
|
1792
|
+
"--brand-Testimonial-quote-fontSize-default": "1.375rem",
|
|
1793
|
+
"--display-purple-bgColor-muted": "#f1e5ff",
|
|
1794
|
+
"--buttonCounter-default-bgColor-rest": "#818b981f",
|
|
1795
|
+
"--color-bg-discussions-row-emoji-box": "#d1d5da80",
|
|
1796
|
+
"--brand-pagination-borderColor-hover": "#000",
|
|
1797
|
+
"--display-brown-scale-3": "#b8a484",
|
|
1798
|
+
"--label-teal-bgColor-active": "#22d3c7",
|
|
1799
|
+
"--brand-Testimonial-quoteMarkColor-purple-red-start": "#8534f3",
|
|
1800
|
+
"--display-lime-scale-1": "#c7e580",
|
|
1801
|
+
"--borderColor-severe-muted": "#fb8f4466",
|
|
1802
|
+
"--brand-PricingOptions-items2-container-padding-inline": "3rem",
|
|
1803
|
+
"--brand-IDE-glass-editor-tabs-bgColor": "transparent",
|
|
1804
|
+
"--display-brown-scale-9": "#3a2e22",
|
|
1805
|
+
"--display-teal-bgColor-emphasis": "#127e81",
|
|
1806
|
+
"--brand-animation-variant-slideInLeft-distance": ".9375rem",
|
|
1807
|
+
"--controlStack-small-gap-condensed": ".5rem",
|
|
1808
|
+
"--display-blue-scale-8": "#003d99",
|
|
1809
|
+
"--display-olive-scale-9": "#2a331f",
|
|
1810
|
+
"--border-open-emphasis": ".0625rem solid #1a7f37",
|
|
1811
|
+
"--base-text-lineHeight-normal": "1.5",
|
|
1812
|
+
"--brand-Bento-item-borderRadius-small": "1rem",
|
|
1813
|
+
"--label-cyan-bgColor-hover": "#7ae9ff",
|
|
1814
|
+
"--label-red-borderColor": "#fff0",
|
|
1815
|
+
"--diffBlob-additionNum-bgColor": "#aceebb",
|
|
1816
|
+
"--brand-control-large-size": "3.75rem",
|
|
1817
|
+
"--borderWidth-thin": ".0625rem",
|
|
1818
|
+
"--brand-color-canvas-default": "#fff",
|
|
1819
|
+
"--fontStack-sansSerifDisplay": "\"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1820
|
+
"--display-yellow-bgColor-muted": "#ffec9e",
|
|
1821
|
+
"--data-auburn-color-muted": "#f2e9e9",
|
|
1822
|
+
"--brand-Eyebrowbanner-icon-background-red": "#ffebe9",
|
|
1823
|
+
"--buttonCounter-outline-fgColor-hover": "#fff",
|
|
1824
|
+
"--brand-SubdomainNavBar-border-button-hover": "#000",
|
|
1825
|
+
"--brand-Icon-background-lime": "#f3fec8",
|
|
1826
|
+
"--brand-Accordion-toggle-color-purple": "#8534f3",
|
|
1827
|
+
"--brand-Accordion-toggle-color-indigo": "#4956e5",
|
|
1828
|
+
"--Layout-template-areas": "\"content pane\"",
|
|
1829
|
+
"--brand-heading-letterSpacing-800": "0",
|
|
1830
|
+
"--button-outline-fgColor-hover": "#fff",
|
|
1831
|
+
"--fontStack-monospace": "ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace",
|
|
1832
|
+
"--brand-animation-variant-scaleInRight-end": "1",
|
|
1833
|
+
"--display-gray-fgColor": "#5c6570",
|
|
1834
|
+
"--button-primary-bgColor-active": "#197935",
|
|
1835
|
+
"--text-codeInline-shorthand": "400 .9285em ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace",
|
|
1836
|
+
"--label-indigo-fgColor-rest": "#494edf",
|
|
1837
|
+
"--label-orange-bgColor-active": "#fbaf74",
|
|
1838
|
+
"--breakpoint-xsmall": "20rem",
|
|
1839
|
+
"--brand-Testimonial-quoteMarkColor-blue-purple-end": "#8534f3",
|
|
1840
|
+
"--brand-Link-color-accent": "#005dd5",
|
|
1841
|
+
"--text-body-shorthand-medium": "400 .875rem / 1.5 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1842
|
+
"--brand-heading-letterSpacing-400": "0",
|
|
1843
|
+
"--brand-EyebrowBanner-label-size": "1rem",
|
|
1844
|
+
"--brand-control-small-lineBoxHeight": ".75rem",
|
|
1845
|
+
"--base-color-scale-teal-7": "#024b4d",
|
|
1846
|
+
"--reactionButton-selected-bgColor-hover": "#caecff",
|
|
1847
|
+
"--buttonKeybindingHint-invisible-bgColor-disabled": "#fff0",
|
|
1848
|
+
"--brand-control-color-canvas-disabled": "#e4ebe6",
|
|
1849
|
+
"--border-upsell-emphasis": ".0625rem solid #8250df",
|
|
1850
|
+
"--brand-Accordion-toggle-color-pink": "#ef2aa4",
|
|
1851
|
+
"--brand-Tabs-item-default-bgColor-active": "linear-gradient(180deg, #ffffff1f 0%, #9999991f 100%)",
|
|
1852
|
+
"--focus-outline": ".125rem solid #0969da",
|
|
1853
|
+
"--display-teal-scale-5": "#127e81",
|
|
1854
|
+
"--brand-IDE-default-editor-tab-borderColor": "#0377ff",
|
|
1855
|
+
"--diffBlob-emptyNum-bgColor": "#f6f8fa",
|
|
1856
|
+
"--label-pink-bgColor-active": "#f8a5cf",
|
|
1857
|
+
"--base-duration-900": ".9s",
|
|
1858
|
+
"--display-blue-scale-1": "#ade1ff",
|
|
1859
|
+
"--brand-Card-maxWidth": "26.25rem",
|
|
1860
|
+
"--brand-Accordion-toggle-color-blue-purple-start": "#0377ff",
|
|
1861
|
+
"--text-title-shorthand-medium": "600 1.25rem / 1.625 \"Mona Sans VF\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
1862
|
+
"--brand-control-minTarget-fine": "1rem",
|
|
1863
|
+
"--brand-IDE-glass-editor-bgColor": "#ffffff0f",
|
|
1864
|
+
"--actionListContent-paddingBlock": ".375rem",
|
|
1865
|
+
"--brand-Eyebrowbanner-fgColor-green": "#08872b",
|
|
1866
|
+
"--controlKnob-bgColor-rest": "#fff",
|
|
1867
|
+
"--display-red-borderColor-muted": "#fecdcd",
|
|
1868
|
+
"--display-gray-scale-1": "#d2dae4",
|
|
1869
|
+
"--base-size-negative-4": "-.25rem",
|
|
1870
|
+
"--text-title-size-medium": "1.25rem",
|
|
1871
|
+
"--control-danger-bgColor-hover": "#ffebe9",
|
|
1872
|
+
"--codeMirror-syntax-fgColor-comment": "#1f2328",
|
|
1873
|
+
"--base-easing-easeInOut": "cubic-bezier(.6, 0, .2, 1)",
|
|
1874
|
+
"--base-easing-linear": "cubic-bezier(0, 0, 1, 1)",
|
|
1875
|
+
"--display-indigo-bgColor-muted": "#e5e9ff",
|
|
1876
|
+
"--base-color-scale-gray-1": "#e4ebe6",
|
|
1877
|
+
"--brand-PricingOptions-actionsMessage-bgColor": "color-mix(in srgb, #3094ff 10%, transparent)",
|
|
1878
|
+
"--brand-LogoSuite-color-logo-muted": "#58635b",
|
|
1879
|
+
"--bgColor-severe-muted": "#fff1e5",
|
|
1880
|
+
"--borderColor-transparent": "#fff0",
|
|
1881
|
+
"--brand-Tabs-item-accent-bgColor-rest": "#08872b",
|
|
1882
|
+
"--contribution-halloween-bgColor-3": "#f68c41",
|
|
1883
|
+
"--brand-LogoSuite-logobar-marquee-slow": "60s",
|
|
1884
|
+
"--brand-Accordion-toggle-color-teal": "#197b7b",
|
|
1885
|
+
"--brand-color-text-link-rest": "#005dd5",
|
|
1886
|
+
"--headerSearch-borderColor": "#818b98",
|
|
1887
|
+
"--label-pine-bgColor-hover": "#80efb9",
|
|
1888
|
+
"--base-color-scale-blue-2": "#8dd6ff",
|
|
1889
|
+
"--brand-control-minTarget-coarse": "2.75rem",
|
|
1890
|
+
"--base-color-scale-green-1": "#bfffd1",
|
|
1891
|
+
"--display-coral-bgColor-emphasis": "#d43511",
|
|
1892
|
+
"--brand-LogoSuite-logobar-marquee-default": "30s",
|
|
1893
|
+
"--shadow-resting-xsmall": "0 1px 1px 0 #1f23280d",
|
|
1894
|
+
"--data-olive-color-emphasis": "#64762d",
|
|
1895
|
+
"--display-green-scale-1": "#9ceda0",
|
|
1896
|
+
"--button-invisible-iconColor-rest": "#59636e",
|
|
1897
|
+
"--Layout-outer-spacing-y": "0px",
|
|
1898
|
+
"--brand-PricingOptions-actionsMessage-borderColor": "color-mix(in srgb, #0055d5 20%, transparent)",
|
|
1899
|
+
"--button-primary-bgColor-hover": "#1c8139",
|
|
1900
|
+
"--color-ansi-magenta": "#8250df",
|
|
1901
|
+
"--button-default-shadow-resting": "0 1px 0 0 #1f23280a",
|
|
1902
|
+
"--display-yellow-scale-4": "#b88700",
|
|
1903
|
+
"--brand-text-style-italic-1": "\"ital\" 1",
|
|
1904
|
+
"--fgColor-done": "#8250df",
|
|
1905
|
+
"--brand-Icon-background-pink": "#fff0fc",
|
|
1906
|
+
"--brand-Timeline-bullet-spacing": ".125rem",
|
|
1907
|
+
"--border-neutral-emphasis": ".0625rem solid #59636e",
|
|
1908
|
+
"--controlTrack-fgColor-rest": "#59636e",
|
|
1909
|
+
"--display-cyan-bgColor-muted": "#bdf4ff",
|
|
1910
|
+
"--label-brown-bgColor-active": "#cbbda4",
|
|
1911
|
+
"--display-purple-scale-5": "#894ceb",
|
|
1912
|
+
"--diffBlob-hunkNum-bgColor-hover": "#0969da",
|
|
1913
|
+
"--brand-Icon-color-default": "#08872b",
|
|
1914
|
+
"--borderColor-open-emphasis": "#1a7f37",
|
|
1915
|
+
"--base-size-12": ".75rem",
|
|
1916
|
+
"--zIndex-sticky": "100",
|
|
1917
|
+
"--label-auburn-fgColor-active": "#5d3937",
|
|
1918
|
+
"--control-checked-borderColor-disabled": "#818b98",
|
|
1919
|
+
"--brand-text-size-350": "1.25rem",
|
|
1920
|
+
"--brand-Prose-code-bgColor": "#eff2ff",
|
|
1921
|
+
"--brand-Eyebrowbanner-fgColor-teal": "#197b7b",
|
|
1922
|
+
"--borderColor-danger-emphasis": "#cf222e",
|
|
1923
|
+
"--codeMirror-fgColor": "#1f2328",
|
|
1924
|
+
"--display-blue-scale-3": "#47afff",
|
|
1925
|
+
"--brand-button-accent-bgColor-disabled": "#b6bfb8",
|
|
1926
|
+
"--diffBlob-deletionNum-fgColor": "#1f2328",
|
|
1927
|
+
"--brand-Eyebrowbanner-icon-background-green": "#ebf9f4",
|
|
1928
|
+
"--base-color-scale-teal-5": "#197b7b",
|
|
1929
|
+
"--brand-stack-gap-normal": "1.5rem",
|
|
1930
|
+
"--text-display-weight": "500",
|
|
1931
|
+
"--boxShadow-thicker": "inset 0 0 0 .25rem",
|
|
1932
|
+
"--brand-videoPlayer-closedCaption-bgColor-enabled": "#f2f5f3",
|
|
1933
|
+
"--brand-Testimonial-quoteMarkBackground-green-blue": "#ebf9f4",
|
|
1934
|
+
"--display-olive-scale-5": "#64762d",
|
|
1935
|
+
"--brand-River-heading-margin": "1rem",
|
|
1936
|
+
"--data-red-color-emphasis": "#df0c24",
|
|
1937
|
+
"--data-gray-color-muted": "#e8ecf2",
|
|
1938
|
+
"--base-color-scale-red-2": "#ffaba8",
|
|
1939
|
+
"--brand-borderWidth-thin": "max(1px, .0625rem)",
|
|
1940
|
+
"--overlay-width-large": "40rem",
|
|
1941
|
+
"--brand-Icon-color-indigo": "#4956e5",
|
|
1942
|
+
"--brand-text-lineHeight-400": "1.4",
|
|
1943
|
+
"--display-pink-bgColor-emphasis": "#ce2c85",
|
|
1944
|
+
"--buttonKeybindingHint-danger-bgColor-disabled": "#eff2f5",
|
|
1945
|
+
"--display-gray-scale-2": "#b4c0cf",
|
|
1946
|
+
"--diffBlob-hunkLine-fgColor": "#59636e",
|
|
1947
|
+
"--brand-text-lineHeight-300": "1.5",
|
|
1948
|
+
"--brand-Testimonial-quoteMarkColor-blue-purple-start": "#0377ff",
|
|
1949
|
+
"--brand-control-small-paddingInline-condensed": ".5rem",
|
|
1950
|
+
"--brand-Token-fgColor-outline": "#000",
|
|
1951
|
+
"--base-color-scale-orange-8": "#5c2300",
|
|
1952
|
+
"--tooltip-fgColor": "#fff",
|
|
1953
|
+
"--spinner-strokeWidth-default": ".125rem",
|
|
1954
|
+
"--base-color-scale-pink-6": "#ca2186",
|
|
1955
|
+
"--fgColor-onInverse": "#fff",
|
|
1956
|
+
"--base-size-negative-12": "-.75rem",
|
|
1957
|
+
"--display-olive-bgColor-emphasis": "#64762d",
|
|
1958
|
+
"--focus-outline-color": "#0969da",
|
|
1959
|
+
"--label-blue-bgColor-active": "#75c8ff",
|
|
1960
|
+
"--control-transparent-bgColor-active": "#818b9826",
|
|
1961
|
+
"--overlay-borderColor": "#d1d9e080",
|
|
1962
|
+
"--brand-control-radio-bg-disabled": "#e4ebe6",
|
|
1963
|
+
"--brand-Eyebrowbanner-fgColor-indigo": "#4956e5",
|
|
1964
|
+
"--label-coral-fgColor-hover": "#9b2712",
|
|
1965
|
+
"--button-default-fgColor-rest": "#25292e",
|
|
1966
|
+
"--brand-Accordion-toggle-color-gray": "#96a199",
|
|
1967
|
+
"--label-cyan-fgColor-hover": "#00596b",
|
|
1968
|
+
"--border-closed-emphasis": ".0625rem solid #cf222e",
|
|
1969
|
+
"--display-green-borderColor-emphasis": "#2c8141",
|
|
1970
|
+
"--text-codeBlock-weight": "400",
|
|
1971
|
+
"--base-color-scale-red-5": "#cf2230",
|
|
1972
|
+
"--base-zIndex-0": "0",
|
|
1973
|
+
"--brand-Icon-color-red": "#cf2230",
|
|
1974
|
+
"--bgColor-accent-muted": "#ddf4ff",
|
|
1975
|
+
"--display-gray-bgColor-muted": "#e8ecf2",
|
|
1976
|
+
"--label-lime-fgColor-active": "#2f4a21",
|
|
1977
|
+
"--buttonCounter-outline-bgColor-disabled": "#0969da0d",
|
|
1978
|
+
"--brand-button-primary-borderColor-active": "#353d37",
|
|
1979
|
+
"--brand-Grid-column-bgColor-overlay": "#fb51544d",
|
|
1980
|
+
"--brand-Pillar-icon-color-teal": "#197b7b",
|
|
1981
|
+
"--timelineBadge-bgColor": "#f6f8fa",
|
|
1982
|
+
"--brand-control-checkbox-border-indeterminate": "#000",
|
|
1983
|
+
"--brand-IDE-glass-editor-tab-bgColor-active": "#ffffff0f",
|
|
1984
|
+
"--brand-color-danger-muted": "#ffaba899",
|
|
1985
|
+
"--display-pink-scale-3": "#f184bc",
|
|
1986
|
+
"--control-small-paddingInline-condensed": ".5rem",
|
|
1987
|
+
"--brand-breakpoint-xxlarge": "87.5rem",
|
|
1988
|
+
"--brand-text-lineHeight-200": "1.5",
|
|
1989
|
+
"--brand-control-medium-paddingBlock-condensed": ".375rem",
|
|
1990
|
+
"--bgColor-danger-muted": "#ffebe9",
|
|
1991
|
+
"--contribution-winter-bgColor-3": "#0969da",
|
|
1992
|
+
"--display-teal-scale-1": "#89ebe1",
|
|
1993
|
+
"--brand-Label-color-green-blue-purple-1": "#000aff",
|
|
1994
|
+
"--brand-text-weight-600": "400",
|
|
1995
|
+
"--buttonKeybindingHint-danger-borderColor-disabled": "#818b981a",
|
|
1996
|
+
"--controlStack-large-gap-condensed": ".5rem",
|
|
1997
|
+
"--brand-Testimonial-quoteMarkBackground-default": "#f2f5f3",
|
|
1998
|
+
"--h3-size-mobile": "1.125rem",
|
|
1999
|
+
"--brand-button-accent-borderColor-active": "#0d6731",
|
|
2000
|
+
"--brand-text-style-italic-5": "\"ital\" 5",
|
|
2001
|
+
"--brand-Testimonial-quoteMarkColor-coral": "#e13f1b",
|
|
2002
|
+
"--label-yellow-bgColor-active": "#ebb400",
|
|
2003
|
+
"--base-color-scale-indigo-8": "#212183",
|
|
2004
|
+
"--display-lemon-scale-8": "#523f00",
|
|
2005
|
+
"--card-bgColor": "#fff",
|
|
2006
|
+
"--brand-Label-color-green-blue-purple-3": "#08872b",
|
|
2007
|
+
"--base-duration-100": ".1s",
|
|
2008
|
+
"--display-coral-bgColor-muted": "#ffe5db",
|
|
2009
|
+
"--color-prettylights-syntax-keyword": "#cf222e",
|
|
2010
|
+
"--brand-control-medium-paddingInline-condensed": ".75rem",
|
|
2011
|
+
"--brand-Testimonial-quoteMarkColor-default": "#000",
|
|
2012
|
+
"--base-easing-ease": "cubic-bezier(.25, .1, .25, 1)",
|
|
2013
|
+
"--data-pine-color-muted": "#bff8db",
|
|
2014
|
+
"--brand-text-weight-heavy": "550",
|
|
2015
|
+
"--buttonCounter-primary-bgColor-rest": "#002d1133",
|
|
2016
|
+
"--contribution-default-borderColor-1": "#1f23280d",
|
|
2017
|
+
"--base-color-scale-green-4": "#23ea57",
|
|
2018
|
+
"--brand-PricingOptions-items-gap": "1.5rem",
|
|
2019
|
+
"--color-mktg-btn-shadow-hover": "0 3px 2px #00000012, 0 7px 5px #0000000a, 0 12px 10px #00000008, 0 22px 18px #00000008, 0 42px 33px #00000005, 0 100px 80px #00000005",
|
|
2020
|
+
"--brand-color-danger-emphasis": "#cf2230",
|
|
2021
|
+
"--brand-Accordion-toggle-color-green-blue-end": "#0377ff",
|
|
2022
|
+
"--display-auburn-bgColor-emphasis": "#9d615c",
|
|
2023
|
+
"--brand-Icon-color-lime": "#92c219",
|
|
2024
|
+
"--brand-ComparisonTable-featured-color-end": "#4956e5",
|
|
2025
|
+
"--display-pine-scale-5": "#167e53",
|
|
2026
|
+
"--display-cyan-scale-9": "#003742",
|
|
2027
|
+
"--brand-stack-padding-condensed": "1rem",
|
|
2028
|
+
"--display-green-scale-5": "#2c8141",
|
|
2029
|
+
"--button-invisible-borderColor-hover": "#fff0",
|
|
2030
|
+
"--borderColor-upsell-emphasis": "#8250df",
|
|
2031
|
+
"--brand-control-medium-paddingInline-spacious": "1.75rem",
|
|
2032
|
+
"--label-indigo-bgColor-rest": "#e5e9ff",
|
|
2033
|
+
"--display-lemon-scale-4": "#a68c07",
|
|
2034
|
+
"--outline-focus-offset": "-.125rem",
|
|
2035
|
+
"--button-danger-borderColor-hover": "#1f232826",
|
|
2036
|
+
"--brand-Timeline-spacing": "1rem",
|
|
2037
|
+
"--button-inactive-fgColor": "#59636e",
|
|
2038
|
+
"--progressBar-bgColor-accent": "#0969da",
|
|
2039
|
+
"--base-size-negative-16": "-1rem",
|
|
2040
|
+
"--display-red-scale-9": "#610a20",
|
|
2041
|
+
"--brand-AnchorNav-link-underline-pressed": "#000",
|
|
2042
|
+
"--display-auburn-fgColor": "#8a5551",
|
|
2043
|
+
"--brand-footer-bg-color": "",
|
|
2044
|
+
"--brand-heading-fontFamilyAlt": "\"Hubot Sans\", \"Hubot SansHeaderFallback\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\"",
|
|
2045
|
+
"--brand-Token-bgColor-hover-default": "#e4ebe6",
|
|
2046
|
+
"--brand-control-large-paddingInline-normal": "1.25rem",
|
|
2047
|
+
"--brand-ActionMenu-color-scrollbar-thumb-bg": "#f2f5f3",
|
|
2048
|
+
"--base-text-size-lg": "1.25rem",
|
|
2049
|
+
"--label-plum-fgColor-active": "#651d96",
|
|
2050
|
+
"--control-danger-bgColor-active": "#ffebe966",
|
|
2051
|
+
"--brand-Label-color-gray": "#96a199",
|
|
2052
|
+
"--brand-Testimonial-quoteMarkBackground-lemon": "#fdf5b3",
|
|
2053
|
+
"--contribution-default-bgColor-3": "#2da44e",
|
|
2054
|
+
"--display-purple-scale-4": "#a672f3",
|
|
2055
|
+
"--brand-text-letterSpacing-1000": "-.035em",
|
|
2056
|
+
"--button-outline-bgColor-rest": "#f6f8fa",
|
|
2057
|
+
"--brand-Testimonial-quoteMarkBackground-pink": "#fff0fc",
|
|
2058
|
+
"--brand-Testimonial-quoteMarkColor-orange": "#b85b06",
|
|
2059
|
+
"--display-indigo-borderColor-emphasis": "#5a61e7",
|
|
2060
|
+
"--fgColor-open": "#1a7f37",
|
|
2061
|
+
"--button-default-bgColor-hover": "#eff2f5",
|
|
2062
|
+
"--codeMirror-lines-bgColor": "#fff",
|
|
2063
|
+
"--brand-color-error-muted": "#ffaba899",
|
|
2064
|
+
"--overlay-padding-normal": "1rem",
|
|
2065
|
+
"--fgColor-sponsors": "#bf3989",
|
|
2066
|
+
"--borderColor-success-emphasis": "#1a7f37",
|
|
2067
|
+
"--data-orange-color-muted": "#ffe7d1",
|
|
2068
|
+
"--base-color-scale-blue-8": "#002f7a",
|
|
2069
|
+
"--brand-Pillar-icon-color-yellow": "#be7d00",
|
|
2070
|
+
"--brand-videoPlayer-closedCaption-fgColor-disabled": "#f2f5f3",
|
|
2071
|
+
"--display-gray-scale-6": "#5c6570",
|
|
2072
|
+
"--brand-PricingOptions-actionsMessage-accentColor": "#0377ff",
|
|
2073
|
+
"--stack-gap-normal": "1rem",
|
|
2074
|
+
"--buttonCounter-danger-fgColor-hover": "#fff",
|
|
2075
|
+
"--button-danger-bgColor-hover": "#cf222e",
|
|
2076
|
+
"--display-blue-scale-4": "#0f8fff",
|
|
2077
|
+
"--base-size-negative-44": "-2.75rem",
|
|
2078
|
+
"--brand-text-lineHeight-600": "1.3",
|
|
2079
|
+
"--brand-Label-color-pink-blue-end": "#0377ff",
|
|
2080
|
+
"--label-red-fgColor-hover": "#a60c29",
|
|
2081
|
+
"--display-blue-bgColor-emphasis": "#006edb",
|
|
2082
|
+
"--brand-control-checkbox-border-disabled": "#d2d9d4",
|
|
2083
|
+
"--brand-VideoPlayer-tooltip-padding-block": ".3125rem",
|
|
2084
|
+
"--brand-Icon-color-yellow": "#be7d00",
|
|
2085
|
+
"--brand-Eyebrowbanner-fgColor-orange": "#b85b06",
|
|
2086
|
+
"--buttonCounter-outline-bgColor-hover": "#fff3",
|
|
2087
|
+
"--base-color-scale-blue-7": "#0040a7",
|
|
2088
|
+
"--diffBlob-additionWord-bgColor": "#aceebb",
|
|
2089
|
+
"--counter-bgColor-muted": "#818b981f",
|
|
2090
|
+
"--color-mktg-btn-bg": "#1b1f23"
|
|
2091
|
+
}
|
|
2092
|
+
}
|