arize-phoenix 7.12.3__py3-none-any.whl → 8.0.1__py3-none-any.whl

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.

Potentially problematic release.


This version of arize-phoenix might be problematic. Click here for more details.

Files changed (80) hide show
  1. {arize_phoenix-7.12.3.dist-info → arize_phoenix-8.0.1.dist-info}/METADATA +31 -28
  2. {arize_phoenix-7.12.3.dist-info → arize_phoenix-8.0.1.dist-info}/RECORD +70 -47
  3. phoenix/db/migrations/versions/bc8fea3c2bc8_add_prompt_tables.py +197 -0
  4. phoenix/db/models.py +307 -0
  5. phoenix/db/types/__init__.py +0 -0
  6. phoenix/db/types/identifier.py +7 -0
  7. phoenix/db/types/model_provider.py +8 -0
  8. phoenix/server/api/context.py +2 -0
  9. phoenix/server/api/dataloaders/__init__.py +2 -0
  10. phoenix/server/api/dataloaders/prompt_version_sequence_number.py +35 -0
  11. phoenix/server/api/helpers/jsonschema.py +135 -0
  12. phoenix/server/api/helpers/playground_clients.py +15 -15
  13. phoenix/server/api/helpers/playground_spans.py +9 -0
  14. phoenix/server/api/helpers/prompts/__init__.py +0 -0
  15. phoenix/server/api/helpers/prompts/conversions/__init__.py +0 -0
  16. phoenix/server/api/helpers/prompts/conversions/anthropic.py +87 -0
  17. phoenix/server/api/helpers/prompts/conversions/openai.py +78 -0
  18. phoenix/server/api/helpers/prompts/models.py +575 -0
  19. phoenix/server/api/input_types/ChatCompletionInput.py +9 -4
  20. phoenix/server/api/input_types/PromptTemplateOptions.py +10 -0
  21. phoenix/server/api/input_types/PromptVersionInput.py +133 -0
  22. phoenix/server/api/mutations/__init__.py +6 -0
  23. phoenix/server/api/mutations/chat_mutations.py +18 -16
  24. phoenix/server/api/mutations/prompt_label_mutations.py +191 -0
  25. phoenix/server/api/mutations/prompt_mutations.py +312 -0
  26. phoenix/server/api/mutations/prompt_version_tag_mutations.py +148 -0
  27. phoenix/server/api/mutations/user_mutations.py +7 -6
  28. phoenix/server/api/openapi/schema.py +1 -0
  29. phoenix/server/api/queries.py +84 -31
  30. phoenix/server/api/routers/oauth2.py +3 -2
  31. phoenix/server/api/routers/v1/__init__.py +2 -0
  32. phoenix/server/api/routers/v1/datasets.py +1 -1
  33. phoenix/server/api/routers/v1/experiment_evaluations.py +1 -1
  34. phoenix/server/api/routers/v1/experiment_runs.py +1 -1
  35. phoenix/server/api/routers/v1/experiments.py +1 -1
  36. phoenix/server/api/routers/v1/models.py +45 -0
  37. phoenix/server/api/routers/v1/prompts.py +415 -0
  38. phoenix/server/api/routers/v1/spans.py +1 -1
  39. phoenix/server/api/routers/v1/traces.py +1 -1
  40. phoenix/server/api/routers/v1/utils.py +1 -1
  41. phoenix/server/api/subscriptions.py +21 -24
  42. phoenix/server/api/types/GenerativeProvider.py +4 -4
  43. phoenix/server/api/types/Identifier.py +15 -0
  44. phoenix/server/api/types/Project.py +5 -7
  45. phoenix/server/api/types/Prompt.py +134 -0
  46. phoenix/server/api/types/PromptLabel.py +41 -0
  47. phoenix/server/api/types/PromptVersion.py +148 -0
  48. phoenix/server/api/types/PromptVersionTag.py +27 -0
  49. phoenix/server/api/types/PromptVersionTemplate.py +148 -0
  50. phoenix/server/api/types/ResponseFormat.py +9 -0
  51. phoenix/server/api/types/ToolDefinition.py +9 -0
  52. phoenix/server/app.py +3 -0
  53. phoenix/server/static/.vite/manifest.json +45 -45
  54. phoenix/server/static/assets/components-B-qgPyHv.js +2699 -0
  55. phoenix/server/static/assets/index-D4KO1IcF.js +1125 -0
  56. phoenix/server/static/assets/pages-DdcuL3Rh.js +5634 -0
  57. phoenix/server/static/assets/vendor-DQp7CrDA.js +894 -0
  58. phoenix/server/static/assets/vendor-arizeai-C1nEIEQq.js +657 -0
  59. phoenix/server/static/assets/vendor-codemirror-BZXYUIkP.js +24 -0
  60. phoenix/server/static/assets/vendor-recharts-BUFpwCVD.js +59 -0
  61. phoenix/server/static/assets/{vendor-shiki-Cl9QBraO.js → vendor-shiki-C8L-c9jT.js} +2 -2
  62. phoenix/server/static/assets/{vendor-three-DwGkEfCM.js → vendor-three-C-AGeJYv.js} +1 -1
  63. phoenix/session/client.py +25 -21
  64. phoenix/utilities/client.py +6 -0
  65. phoenix/version.py +1 -1
  66. phoenix/server/api/input_types/TemplateOptions.py +0 -10
  67. phoenix/server/api/routers/v1/pydantic_compat.py +0 -78
  68. phoenix/server/api/types/TemplateLanguage.py +0 -10
  69. phoenix/server/static/assets/components-DckIzNmE.js +0 -2125
  70. phoenix/server/static/assets/index-Bf25Ogon.js +0 -113
  71. phoenix/server/static/assets/pages-DL7J9q9w.js +0 -4463
  72. phoenix/server/static/assets/vendor-DvC8cT4X.js +0 -894
  73. phoenix/server/static/assets/vendor-arizeai-Do1793cv.js +0 -662
  74. phoenix/server/static/assets/vendor-codemirror-BzwZPyJM.js +0 -24
  75. phoenix/server/static/assets/vendor-recharts-_Jb7JjhG.js +0 -59
  76. {arize_phoenix-7.12.3.dist-info → arize_phoenix-8.0.1.dist-info}/WHEEL +0 -0
  77. {arize_phoenix-7.12.3.dist-info → arize_phoenix-8.0.1.dist-info}/entry_points.txt +0 -0
  78. {arize_phoenix-7.12.3.dist-info → arize_phoenix-8.0.1.dist-info}/licenses/IP_NOTICE +0 -0
  79. {arize_phoenix-7.12.3.dist-info → arize_phoenix-8.0.1.dist-info}/licenses/LICENSE +0 -0
  80. /phoenix/server/static/assets/{vendor-DxkFTwjz.css → vendor-Cg6lcjUC.css} +0 -0
@@ -0,0 +1,1125 @@
1
+ import{r as t,j as o,ba as z,l as c,O as w,R as P,E as b,cj as k,d_ as S,d$ as F,e0 as L,e1 as l,v as C,e2 as E}from"./vendor-DQp7CrDA.js";import{d as R,J as T,D as _,V as A,W as I}from"./vendor-arizeai-C1nEIEQq.js";import{L as j,r as D,d as O,e as G,F as N,f as V,P as M,h as W,M as m,g as U,D as q,i as B,E as J,j as $,k as K,p as H,l as p,n as Y,s as Q,S as X,o as Z,q as oo,t as lo,v as u,w as f,x as y,y as ao,z as ro,A as co,B as go,C as eo,G as bo,H as no,I as io,J as so,K as to,N as mo,O as po,Q as uo,U as fo,V as yo,W as vo,X as ho,Y as xo,Z as zo,_ as wo,$ as Po,a0 as ko,a1 as So,a2 as Fo,a3 as Lo,a4 as Co,a5 as Eo,a6 as Ro,a7 as To,a8 as _o,a9 as Ao}from"./pages-DdcuL3Rh.js";import{W as Io,dA as jo,b9 as Do,U as Oo,dB as Go,dC as No}from"./components-B-qgPyHv.js";import"./vendor-three-C-AGeJYv.js";import"./vendor-codemirror-BZXYUIkP.js";import"./vendor-shiki-C8L-c9jT.js";import"./vendor-recharts-BUFpwCVD.js";(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const g of r)if(g.type==="childList")for(const n of g.addedNodes)n.tagName==="LINK"&&n.rel==="modulepreload"&&s(n)}).observe(document,{childList:!0,subtree:!0});function i(r){const g={};return r.integrity&&(g.integrity=r.integrity),r.referrerPolicy&&(g.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?g.credentials="include":r.crossOrigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function s(r){if(r.ep)return;r.ep=!0;const g=i(r);fetch(r.href,g)}})();const v="arize-phoenix-feature-flags",d={__RESET__:!1};function Vo(){const a=localStorage.getItem(v);if(!a)return d;try{const e=JSON.parse(a);return Object.assign({},d,e)}catch{return d}}const h=t.createContext(null);function Mo(){const a=P.useContext(h);if(a===null)throw new Error("useFeatureFlags must be used within a FeatureFlagsProvider");return a}function Wo(a){const[e,i]=t.useState(Vo()),s=r=>{localStorage.setItem(v,JSON.stringify(r)),i(r)};return o(h.Provider,{value:{featureFlags:e,setFeatureFlags:s},children:o(Uo,{children:a.children})})}function Uo(a){const{children:e}=a,{featureFlags:i,setFeatureFlags:s}=Mo(),[r,g]=t.useState(!1);return z("ctrl+shift+f",()=>g(!0)),c(w,{children:[e,o(_,{type:"modal",isDismissable:!0,onDismiss:()=>g(!1),children:r&&o(R,{title:"Feature Flags",children:o(Io,{height:"size-1000",padding:"size-100",children:Object.keys(i).map(n=>o(T,{isSelected:i[n],onChange:x=>s({...i,[n]:x}),children:n},n))})})})]})}const qo=b`
2
+ :root {
3
+ --ac-global-dimension-scale-factor: 1;
4
+ --ac-global-dimension-size-0: 0px;
5
+ --ac-global-dimension-size-10: 1px;
6
+ --ac-global-dimension-size-25: 2px;
7
+ --ac-global-dimension-size-30: 2px;
8
+ --ac-global-dimension-size-40: 3px;
9
+ --ac-global-dimension-size-50: 4px;
10
+ --ac-global-dimension-size-65: 5px;
11
+ --ac-global-dimension-size-75: 6px;
12
+ --ac-global-dimension-size-85: 7px;
13
+ --ac-global-dimension-size-100: 8px;
14
+ --ac-global-dimension-size-115: 9px;
15
+ --ac-global-dimension-size-125: 10px;
16
+ --ac-global-dimension-size-130: 11px;
17
+ --ac-global-dimension-size-150: 12px;
18
+ --ac-global-dimension-size-160: 13px;
19
+ --ac-global-dimension-size-175: 14px;
20
+ --ac-global-dimension-size-185: 15px;
21
+ --ac-global-dimension-size-200: 16px;
22
+ --ac-global-dimension-size-225: 18px;
23
+ --ac-global-dimension-size-250: 20px;
24
+ --ac-global-dimension-size-275: 22px;
25
+ --ac-global-dimension-size-300: 24px;
26
+ --ac-global-dimension-size-325: 26px;
27
+ --ac-global-dimension-size-350: 28px;
28
+ --ac-global-dimension-size-400: 32px;
29
+ --ac-global-dimension-size-450: 36px;
30
+ --ac-global-dimension-size-500: 40px;
31
+ --ac-global-dimension-size-550: 44px;
32
+ --ac-global-dimension-size-600: 48px;
33
+ --ac-global-dimension-size-650: 52px;
34
+ --ac-global-dimension-size-675: 54px;
35
+ --ac-global-dimension-size-700: 56px;
36
+ --ac-global-dimension-size-750: 60px;
37
+ --ac-global-dimension-size-800: 64px;
38
+ --ac-global-dimension-size-900: 72px;
39
+ --ac-global-dimension-size-1000: 80px;
40
+ --ac-global-dimension-size-1125: 90px;
41
+ --ac-global-dimension-size-1200: 96px;
42
+ --ac-global-dimension-size-1250: 100px;
43
+ --ac-global-dimension-size-1600: 128px;
44
+ --ac-global-dimension-size-1700: 136px;
45
+ --ac-global-dimension-size-1800: 144px;
46
+ --ac-global-dimension-size-2000: 160px;
47
+ --ac-global-dimension-size-2400: 192px;
48
+ --ac-global-dimension-size-2500: 200px;
49
+ --ac-global-dimension-size-3000: 240px;
50
+ --ac-global-dimension-size-3400: 272px;
51
+ --ac-global-dimension-size-3600: 288px;
52
+ --ac-global-dimension-size-4600: 368px;
53
+ --ac-global-dimension-size-5000: 400px;
54
+ --ac-global-dimension-size-6000: 480px;
55
+ }
56
+ `,Bo=b`
57
+ :root {
58
+ // static colors
59
+ --ac-global-static-color-white-900: rgba(255, 255, 255, 0.9);
60
+ --ac-global-static-color-white-700: rgba(255, 255, 255, 0.7);
61
+ --ac-global-static-color-white-300: rgba(255, 255, 255, 0.3);
62
+ --ac-global-static-color-black-900: rgba(0, 0, 0, 0.9);
63
+ --ac-global-static-color-black-700: rgba(0, 0, 0, 0.7);
64
+ --ac-global-static-color-black-300: rgba(0, 0, 0, 0.3);
65
+ }
66
+ `,Jo=b`
67
+ :root {
68
+ --ac-global-dimension-static-size-0: 0px;
69
+ --ac-global-dimension-static-size-10: 1px;
70
+ --ac-global-dimension-static-size-25: 2px;
71
+ --ac-global-dimension-static-size-50: 4px;
72
+ --ac-global-dimension-static-size-40: 3px;
73
+ --ac-global-dimension-static-size-65: 5px;
74
+ --ac-global-dimension-static-size-100: 8px;
75
+ --ac-global-dimension-static-size-115: 9px;
76
+ --ac-global-dimension-static-size-125: 10px;
77
+ --ac-global-dimension-static-size-130: 11px;
78
+ --ac-global-dimension-static-size-150: 12px;
79
+ --ac-global-dimension-static-size-160: 13px;
80
+ --ac-global-dimension-static-size-175: 14px;
81
+ --ac-global-dimension-static-size-200: 16px;
82
+ --ac-global-dimension-static-size-225: 18px;
83
+ --ac-global-dimension-static-size-250: 20px;
84
+ --ac-global-dimension-static-size-300: 24px;
85
+ --ac-global-dimension-static-size-400: 32px;
86
+ --ac-global-dimension-static-size-450: 36px;
87
+ --ac-global-dimension-static-size-500: 40px;
88
+ --ac-global-dimension-static-size-550: 44px;
89
+ --ac-global-dimension-static-size-600: 48px;
90
+ --ac-global-dimension-static-size-700: 56px;
91
+ --ac-global-dimension-static-size-800: 64px;
92
+ --ac-global-dimension-static-size-900: 72px;
93
+ --ac-global-dimension-static-size-1000: 80px;
94
+ --ac-global-dimension-static-size-1200: 96px;
95
+ --ac-global-dimension-static-size-1700: 136px;
96
+ --ac-global-dimension-static-size-2400: 192px;
97
+ --ac-global-dimension-static-size-2600: 208px;
98
+ --ac-global-dimension-static-size-3400: 272px;
99
+ --ac-global-dimension-static-size-3600: 288px;
100
+ --ac-global-dimension-static-size-4600: 368px;
101
+ --ac-global-dimension-static-size-5000: 400px;
102
+ --ac-global-dimension-static-size-6000: 480px;
103
+ --ac-global-dimension-static-font-size-50: 11px;
104
+ --ac-global-dimension-static-font-size-75: 12px;
105
+ --ac-global-dimension-static-font-size-100: 14px;
106
+ --ac-global-dimension-static-font-size-150: 15px;
107
+ --ac-global-dimension-static-font-size-200: 16px;
108
+ --ac-global-dimension-static-font-size-300: 18px;
109
+ --ac-global-dimension-static-font-size-400: 20px;
110
+ --ac-global-dimension-static-font-size-500: 22px;
111
+ --ac-global-dimension-static-font-size-600: 25px;
112
+ --ac-global-dimension-static-font-size-700: 28px;
113
+ --ac-global-dimension-static-font-size-800: 32px;
114
+ --ac-global-dimension-static-font-size-900: 36px;
115
+ --ac-global-dimension-static-font-size-1000: 40px;
116
+ --ac-global-dimension-static-percent-50: 50%;
117
+ --ac-global-dimension-static-percent-100: 100%;
118
+ --ac-global-dimension-static-breakpoint-xsmall: 304px;
119
+ --ac-global-dimension-static-breakpoint-small: 768px;
120
+ --ac-global-dimension-static-breakpoint-medium: 1280px;
121
+ --ac-global-dimension-static-breakpoint-large: 1768px;
122
+ --ac-global-dimension-static-breakpoint-xlarge: 2160px;
123
+ --ac-global-dimension-static-grid-columns: 12;
124
+ --ac-global-dimension-static-grid-fluid-width: 100%;
125
+ --ac-global-dimension-static-grid-fixed-max-width: 1280px;
126
+
127
+ /* Font sizing */
128
+ --ac-global-dimension-font-size-25: 10px;
129
+ --ac-global-dimension-font-size-50: 11px;
130
+ --ac-global-dimension-font-size-75: 12px;
131
+ --ac-global-dimension-font-size-100: 14px;
132
+ --ac-global-dimension-font-size-150: 15px;
133
+ --ac-global-dimension-font-size-200: 16px;
134
+ --ac-global-dimension-font-size-300: 18px;
135
+ --ac-global-dimension-font-size-400: 20px;
136
+ --ac-global-dimension-font-size-500: 22px;
137
+ --ac-global-dimension-font-size-600: 25px;
138
+ --ac-global-dimension-font-size-700: 28px;
139
+ --ac-global-dimension-font-size-800: 32px;
140
+ --ac-global-dimension-font-size-900: 36px;
141
+ --ac-global-dimension-font-size-1000: 40px;
142
+ --ac-global-dimension-font-size-1100: 45px;
143
+ --ac-global-dimension-font-size-1200: 50px;
144
+ --ac-global-dimension-font-size-1300: 60px;
145
+ }
146
+ `,$o=b`
147
+ :root,
148
+ .ac-theme--dark {
149
+ /* Colors */
150
+
151
+ // The primary color tint for the apps
152
+ --ac-global-color-primary: rgb(114, 217, 255);
153
+ --ac-global-color-primary-900: rgba(114, 217, 255, 0.9);
154
+ --ac-global-color-primary-700: rgba(114, 217, 255, 0.7);
155
+ --ac-global-color-primary-500: rgba(114, 217, 255, 0.5);
156
+ --ac-global-color-primary-300: rgba(114, 217, 255, 0.3);
157
+
158
+ // These colors are legacy
159
+ --ac-global-color-gray-900: #181b1f;
160
+ --ac-global-color-gray-800: #1d2126;
161
+ --ac-global-color-gray-700: #23282e;
162
+ --ac-global-color-gray-600: #282e35;
163
+ --ac-global-color-gray-500: #2f353d;
164
+ --ac-global-color-gray-400: #3d434a;
165
+ --ac-global-color-gray-300: #4a5057;
166
+ --ac-global-color-gray-200: #585d64;
167
+ --ac-global-color-gray-100: #666b71;
168
+
169
+ // The newer grays (grey)
170
+ --ac-global-color-grey-50-rgb: 0, 0, 0;
171
+ --ac-global-color-grey-50: rgb(var(--ac-global-color-grey-50-rgb));
172
+ --ac-global-color-grey-75-rgb: 14, 14, 14;
173
+ --ac-global-color-grey-75: rgb(var(--ac-global-color-grey-75-rgb));
174
+ --ac-global-color-grey-100-rgb: 29, 29, 29;
175
+ --ac-global-color-grey-100: rgb(var(--ac-global-color-grey-100-rgb));
176
+ --ac-global-color-grey-200-rgb: 48, 48, 48;
177
+ --ac-global-color-grey-200: rgb(var(--ac-global-color-grey-200-rgb));
178
+ --ac-global-color-grey-300-rgb: 75, 75, 75;
179
+ --ac-global-color-grey-300: rgb(var(--ac-global-color-grey-300-rgb));
180
+ --ac-global-color-grey-400-rgb: 106, 106, 106;
181
+ --ac-global-color-grey-400: rgb(var(--ac-global-color-grey-400-rgb));
182
+ --ac-global-color-grey-500-rgb: 141, 141, 141;
183
+ --ac-global-color-grey-500: rgb(var(--ac-global-color-grey-500-rgb));
184
+ --ac-global-color-grey-600-rgb: 176, 176, 176;
185
+ --ac-global-color-grey-600: rgb(var(--ac-global-color-grey-600-rgb));
186
+ --ac-global-color-grey-700-rgb: 208, 208, 208;
187
+ --ac-global-color-grey-700: rgb(var(--ac-global-color-grey-700-rgb));
188
+ --ac-global-color-grey-800-rgb: 235, 235, 235;
189
+ --ac-global-color-grey-800: rgb(var(--ac-global-color-grey-800-rgb));
190
+ --ac-global-color-grey-900-rgb: 255, 255, 255;
191
+ --ac-global-color-grey-900: rgb(var(--ac-global-color-grey-900-rgb));
192
+
193
+ --ac-global-color-red-100-rgb: 87, 0, 0;
194
+ --ac-global-color-red-100: rgb(var(--ac-global-color-red-100-rgb));
195
+ --ac-global-color-red-200-rgb: 110, 0, 0;
196
+ --ac-global-color-red-200: rgb(var(--ac-global-color-red-200-rgb));
197
+ --ac-global-color-red-300-rgb: 138, 0, 0;
198
+ --ac-global-color-red-300: rgb(var(--ac-global-color-red-300-rgb));
199
+ --ac-global-color-red-400-rgb: 167, 0, 0;
200
+ --ac-global-color-red-400: rgb(var(--ac-global-color-red-400-rgb));
201
+ --ac-global-color-red-500-rgb: 196, 7, 6;
202
+ --ac-global-color-red-500: rgb(var(--ac-global-color-red-500-rgb));
203
+ --ac-global-color-red-600-rgb: 221, 33, 24;
204
+ --ac-global-color-red-600: rgb(var(--ac-global-color-red-600-rgb));
205
+ --ac-global-color-red-700-rgb: 238, 67, 49;
206
+ --ac-global-color-red-700: rgb(var(--ac-global-color-red-700-rgb));
207
+ --ac-global-color-red-800-rgb: 249, 99, 76;
208
+ --ac-global-color-red-800: rgb(var(--ac-global-color-red-800-rgb));
209
+ --ac-global-color-red-900-rgb: 255, 129, 107;
210
+ --ac-global-color-red-900: rgb(var(--ac-global-color-red-900-rgb));
211
+ --ac-global-color-red-1000-rgb: 255, 158, 140;
212
+ --ac-global-color-red-1000: rgb(var(--ac-global-color-red-1000-rgb));
213
+ --ac-global-color-red-1100-rgb: 255, 183, 169;
214
+ --ac-global-color-red-1100: rgb(var(--ac-global-color-red-1100-rgb));
215
+ --ac-global-color-red-1200-rgb: 255, 205, 195;
216
+ --ac-global-color-red-1200: rgb(var(--ac-global-color-red-1200-rgb));
217
+ --ac-global-color-red-1300-rgb: 255, 223, 217;
218
+ --ac-global-color-red-1300: rgb(var(--ac-global-color-red-1300-rgb));
219
+ --ac-global-color-red-1400-rgb: 255, 237, 234;
220
+ --ac-global-color-red-1400: rgb(var(--ac-global-color-red-1400-rgb));
221
+ --ac-global-color-orange-100-rgb: 72, 24, 1;
222
+ --ac-global-color-orange-100: rgb(var(--ac-global-color-orange-100-rgb));
223
+ --ac-global-color-orange-200-rgb: 92, 32, 0;
224
+ --ac-global-color-orange-200: rgb(var(--ac-global-color-orange-200-rgb));
225
+ --ac-global-color-orange-300-rgb: 115, 43, 0;
226
+ --ac-global-color-orange-300: rgb(var(--ac-global-color-orange-300-rgb));
227
+ --ac-global-color-orange-400-rgb: 138, 55, 0;
228
+ --ac-global-color-orange-400: rgb(var(--ac-global-color-orange-400-rgb));
229
+ --ac-global-color-orange-500-rgb: 162, 68, 0;
230
+ --ac-global-color-orange-500: rgb(var(--ac-global-color-orange-500-rgb));
231
+ --ac-global-color-orange-600-rgb: 186, 82, 0;
232
+ --ac-global-color-orange-600: rgb(var(--ac-global-color-orange-600-rgb));
233
+ --ac-global-color-orange-700-rgb: 210, 98, 0;
234
+ --ac-global-color-orange-700: rgb(var(--ac-global-color-orange-700-rgb));
235
+ --ac-global-color-orange-800-rgb: 232, 116, 0;
236
+ --ac-global-color-orange-800: rgb(var(--ac-global-color-orange-800-rgb));
237
+ --ac-global-color-orange-900-rgb: 249, 137, 23;
238
+ --ac-global-color-orange-900: rgb(var(--ac-global-color-orange-900-rgb));
239
+ --ac-global-color-orange-1000-rgb: 255, 162, 59;
240
+ --ac-global-color-orange-1000: rgb(var(--ac-global-color-orange-1000-rgb));
241
+ --ac-global-color-orange-1100-rgb: 255, 188, 102;
242
+ --ac-global-color-orange-1100: rgb(var(--ac-global-color-orange-1100-rgb));
243
+ --ac-global-color-orange-1200-rgb: 253, 210, 145;
244
+ --ac-global-color-orange-1200: rgb(var(--ac-global-color-orange-1200-rgb));
245
+ --ac-global-color-orange-1300-rgb: 255, 226, 181;
246
+ --ac-global-color-orange-1300: rgb(var(--ac-global-color-orange-1300-rgb));
247
+ --ac-global-color-orange-1400-rgb: 255, 239, 213;
248
+ --ac-global-color-orange-1400: rgb(var(--ac-global-color-orange-1400-rgb));
249
+ --ac-global-color-yellow-100-rgb: 53, 36, 0;
250
+ --ac-global-color-yellow-100: rgb(var(--ac-global-color-yellow-100-rgb));
251
+ --ac-global-color-yellow-200-rgb: 68, 47, 0;
252
+ --ac-global-color-yellow-200: rgb(var(--ac-global-color-yellow-200-rgb));
253
+ --ac-global-color-yellow-300-rgb: 86, 62, 0;
254
+ --ac-global-color-yellow-300: rgb(var(--ac-global-color-yellow-300-rgb));
255
+ --ac-global-color-yellow-400-rgb: 103, 77, 0;
256
+ --ac-global-color-yellow-400: rgb(var(--ac-global-color-yellow-400-rgb));
257
+ --ac-global-color-yellow-500-rgb: 122, 92, 0;
258
+ --ac-global-color-yellow-500: rgb(var(--ac-global-color-yellow-500-rgb));
259
+ --ac-global-color-yellow-600-rgb: 141, 108, 0;
260
+ --ac-global-color-yellow-600: rgb(var(--ac-global-color-yellow-600-rgb));
261
+ --ac-global-color-yellow-700-rgb: 161, 126, 0;
262
+ --ac-global-color-yellow-700: rgb(var(--ac-global-color-yellow-700-rgb));
263
+ --ac-global-color-yellow-800-rgb: 180, 144, 0;
264
+ --ac-global-color-yellow-800: rgb(var(--ac-global-color-yellow-800-rgb));
265
+ --ac-global-color-yellow-900-rgb: 199, 162, 0;
266
+ --ac-global-color-yellow-900: rgb(var(--ac-global-color-yellow-900-rgb));
267
+ --ac-global-color-yellow-1000-rgb: 216, 181, 0;
268
+ --ac-global-color-yellow-1000: rgb(var(--ac-global-color-yellow-1000-rgb));
269
+ --ac-global-color-yellow-1100-rgb: 233, 199, 0;
270
+ --ac-global-color-yellow-1100: rgb(var(--ac-global-color-yellow-1100-rgb));
271
+ --ac-global-color-yellow-1200-rgb: 247, 216, 4;
272
+ --ac-global-color-yellow-1200: rgb(var(--ac-global-color-yellow-1200-rgb));
273
+ --ac-global-color-yellow-1300-rgb: 249, 233, 97;
274
+ --ac-global-color-yellow-1300: rgb(var(--ac-global-color-yellow-1300-rgb));
275
+ --ac-global-color-yellow-1400-rgb: 252, 243, 170;
276
+ --ac-global-color-yellow-1400: rgb(var(--ac-global-color-yellow-1400-rgb));
277
+ --ac-global-color-chartreuse-100-rgb: 32, 43, 0;
278
+ --ac-global-color-chartreuse-100: rgb(
279
+ var(--ac-global-color-chartreuse-100-rgb)
280
+ );
281
+ --ac-global-color-chartreuse-200-rgb: 42, 56, 0;
282
+ --ac-global-color-chartreuse-200: rgb(
283
+ var(--ac-global-color-chartreuse-200-rgb)
284
+ );
285
+ --ac-global-color-chartreuse-300-rgb: 54, 72, 0;
286
+ --ac-global-color-chartreuse-300: rgb(
287
+ var(--ac-global-color-chartreuse-300-rgb)
288
+ );
289
+ --ac-global-color-chartreuse-400-rgb: 66, 88, 0;
290
+ --ac-global-color-chartreuse-400: rgb(
291
+ var(--ac-global-color-chartreuse-400-rgb)
292
+ );
293
+ --ac-global-color-chartreuse-500-rgb: 79, 105, 0;
294
+ --ac-global-color-chartreuse-500: rgb(
295
+ var(--ac-global-color-chartreuse-500-rgb)
296
+ );
297
+ --ac-global-color-chartreuse-600-rgb: 93, 123, 0;
298
+ --ac-global-color-chartreuse-600: rgb(
299
+ var(--ac-global-color-chartreuse-600-rgb)
300
+ );
301
+ --ac-global-color-chartreuse-700-rgb: 107, 142, 0;
302
+ --ac-global-color-chartreuse-700: rgb(
303
+ var(--ac-global-color-chartreuse-700-rgb)
304
+ );
305
+ --ac-global-color-chartreuse-800-rgb: 122, 161, 0;
306
+ --ac-global-color-chartreuse-800: rgb(
307
+ var(--ac-global-color-chartreuse-800-rgb)
308
+ );
309
+ --ac-global-color-chartreuse-900-rgb: 138, 180, 3;
310
+ --ac-global-color-chartreuse-900: rgb(
311
+ var(--ac-global-color-chartreuse-900-rgb)
312
+ );
313
+ --ac-global-color-chartreuse-1000-rgb: 154, 198, 11;
314
+ --ac-global-color-chartreuse-1000: rgb(
315
+ var(--ac-global-color-chartreuse-1000-rgb)
316
+ );
317
+ --ac-global-color-chartreuse-1100-rgb: 170, 216, 22;
318
+ --ac-global-color-chartreuse-1100: rgb(
319
+ var(--ac-global-color-chartreuse-1100-rgb)
320
+ );
321
+ --ac-global-color-chartreuse-1200-rgb: 187, 232, 41;
322
+ --ac-global-color-chartreuse-1200: rgb(
323
+ var(--ac-global-color-chartreuse-1200-rgb)
324
+ );
325
+ --ac-global-color-chartreuse-1300-rgb: 205, 246, 72;
326
+ --ac-global-color-chartreuse-1300: rgb(
327
+ var(--ac-global-color-chartreuse-1300-rgb)
328
+ );
329
+ --ac-global-color-chartreuse-1400-rgb: 225, 253, 132;
330
+ --ac-global-color-chartreuse-1400: rgb(
331
+ var(--ac-global-color-chartreuse-1400-rgb)
332
+ );
333
+ --ac-global-color-celery-100-rgb: 0, 47, 7;
334
+ --ac-global-color-celery-100: rgb(var(--ac-global-color-celery-100-rgb));
335
+ --ac-global-color-celery-200-rgb: 0, 61, 9;
336
+ --ac-global-color-celery-200: rgb(var(--ac-global-color-celery-200-rgb));
337
+ --ac-global-color-celery-300-rgb: 0, 77, 12;
338
+ --ac-global-color-celery-300: rgb(var(--ac-global-color-celery-300-rgb));
339
+ --ac-global-color-celery-400-rgb: 0, 95, 15;
340
+ --ac-global-color-celery-400: rgb(var(--ac-global-color-celery-400-rgb));
341
+ --ac-global-color-celery-500-rgb: 0, 113, 15;
342
+ --ac-global-color-celery-500: rgb(var(--ac-global-color-celery-500-rgb));
343
+ --ac-global-color-celery-600-rgb: 0, 132, 15;
344
+ --ac-global-color-celery-600: rgb(var(--ac-global-color-celery-600-rgb));
345
+ --ac-global-color-celery-700-rgb: 0, 151, 20;
346
+ --ac-global-color-celery-700: rgb(var(--ac-global-color-celery-700-rgb));
347
+ --ac-global-color-celery-800-rgb: 13, 171, 37;
348
+ --ac-global-color-celery-800: rgb(var(--ac-global-color-celery-800-rgb));
349
+ --ac-global-color-celery-900-rgb: 45, 191, 58;
350
+ --ac-global-color-celery-900: rgb(var(--ac-global-color-celery-900-rgb));
351
+ --ac-global-color-celery-1000-rgb: 80, 208, 82;
352
+ --ac-global-color-celery-1000: rgb(var(--ac-global-color-celery-1000-rgb));
353
+ --ac-global-color-celery-1100-rgb: 115, 224, 107;
354
+ --ac-global-color-celery-1100: rgb(var(--ac-global-color-celery-1100-rgb));
355
+ --ac-global-color-celery-1200-rgb: 147, 237, 131;
356
+ --ac-global-color-celery-1200: rgb(var(--ac-global-color-celery-1200-rgb));
357
+ --ac-global-color-celery-1300-rgb: 180, 247, 165;
358
+ --ac-global-color-celery-1300: rgb(var(--ac-global-color-celery-1300-rgb));
359
+ --ac-global-color-celery-1400-rgb: 213, 252, 202;
360
+ --ac-global-color-celery-1400: rgb(var(--ac-global-color-celery-1400-rgb));
361
+ --ac-global-color-green-100-rgb: 10, 44, 28;
362
+ --ac-global-color-green-100: rgb(var(--ac-global-color-green-100-rgb));
363
+ --ac-global-color-green-200-rgb: 7, 59, 36;
364
+ --ac-global-color-green-200: rgb(var(--ac-global-color-green-200-rgb));
365
+ --ac-global-color-green-300-rgb: 0, 76, 46;
366
+ --ac-global-color-green-300: rgb(var(--ac-global-color-green-300-rgb));
367
+ --ac-global-color-green-400-rgb: 0, 93, 57;
368
+ --ac-global-color-green-400: rgb(var(--ac-global-color-green-400-rgb));
369
+ --ac-global-color-green-500-rgb: 0, 111, 69;
370
+ --ac-global-color-green-500: rgb(var(--ac-global-color-green-500-rgb));
371
+ --ac-global-color-green-600-rgb: 0, 130, 82;
372
+ --ac-global-color-green-600: rgb(var(--ac-global-color-green-600-rgb));
373
+ --ac-global-color-green-700-rgb: 0, 149, 98;
374
+ --ac-global-color-green-700: rgb(var(--ac-global-color-green-700-rgb));
375
+ --ac-global-color-green-800-rgb: 28, 168, 114;
376
+ --ac-global-color-green-800: rgb(var(--ac-global-color-green-800-rgb));
377
+ --ac-global-color-green-900-rgb: 52, 187, 132;
378
+ --ac-global-color-green-900: rgb(var(--ac-global-color-green-900-rgb));
379
+ --ac-global-color-green-1000-rgb: 75, 205, 149;
380
+ --ac-global-color-green-1000: rgb(var(--ac-global-color-green-1000-rgb));
381
+ --ac-global-color-green-1100-rgb: 103, 222, 168;
382
+ --ac-global-color-green-1100: rgb(var(--ac-global-color-green-1100-rgb));
383
+ --ac-global-color-green-1200-rgb: 137, 236, 188;
384
+ --ac-global-color-green-1200: rgb(var(--ac-global-color-green-1200-rgb));
385
+ --ac-global-color-green-1300-rgb: 177, 244, 209;
386
+ --ac-global-color-green-1300: rgb(var(--ac-global-color-green-1300-rgb));
387
+ --ac-global-color-green-1400-rgb: 214, 249, 228;
388
+ --ac-global-color-green-1400: rgb(var(--ac-global-color-green-1400-rgb));
389
+ --ac-global-color-seafoam-100-rgb: 18, 43, 42;
390
+ --ac-global-color-seafoam-100: rgb(var(--ac-global-color-seafoam-100-rgb));
391
+ --ac-global-color-seafoam-200-rgb: 19, 57, 55;
392
+ --ac-global-color-seafoam-200: rgb(var(--ac-global-color-seafoam-200-rgb));
393
+ --ac-global-color-seafoam-300-rgb: 16, 73, 70;
394
+ --ac-global-color-seafoam-300: rgb(var(--ac-global-color-seafoam-300-rgb));
395
+ --ac-global-color-seafoam-400-rgb: 3, 91, 88;
396
+ --ac-global-color-seafoam-400: rgb(var(--ac-global-color-seafoam-400-rgb));
397
+ --ac-global-color-seafoam-500-rgb: 0, 108, 104;
398
+ --ac-global-color-seafoam-500: rgb(var(--ac-global-color-seafoam-500-rgb));
399
+ --ac-global-color-seafoam-600-rgb: 0, 127, 121;
400
+ --ac-global-color-seafoam-600: rgb(var(--ac-global-color-seafoam-600-rgb));
401
+ --ac-global-color-seafoam-700-rgb: 0, 146, 140;
402
+ --ac-global-color-seafoam-700: rgb(var(--ac-global-color-seafoam-700-rgb));
403
+ --ac-global-color-seafoam-800-rgb: 0, 165, 159;
404
+ --ac-global-color-seafoam-800: rgb(var(--ac-global-color-seafoam-800-rgb));
405
+ --ac-global-color-seafoam-900-rgb: 26, 185, 178;
406
+ --ac-global-color-seafoam-900: rgb(var(--ac-global-color-seafoam-900-rgb));
407
+ --ac-global-color-seafoam-1000-rgb: 66, 202, 195;
408
+ --ac-global-color-seafoam-1000: rgb(
409
+ var(--ac-global-color-seafoam-1000-rgb)
410
+ );
411
+ --ac-global-color-seafoam-1100-rgb: 102, 218, 211;
412
+ --ac-global-color-seafoam-1100: rgb(
413
+ var(--ac-global-color-seafoam-1100-rgb)
414
+ );
415
+ --ac-global-color-seafoam-1200-rgb: 139, 232, 225;
416
+ --ac-global-color-seafoam-1200: rgb(
417
+ var(--ac-global-color-seafoam-1200-rgb)
418
+ );
419
+ --ac-global-color-seafoam-1300-rgb: 179, 242, 237;
420
+ --ac-global-color-seafoam-1300: rgb(
421
+ var(--ac-global-color-seafoam-1300-rgb)
422
+ );
423
+ --ac-global-color-seafoam-1400-rgb: 215, 248, 244;
424
+ --ac-global-color-seafoam-1400: rgb(
425
+ var(--ac-global-color-seafoam-1400-rgb)
426
+ );
427
+ --ac-global-color-cyan-100-rgb: 0, 41, 68;
428
+ --ac-global-color-cyan-100: rgb(var(--ac-global-color-cyan-100-rgb));
429
+ --ac-global-color-cyan-200-rgb: 0, 54, 88;
430
+ --ac-global-color-cyan-200: rgb(var(--ac-global-color-cyan-200-rgb));
431
+ --ac-global-color-cyan-300-rgb: 0, 69, 108;
432
+ --ac-global-color-cyan-300: rgb(var(--ac-global-color-cyan-300-rgb));
433
+ --ac-global-color-cyan-400-rgb: 0, 86, 128;
434
+ --ac-global-color-cyan-400: rgb(var(--ac-global-color-cyan-400-rgb));
435
+ --ac-global-color-cyan-500-rgb: 0, 103, 147;
436
+ --ac-global-color-cyan-500: rgb(var(--ac-global-color-cyan-500-rgb));
437
+ --ac-global-color-cyan-600-rgb: 0, 121, 167;
438
+ --ac-global-color-cyan-600: rgb(var(--ac-global-color-cyan-600-rgb));
439
+ --ac-global-color-cyan-700-rgb: 0, 140, 186;
440
+ --ac-global-color-cyan-700: rgb(var(--ac-global-color-cyan-700-rgb));
441
+ --ac-global-color-cyan-800-rgb: 4, 160, 205;
442
+ --ac-global-color-cyan-800: rgb(var(--ac-global-color-cyan-800-rgb));
443
+ --ac-global-color-cyan-900-rgb: 23, 180, 221;
444
+ --ac-global-color-cyan-900: rgb(var(--ac-global-color-cyan-900-rgb));
445
+ --ac-global-color-cyan-1000-rgb: 57, 199, 234;
446
+ --ac-global-color-cyan-1000: rgb(var(--ac-global-color-cyan-1000-rgb));
447
+ --ac-global-color-cyan-1100-rgb: 96, 216, 243;
448
+ --ac-global-color-cyan-1100: rgb(var(--ac-global-color-cyan-1100-rgb));
449
+ --ac-global-color-cyan-1200-rgb: 134, 230, 250;
450
+ --ac-global-color-cyan-1200: rgb(var(--ac-global-color-cyan-1200-rgb));
451
+ --ac-global-color-cyan-1300-rgb: 170, 242, 255;
452
+ --ac-global-color-cyan-1300: rgb(var(--ac-global-color-cyan-1300-rgb));
453
+ --ac-global-color-cyan-1400-rgb: 206, 249, 255;
454
+ --ac-global-color-cyan-1400: rgb(var(--ac-global-color-cyan-1400-rgb));
455
+ --ac-global-color-blue-100-rgb: 0, 38, 81;
456
+ --ac-global-color-blue-100: rgb(var(--ac-global-color-blue-100-rgb));
457
+ --ac-global-color-blue-200-rgb: 0, 50, 106;
458
+ --ac-global-color-blue-200: rgb(var(--ac-global-color-blue-200-rgb));
459
+ --ac-global-color-blue-300-rgb: 0, 64, 135;
460
+ --ac-global-color-blue-300: rgb(var(--ac-global-color-blue-300-rgb));
461
+ --ac-global-color-blue-400-rgb: 0, 78, 166;
462
+ --ac-global-color-blue-400: rgb(var(--ac-global-color-blue-400-rgb));
463
+ --ac-global-color-blue-500-rgb: 0, 92, 200;
464
+ --ac-global-color-blue-500: rgb(var(--ac-global-color-blue-500-rgb));
465
+ --ac-global-color-blue-600-rgb: 6, 108, 231;
466
+ --ac-global-color-blue-600: rgb(var(--ac-global-color-blue-600-rgb));
467
+ --ac-global-color-blue-700-rgb: 29, 128, 245;
468
+ --ac-global-color-blue-700: rgb(var(--ac-global-color-blue-700-rgb));
469
+ --ac-global-color-blue-800-rgb: 64, 150, 243;
470
+ --ac-global-color-blue-800: rgb(var(--ac-global-color-blue-800-rgb));
471
+ --ac-global-color-blue-900-rgb: 94, 170, 247;
472
+ --ac-global-color-blue-900: rgb(var(--ac-global-color-blue-900-rgb));
473
+ --ac-global-color-blue-1000-rgb: 124, 189, 250;
474
+ --ac-global-color-blue-1000: rgb(var(--ac-global-color-blue-1000-rgb));
475
+ --ac-global-color-blue-1100-rgb: 152, 206, 253;
476
+ --ac-global-color-blue-1100: rgb(var(--ac-global-color-blue-1100-rgb));
477
+ --ac-global-color-blue-1200-rgb: 179, 222, 254;
478
+ --ac-global-color-blue-1200: rgb(var(--ac-global-color-blue-1200-rgb));
479
+ --ac-global-color-blue-1300-rgb: 227, 234, 255;
480
+ --ac-global-color-blue-1300: rgb(var(--ac-global-color-blue-1300-rgb));
481
+ --ac-global-color-blue-1400-rgb: 243, 243, 255;
482
+ --ac-global-color-blue-1400: rgb(var(--ac-global-color-blue-1400-rgb));
483
+ --ac-global-color-indigo-100-rgb: 26, 29, 97;
484
+ --ac-global-color-indigo-100: rgb(var(--ac-global-color-indigo-100-rgb));
485
+ --ac-global-color-indigo-200-rgb: 35, 39, 125;
486
+ --ac-global-color-indigo-200: rgb(var(--ac-global-color-indigo-200-rgb));
487
+ --ac-global-color-indigo-300-rgb: 46, 50, 157;
488
+ --ac-global-color-indigo-300: rgb(var(--ac-global-color-indigo-300-rgb));
489
+ --ac-global-color-indigo-400-rgb: 58, 63, 189;
490
+ --ac-global-color-indigo-400: rgb(var(--ac-global-color-indigo-400-rgb));
491
+ --ac-global-color-indigo-500-rgb: 73, 78, 216;
492
+ --ac-global-color-indigo-500: rgb(var(--ac-global-color-indigo-500-rgb));
493
+ --ac-global-color-indigo-600-rgb: 90, 96, 235;
494
+ --ac-global-color-indigo-600: rgb(var(--ac-global-color-indigo-600-rgb));
495
+ --ac-global-color-indigo-700-rgb: 110, 115, 246;
496
+ --ac-global-color-indigo-700: rgb(var(--ac-global-color-indigo-700-rgb));
497
+ --ac-global-color-indigo-800-rgb: 132, 136, 253;
498
+ --ac-global-color-indigo-800: rgb(var(--ac-global-color-indigo-800-rgb));
499
+ --ac-global-color-indigo-900-rgb: 153, 159, 255;
500
+ --ac-global-color-indigo-900: rgb(var(--ac-global-color-indigo-900-rgb));
501
+ --ac-global-color-indigo-1000-rgb: 174, 177, 255;
502
+ --ac-global-color-indigo-1000: rgb(var(--ac-global-color-indigo-1000-rgb));
503
+ --ac-global-color-indigo-1100-rgb: 194, 196, 255;
504
+ --ac-global-color-indigo-1100: rgb(var(--ac-global-color-indigo-1100-rgb));
505
+ --ac-global-color-indigo-1200-rgb: 212, 213, 255;
506
+ --ac-global-color-indigo-1200: rgb(var(--ac-global-color-indigo-1200-rgb));
507
+ --ac-global-color-indigo-1300-rgb: 227, 228, 255;
508
+ --ac-global-color-indigo-1300: rgb(var(--ac-global-color-indigo-1300-rgb));
509
+ --ac-global-color-indigo-1400-rgb: 240, 240, 255;
510
+ --ac-global-color-indigo-1400: rgb(var(--ac-global-color-indigo-1400-rgb));
511
+ --ac-global-color-purple-100-rgb: 50, 16, 104;
512
+ --ac-global-color-purple-100: rgb(var(--ac-global-color-purple-100-rgb));
513
+ --ac-global-color-purple-200-rgb: 67, 13, 140;
514
+ --ac-global-color-purple-200: rgb(var(--ac-global-color-purple-200-rgb));
515
+ --ac-global-color-purple-300-rgb: 86, 16, 173;
516
+ --ac-global-color-purple-300: rgb(var(--ac-global-color-purple-300-rgb));
517
+ --ac-global-color-purple-400-rgb: 106, 29, 200;
518
+ --ac-global-color-purple-400: rgb(var(--ac-global-color-purple-400-rgb));
519
+ --ac-global-color-purple-500-rgb: 126, 49, 222;
520
+ --ac-global-color-purple-500: rgb(var(--ac-global-color-purple-500-rgb));
521
+ --ac-global-color-purple-600-rgb: 145, 70, 236;
522
+ --ac-global-color-purple-600: rgb(var(--ac-global-color-purple-600-rgb));
523
+ --ac-global-color-purple-700-rgb: 162, 94, 246;
524
+ --ac-global-color-purple-700: rgb(var(--ac-global-color-purple-700-rgb));
525
+ --ac-global-color-purple-800-rgb: 178, 119, 250;
526
+ --ac-global-color-purple-800: rgb(var(--ac-global-color-purple-800-rgb));
527
+ --ac-global-color-purple-900-rgb: 192, 143, 252;
528
+ --ac-global-color-purple-900: rgb(var(--ac-global-color-purple-900-rgb));
529
+ --ac-global-color-purple-1000-rgb: 206, 166, 253;
530
+ --ac-global-color-purple-1000: rgb(var(--ac-global-color-purple-1000-rgb));
531
+ --ac-global-color-purple-1100-rgb: 219, 188, 254;
532
+ --ac-global-color-purple-1100: rgb(var(--ac-global-color-purple-1100-rgb));
533
+ --ac-global-color-purple-1200-rgb: 230, 207, 254;
534
+ --ac-global-color-purple-1200: rgb(var(--ac-global-color-purple-1200-rgb));
535
+ --ac-global-color-purple-1300-rgb: 240, 224, 255;
536
+ --ac-global-color-purple-1300: rgb(var(--ac-global-color-purple-1300-rgb));
537
+ --ac-global-color-purple-1400-rgb: 248, 237, 255;
538
+ --ac-global-color-purple-1400: rgb(var(--ac-global-color-purple-1400-rgb));
539
+ --ac-global-color-fuchsia-100-rgb: 70, 14, 68;
540
+ --ac-global-color-fuchsia-100: rgb(var(--ac-global-color-fuchsia-100-rgb));
541
+ --ac-global-color-fuchsia-200-rgb: 93, 9, 92;
542
+ --ac-global-color-fuchsia-200: rgb(var(--ac-global-color-fuchsia-200-rgb));
543
+ --ac-global-color-fuchsia-300-rgb: 120, 0, 120;
544
+ --ac-global-color-fuchsia-300: rgb(var(--ac-global-color-fuchsia-300-rgb));
545
+ --ac-global-color-fuchsia-400-rgb: 145, 0, 78;
546
+ --ac-global-color-fuchsia-400: rgb(var(--ac-global-color-fuchsia-400-rgb));
547
+ --ac-global-color-fuchsia-500-rgb: 169, 19, 170;
548
+ --ac-global-color-fuchsia-500: rgb(var(--ac-global-color-fuchsia-500-rgb));
549
+ --ac-global-color-fuchsia-600-rgb: 209, 43, 114;
550
+ --ac-global-color-fuchsia-600: rgb(var(--ac-global-color-fuchsia-600-rgb));
551
+ --ac-global-color-fuchsia-700-rgb: 227, 69, 137;
552
+ --ac-global-color-fuchsia-700: rgb(var(--ac-global-color-fuchsia-700-rgb));
553
+ --ac-global-color-fuchsia-800-rgb: 241, 97, 156;
554
+ --ac-global-color-fuchsia-800: rgb(var(--ac-global-color-fuchsia-800-rgb));
555
+ --ac-global-color-fuchsia-900-rgb: 252, 124, 173;
556
+ --ac-global-color-fuchsia-900: rgb(var(--ac-global-color-fuchsia-900-rgb));
557
+ --ac-global-color-fuchsia-1000-rgb: 255, 152, 191;
558
+ --ac-global-color-fuchsia-1000: rgb(
559
+ var(--ac-global-color-fuchsia-1000-rgb)
560
+ );
561
+ --ac-global-color-fuchsia-1100-rgb: 255, 179, 207;
562
+ --ac-global-color-fuchsia-1100: rgb(
563
+ var(--ac-global-color-fuchsia-1100-rgb)
564
+ );
565
+ --ac-global-color-fuchsia-1200-rgb: 254, 202, 221;
566
+ --ac-global-color-fuchsia-1200: rgb(
567
+ var(--ac-global-color-fuchsia-1200-rgb)
568
+ );
569
+ --ac-global-color-fuchsia-1300-rgb: 255, 221, 233;
570
+ --ac-global-color-fuchsia-1300: rgb(
571
+ var(--ac-global-color-fuchsia-1300-rgb)
572
+ );
573
+ --ac-global-color-fuchsia-1400-rgb: 255, 236, 243;
574
+ --ac-global-color-fuchsia-1400: rgb(
575
+ var(--ac-global-color-fuchsia-1400-rgb)
576
+ );
577
+ --ac-global-color-magenta-100-rgb: 83, 3, 41;
578
+ --ac-global-color-magenta-100: rgb(var(--ac-global-color-magenta-100-rgb));
579
+ --ac-global-color-magenta-200-rgb: 106, 0, 52;
580
+ --ac-global-color-magenta-200: rgb(var(--ac-global-color-magenta-200-rgb));
581
+ --ac-global-color-magenta-300-rgb: 133, 0, 65;
582
+ --ac-global-color-magenta-300: rgb(var(--ac-global-color-magenta-300-rgb));
583
+ --ac-global-color-magenta-400-rgb: 161, 0, 78;
584
+ --ac-global-color-magenta-400: rgb(var(--ac-global-color-magenta-400-rgb));
585
+ --ac-global-color-magenta-500-rgb: 186, 22, 93;
586
+ --ac-global-color-magenta-500: rgb(var(--ac-global-color-magenta-500-rgb));
587
+ --ac-global-color-magenta-600-rgb: 209, 43, 114;
588
+ --ac-global-color-magenta-600: rgb(var(--ac-global-color-magenta-600-rgb));
589
+ --ac-global-color-magenta-700-rgb: 227, 69, 137;
590
+ --ac-global-color-magenta-700: rgb(var(--ac-global-color-magenta-700-rgb));
591
+ --ac-global-color-magenta-800-rgb: 241, 97, 156;
592
+ --ac-global-color-magenta-800: rgb(var(--ac-global-color-magenta-800-rgb));
593
+ --ac-global-color-magenta-900-rgb: 252, 124, 173;
594
+ --ac-global-color-magenta-900: rgb(var(--ac-global-color-magenta-900-rgb));
595
+ --ac-global-color-magenta-1000-rgb: 255, 152, 191;
596
+ --ac-global-color-magenta-1000: rgb(
597
+ var(--ac-global-color-magenta-1000-rgb)
598
+ );
599
+ --ac-global-color-magenta-1100-rgb: 255, 179, 207;
600
+ --ac-global-color-magenta-1100: rgb(
601
+ var(--ac-global-color-magenta-1100-rgb)
602
+ );
603
+ --ac-global-color-magenta-1200-rgb: 254, 202, 221;
604
+ --ac-global-color-magenta-1200: rgb(
605
+ var(--ac-global-color-magenta-1200-rgb)
606
+ );
607
+ --ac-global-color-magenta-1300-rgb: 255, 221, 233;
608
+ --ac-global-color-magenta-1300: rgb(
609
+ var(--ac-global-color-magenta-1300-rgb)
610
+ );
611
+ --ac-global-color-magenta-1400-rgb: 255, 236, 243;
612
+ --ac-global-color-magenta-1400: rgb(
613
+ var(--ac-global-color-magenta-1400-rgb)
614
+ );
615
+
616
+ // Semantic colors
617
+ --ac-global-color-info-rgb: 114, 217, 255;
618
+ --ac-global-color-info: rgb(var(--ac-global-color-info-rgb));
619
+ --ac-global-color-info-900: rgba(var(--ac-global-color-info-rgb), 0.9);
620
+ --ac-global-color-info-700: rgba(var(--ac-global-color-info-rgb), 0.7);
621
+ --ac-global-color-info-500: rgba(var(--ac-global-color-info-rgb), 0.5);
622
+ --ac-global-color-danger-rgb: 248, 81, 73;
623
+ --ac-global-color-danger: rgb(var(--ac-global-color-danger-rgb));
624
+ --ac-global-color-danger-900: rgba(var(--ac-global-color-danger-rgb), 0.9);
625
+ --ac-global-color-danger-700: rgba(var(--ac-global-color-danger-rgb), 0.7);
626
+ --ac-global-color-danger-500: rgba(var(--ac-global-color-danger-rgb), 0.5);
627
+ --ac-global-color-success-rgb: 126, 231, 135;
628
+ --ac-global-color-success: rgb(var(--ac-global-color-success-rgb));
629
+ --ac-global-color-success-900: rgba(
630
+ var(--ac-global-color-success-rgb),
631
+ 0.9
632
+ );
633
+ --ac-global-color-success-700: rgba(
634
+ var(--ac-global-color-success-rgb),
635
+ 0.7
636
+ );
637
+ --ac-global-color-success-500: rgba(
638
+ var(--ac-global-color-success-rgb),
639
+ 0.5
640
+ );
641
+ --ac-global-color-warning-rgb: 230, 153, 88;
642
+ --ac-global-color-warning: rgb(var(--ac-global-color-warning-rgb));
643
+ --ac-global-color-warning-900: rgba(
644
+ var(--ac-global-color-warning-rgb),
645
+ 0.9
646
+ );
647
+ --ac-global-color-warning-700: rgba(
648
+ var(--ac-global-color-warning-rgb),
649
+ 0.7
650
+ );
651
+ --ac-global-color-warning-500: rgba(
652
+ var(--ac-global-color-warning-rgb),
653
+ 0.5
654
+ );
655
+
656
+ // Designation colors
657
+ --ac-global-color-designation-purple: #bb9ff9;
658
+ --ac-global-color-designation-turquoise: #9efcfd;
659
+
660
+ --ac-global-text-color-900: rgba(255, 255, 255, 0.9);
661
+ --ac-global-text-color-700: rgba(255, 255, 255, 0.7);
662
+ --ac-global-text-color-500: rgba(255, 255, 255, 0.5);
663
+ --ac-global-text-color-300: rgba(255, 255, 255, 0.3);
664
+ }
665
+ `,Ko=b`
666
+ :root,
667
+ .ac-theme--light {
668
+ /* Colors */
669
+
670
+ // The primary color tint for the apps
671
+ --ac-global-color-primary: rgb(9, 105, 218);
672
+ --ac-global-color-primary-900: rgba(9, 105, 218, 0.9);
673
+ --ac-global-color-primary-700: rgba(9, 105, 218, 0.7);
674
+ --ac-global-color-primary-500: rgba(9, 105, 218, 0.5);
675
+ --ac-global-color-primary-300: rgba(9, 105, 218, 0.3);
676
+
677
+ // The newer grays (grey)
678
+ --ac-global-color-grey-50-rgb: 255, 255, 255;
679
+ --ac-global-color-grey-50: rgb(var(--ac-global-color-grey-50-rgb));
680
+ --ac-global-color-grey-75-rgb: 253, 253, 253;
681
+ --ac-global-color-grey-75: rgb(var(--ac-global-color-grey-75-rgb));
682
+ --ac-global-color-grey-100-rgb: 248, 248, 248;
683
+ --ac-global-color-grey-100: rgb(var(--ac-global-color-grey-100-rgb));
684
+ --ac-global-color-grey-200-rgb: 230, 230, 230;
685
+ --ac-global-color-grey-200: rgb(var(--ac-global-color-grey-200-rgb));
686
+ --ac-global-color-grey-300-rgb: 213, 213, 213;
687
+ --ac-global-color-grey-300: rgb(var(--ac-global-color-grey-300-rgb));
688
+ --ac-global-color-grey-400-rgb: 177, 177, 177;
689
+ --ac-global-color-grey-400: rgb(var(--ac-global-color-grey-400-rgb));
690
+ --ac-global-color-grey-500-rgb: 144, 144, 144;
691
+ --ac-global-color-grey-500: rgb(var(--ac-global-color-grey-500-rgb));
692
+ --ac-global-color-grey-600-rgb: 104, 104, 104;
693
+ --ac-global-color-grey-600: rgb(var(--ac-global-color-grey-600-rgb));
694
+ --ac-global-color-grey-700-rgb: 70, 70, 70;
695
+ --ac-global-color-grey-700: rgb(var(--ac-global-color-grey-700-rgb));
696
+ --ac-global-color-grey-800-rgb: 34, 34, 34;
697
+ --ac-global-color-grey-800: rgb(var(--ac-global-color-grey-800-rgb));
698
+ --ac-global-color-grey-900-rgb: 0, 0, 0;
699
+ --ac-global-color-grey-900: rgb(var(--ac-global-color-grey-900-rgb));
700
+
701
+ --ac-global-color-red-100: #ffebe7;
702
+ --ac-global-color-red-200: #ffddd6;
703
+ --ac-global-color-red-300: #ffcdc3;
704
+ --ac-global-color-red-400: #ffb7a9;
705
+ --ac-global-color-red-500: #ff9b88;
706
+ --ac-global-color-red-600: #ff7c65;
707
+ --ac-global-color-red-700: #f75c46;
708
+ --ac-global-color-red-800: #ea3829;
709
+ --ac-global-color-red-900: #d31510;
710
+ --ac-global-color-red-1000: #b40000;
711
+ --ac-global-color-red-1100: #930000;
712
+ --ac-global-color-red-1200: #740000;
713
+ --ac-global-color-red-1300: #590000;
714
+ --ac-global-color-red-1400: #430000;
715
+ --ac-global-color-orange-100: #ffeccc;
716
+ --ac-global-color-orange-200: #ffdfad;
717
+ --ac-global-color-orange-300: #fdd291;
718
+ --ac-global-color-orange-400: #ffbb63;
719
+ --ac-global-color-orange-500: #ffa037;
720
+ --ac-global-color-orange-600: #f68511;
721
+ --ac-global-color-orange-700: #e46f00;
722
+ --ac-global-color-orange-800: #cb5d00;
723
+ --ac-global-color-orange-900: #b14c00;
724
+ --ac-global-color-orange-1000: #953d00;
725
+ --ac-global-color-orange-1100: #7a2f00;
726
+ --ac-global-color-orange-1200: #612300;
727
+ --ac-global-color-orange-1300: #491901;
728
+ --ac-global-color-orange-1400: #351201;
729
+ --ac-global-color-yellow-100: #fbf198;
730
+ --ac-global-color-yellow-200: #f8e750;
731
+ --ac-global-color-yellow-300: #f8d904;
732
+ --ac-global-color-yellow-400: #e8c600;
733
+ --ac-global-color-yellow-500: #d7b300;
734
+ --ac-global-color-yellow-600: #c49f00;
735
+ --ac-global-color-yellow-700: #b08c00;
736
+ --ac-global-color-yellow-800: #9b7800;
737
+ --ac-global-color-yellow-900: #856600;
738
+ --ac-global-color-yellow-1000: #705300;
739
+ --ac-global-color-yellow-1100: #5b4300;
740
+ --ac-global-color-yellow-1200: #483300;
741
+ --ac-global-color-yellow-1300: #362500;
742
+ --ac-global-color-yellow-1400: #281a00;
743
+ --ac-global-color-chartreuse-100: #dbfc6e;
744
+ --ac-global-color-chartreuse-200: #cbf443;
745
+ --ac-global-color-chartreuse-300: #bce92a;
746
+ --ac-global-color-chartreuse-400: #aad816;
747
+ --ac-global-color-chartreuse-500: #98c50a;
748
+ --ac-global-color-chartreuse-600: #87b103;
749
+ --ac-global-color-chartreuse-700: #769c00;
750
+ --ac-global-color-chartreuse-800: #678800;
751
+ --ac-global-color-chartreuse-900: #577400;
752
+ --ac-global-color-chartreuse-1000: #486000;
753
+ --ac-global-color-chartreuse-1100: #3a4d00;
754
+ --ac-global-color-chartreuse-1200: #2c3b00;
755
+ --ac-global-color-chartreuse-1300: #212c00;
756
+ --ac-global-color-chartreuse-1400: #181f00;
757
+ --ac-global-color-celery-100: #cdfcbf;
758
+ --ac-global-color-celery-200: #aef69d;
759
+ --ac-global-color-celery-300: #96ee85;
760
+ --ac-global-color-celery-400: #72e06a;
761
+ --ac-global-color-celery-500: #4ecf50;
762
+ --ac-global-color-celery-600: #27bb36;
763
+ --ac-global-color-celery-700: #07a721;
764
+ --ac-global-color-celery-800: #009112;
765
+ --ac-global-color-celery-900: #007c0f;
766
+ --ac-global-color-celery-1000: #00670f;
767
+ --ac-global-color-celery-1100: #00530d;
768
+ --ac-global-color-celery-1200: #00400a;
769
+ --ac-global-color-celery-1300: #003007;
770
+ --ac-global-color-celery-1400: #002205;
771
+ --ac-global-color-green-100: #cef8e0;
772
+ --ac-global-color-green-200: #adf4ce;
773
+ --ac-global-color-green-300: #89ecbc;
774
+ --ac-global-color-green-400: #67dea8;
775
+ --ac-global-color-green-500: #49cc93;
776
+ --ac-global-color-green-600: #2fb880;
777
+ --ac-global-color-green-700: #15a46e;
778
+ --ac-global-color-green-800: #008f5d;
779
+ --ac-global-color-green-900: #007a4d;
780
+ --ac-global-color-green-1000: #00653e;
781
+ --ac-global-color-green-1100: #005132;
782
+ --ac-global-color-green-1200: #053f27;
783
+ --ac-global-color-green-1300: #0a2e1d;
784
+ --ac-global-color-green-1400: #0a2015;
785
+ --ac-global-color-seafoam-100: #cef7f3;
786
+ --ac-global-color-seafoam-200: #aaf1ea;
787
+ --ac-global-color-seafoam-300: #8ce9e2;
788
+ --ac-global-color-seafoam-400: #65dad2;
789
+ --ac-global-color-seafoam-500: #3fc9c1;
790
+ --ac-global-color-seafoam-600: #0fb5ae;
791
+ --ac-global-color-seafoam-700: #00a19a;
792
+ --ac-global-color-seafoam-800: #008c87;
793
+ --ac-global-color-seafoam-900: #007772;
794
+ --ac-global-color-seafoam-1000: #00635f;
795
+ --ac-global-color-seafoam-1100: #0c4f4c;
796
+ --ac-global-color-seafoam-1200: #123c3a;
797
+ --ac-global-color-seafoam-1300: #122c2b;
798
+ --ac-global-color-seafoam-1400: #0f1f1e;
799
+ --ac-global-color-cyan-100: #c5f8ff;
800
+ --ac-global-color-cyan-200: #a4f0ff;
801
+ --ac-global-color-cyan-300: #88e7fa;
802
+ --ac-global-color-cyan-400: #60d8f3;
803
+ --ac-global-color-cyan-500: #33c5e8;
804
+ --ac-global-color-cyan-600: #12b0da;
805
+ --ac-global-color-cyan-700: #019cc8;
806
+ --ac-global-color-cyan-800: #0086b4;
807
+ --ac-global-color-cyan-900: #00719f;
808
+ --ac-global-color-cyan-1000: #005d89;
809
+ --ac-global-color-cyan-1100: #004a73;
810
+ --ac-global-color-cyan-1200: #00395d;
811
+ --ac-global-color-cyan-1300: #002a46;
812
+ --ac-global-color-cyan-1400: #001e33;
813
+ --ac-global-color-blue-100: #e0f2ff;
814
+ --ac-global-color-blue-200: #cae8ff;
815
+ --ac-global-color-blue-300: #b5deff;
816
+ --ac-global-color-blue-400: #96cefd;
817
+ --ac-global-color-blue-500: #78bbfa;
818
+ --ac-global-color-blue-600: #59a7f6;
819
+ --ac-global-color-blue-700: #3892f3;
820
+ --ac-global-color-blue-800: #147af3;
821
+ --ac-global-color-blue-900: #0265dc;
822
+ --ac-global-color-blue-1000: #0054b6;
823
+ --ac-global-color-blue-1100: #004491;
824
+ --ac-global-color-blue-1200: #003571;
825
+ --ac-global-color-blue-1300: #002754;
826
+ --ac-global-color-blue-1400: #001c3c;
827
+ --ac-global-color-indigo-100: #edeeff;
828
+ --ac-global-color-indigo-200: #e0e2ff;
829
+ --ac-global-color-indigo-300: #d3d5ff;
830
+ --ac-global-color-indigo-400: #c1c4ff;
831
+ --ac-global-color-indigo-500: #acafff;
832
+ --ac-global-color-indigo-600: #9599ff;
833
+ --ac-global-color-indigo-700: #7e84fc;
834
+ --ac-global-color-indigo-800: #686df4;
835
+ --ac-global-color-indigo-900: #5258e4;
836
+ --ac-global-color-indigo-1000: #4046ca;
837
+ --ac-global-color-indigo-1100: #3236a8;
838
+ --ac-global-color-indigo-1200: #262986;
839
+ --ac-global-color-indigo-1300: #1b1e64;
840
+ --ac-global-color-indigo-1400: #141648;
841
+ --ac-global-color-purple-100: #f6ebff;
842
+ --ac-global-color-purple-200: #edf;
843
+ --ac-global-color-purple-300: #e6d0ff;
844
+ --ac-global-color-purple-400: #dbbbfe;
845
+ --ac-global-color-purple-500: #cca4fd;
846
+ --ac-global-color-purple-600: #bd8bfc;
847
+ --ac-global-color-purple-700: #ae72f9;
848
+ --ac-global-color-purple-800: #9d57f4;
849
+ --ac-global-color-purple-900: #893de7;
850
+ --ac-global-color-purple-1000: #7326d3;
851
+ --ac-global-color-purple-1100: #5d13b7;
852
+ --ac-global-color-purple-1200: #470c94;
853
+ --ac-global-color-purple-1300: #33106a;
854
+ --ac-global-color-purple-1400: #230f49;
855
+ --ac-global-color-fuchsia-100: #ffe9fc;
856
+ --ac-global-color-fuchsia-200: #ffdafa;
857
+ --ac-global-color-fuchsia-300: #fec7f8;
858
+ --ac-global-color-fuchsia-400: #fbaef6;
859
+ --ac-global-color-fuchsia-500: #f592f3;
860
+ --ac-global-color-fuchsia-600: #ed74ed;
861
+ --ac-global-color-fuchsia-700: #e055e2;
862
+ --ac-global-color-fuchsia-800: #cd3ace;
863
+ --ac-global-color-fuchsia-900: #b622b7;
864
+ --ac-global-color-fuchsia-1000: #9d039e;
865
+ --ac-global-color-fuchsia-1100: #800081;
866
+ --ac-global-color-fuchsia-1200: #640664;
867
+ --ac-global-color-fuchsia-1300: #470e46;
868
+ --ac-global-color-fuchsia-1400: #320d31;
869
+ --ac-global-color-magenta-100: #ffeaf1;
870
+ --ac-global-color-magenta-200: #ffdce8;
871
+ --ac-global-color-magenta-300: #ffcadd;
872
+ --ac-global-color-magenta-400: #ffb2ce;
873
+ --ac-global-color-magenta-500: #ff95bd;
874
+ --ac-global-color-magenta-600: #fa77aa;
875
+ --ac-global-color-magenta-700: #ef5a98;
876
+ --ac-global-color-magenta-800: #de3d82;
877
+ --ac-global-color-magenta-900: #c82269;
878
+ --ac-global-color-magenta-1000: #ad0955;
879
+ --ac-global-color-magenta-1100: #8e0045;
880
+ --ac-global-color-magenta-1200: #700037;
881
+ --ac-global-color-magenta-1300: #54032a;
882
+ --ac-global-color-magenta-1400: #3c061d;
883
+
884
+ // Semantic colors
885
+ --ac-global-color-info: rgb(2, 173, 221);
886
+ --ac-global-color-info-900: rgba(2, 173, 221, 0.9);
887
+ --ac-global-color-info-700: rgba(2, 173, 221, 0.7);
888
+ --ac-global-color-info-500: rgba(2, 173, 221, 0.5);
889
+ --ac-global-color-danger: rgb(218, 11, 0);
890
+ --ac-global-color-danger-900: rgba(218, 11, 0, 0.9);
891
+ --ac-global-color-danger-700: rgba(218, 11, 0, 0.7);
892
+ --ac-global-color-danger-500: rgba(218, 11, 0, 0.5);
893
+ --ac-global-color-success: rgb(17, 191, 69);
894
+ --ac-global-color-success-900: rgba(17, 191, 69, 0.9);
895
+ --ac-global-color-success-700: rgba(17, 191, 69, 0.7);
896
+ --ac-global-color-success-500: rgba(17, 191, 69, 0.5);
897
+ --ac-global-color-warning: rgb(224, 102, 2);
898
+ --ac-global-color-warning-900: rgba(224, 102, 2, 0.9);
899
+ --ac-global-color-warning-700: rgba(224, 102, 2, 0.7);
900
+ --ac-global-color-warning-500: rgba(224, 102, 2, 0.5);
901
+
902
+ // Designation colors
903
+ --ac-global-color-designation-purple: #4500d9;
904
+ --ac-global-color-designation-turquoise: #00add0;
905
+
906
+ --ac-global-text-color-900: rgba(0, 0, 0, 0.9);
907
+ --ac-global-text-color-700: rgba(0, 0, 0, 0.7);
908
+ --ac-global-text-color-500: rgba(0, 0, 0, 0.5);
909
+ --ac-global-text-color-300: rgba(0, 0, 0, 0.3);
910
+ }
911
+ `,Ho=a=>b`
912
+ :root,
913
+ .ac-theme--${a} {
914
+ --ac-global-background-color-default: var(--ac-global-color-grey-100);
915
+ --ac-global-background-color-light: var(--ac-global-color-grey-200);
916
+ --ac-global-background-color-light-hover: var(--ac-global-color-grey-300);
917
+ --ac-global-background-color-dark: var(--ac-global-color-grey-100);
918
+ --ac-global-background-color-danger: var(--ac-global-color-danger);
919
+
920
+ --ac-global-border-color-default: var(--ac-global-color-grey-300);
921
+ --ac-global-border-color-light: var(--ac-global-color-grey-400);
922
+ --ac-global-border-color-dark: var(--ac-global-color-grey-300);
923
+
924
+ --ac-highlight-foreground: var(--ac-global-text-color-900);
925
+ --ac-highlight-background: var(--ac-global-color-primary-300);
926
+ --ac-focus-ring-color: var(--ac-global-color-primary-500);
927
+
928
+ // Text
929
+ --ac-text-color-placeholder: var(--ac-global-color-grey-400);
930
+
931
+ // Styles for text fields etc
932
+ --ac-global-input-field-border-color: var(--ac-global-color-grey-400);
933
+ --ac-global-input-field-border-color-hover: var(--ac-global-color-grey-300);
934
+ --ac-global-input-field-border-color-active: var(--ac-global-color-primary);
935
+ --ac-global-input-field-background-color: var(--ac-global-color-grey-200);
936
+ --ac-global-input-field-background-color-active: var(
937
+ --ac-global-color-grey-300
938
+ );
939
+
940
+ // Styles for menus
941
+ --ac-global-menu-border-color: var(--ac-global-color-grey-400);
942
+ --ac-global-menu-background-color: var(--ac-global-color-grey-200);
943
+ --ac-global-menu-item-background-color-hover: var(
944
+ --ac-global-color-grey-300
945
+ );
946
+
947
+ // Styles for buttons
948
+ --ac-global-button-primary-background-color: var(
949
+ --ac-global-color-primary-700
950
+ );
951
+ --ac-global-button-primary-background-color-hover: var(
952
+ --ac-global-color-primary-900
953
+ );
954
+ --ac-global-button-primary-border-color: var(--ac-global-color-primary);
955
+ --ac-global-button-danger-background-color: var(
956
+ --ac-global-color-danger-700
957
+ );
958
+ --ac-global-button-danger-background-color-hover: var(
959
+ --ac-global-color-danger-900
960
+ );
961
+ --ac-global-button-danger-border-color: var(--ac-global-color-danger);
962
+ --ac-global-button-success-background-color: var(
963
+ --ac-global-color-success-700
964
+ );
965
+ --ac-global-button-success-background-color-hover: var(
966
+ --ac-global-color-success-900
967
+ );
968
+ --ac-global-button-success-border-color: var(--ac-global-color-success);
969
+
970
+ // Style for tooltips
971
+ --ac-global-tooltip-background-color: var(--ac-global-color-grey-100);
972
+ --ac-global-tooltip-border-color: var(--ac-global-color-grey-300);
973
+
974
+ --ac-global-rounding-small: var(--ac-global-dimension-static-size-50);
975
+ --ac-global-rounding-medium: var(--ac-global-dimension-static-size-100);
976
+
977
+ --ac-global-border-size-thin: var(--ac-global-dimension-static-size-10);
978
+ --ac-global-border-size-thick: var(--ac-global-dimension-static-size-25);
979
+ --ac-global-border-size-thicker: var(--ac-global-dimension-static-size-50);
980
+ --ac-global-border-size-thickest: var(
981
+ --ac-global-dimension-static-size-100
982
+ );
983
+ --ac-global-border-offset-thin: var(--ac-global-dimension-static-size-25);
984
+ --ac-global-border-offset-thick: var(--ac-global-dimension-static-size-50);
985
+ --ac-global-border-offset-thicker: var(
986
+ --ac-global-dimension-static-size-100
987
+ );
988
+ --ac-global-border-offset-thickest: var(
989
+ --ac-global-dimension-static-size-200
990
+ );
991
+ --ac-global-grid-baseline: var(--ac-global-dimension-static-size-100);
992
+ --ac-global-grid-gutter-xsmall: var(--ac-global-dimension-static-size-200);
993
+ --ac-global-grid-gutter-small: var(--ac-global-dimension-static-size-300);
994
+ --ac-global-grid-gutter-medium: var(--ac-global-dimension-static-size-400);
995
+ --ac-global-grid-gutter-large: var(--ac-global-dimension-static-size-500);
996
+ --ac-global-grid-gutter-xlarge: var(--ac-global-dimension-static-size-600);
997
+ --ac-global-grid-margin-xsmall: var(--ac-global-dimension-static-size-200);
998
+ --ac-global-grid-margin-small: var(--ac-global-dimension-static-size-300);
999
+ --ac-global-grid-margin-medium: var(--ac-global-dimension-static-size-400);
1000
+ --ac-global-grid-margin-large: var(--ac-global-dimension-static-size-500);
1001
+ --ac-global-grid-margin-xlarge: var(--ac-global-dimension-static-size-600);
1002
+
1003
+ /* Aliases */
1004
+ --ac-alias-single-line-height: var(--ac-global-dimension-size-400);
1005
+ --ac-alias-single-line-width: var(--ac-global-dimension-size-2400);
1006
+ }
1007
+ `,Yo=b`
1008
+ --ac-opacity-disabled: 0.6;
1009
+ `,Qo=b`
1010
+ body {
1011
+ background-color: var(--ac-global-color-grey-75);
1012
+ color: var(--ac-global-text-color-900);
1013
+ font-family: "Roboto";
1014
+ font-size: var(--ac-global-font-size-s);
1015
+ margin: 0;
1016
+ overflow: hidden;
1017
+ #root,
1018
+ #root > div[data-overlay-container="true"],
1019
+ #root > div[data-overlay-container="true"] > .ac-theme {
1020
+ height: 100vh;
1021
+ }
1022
+ }
1023
+
1024
+ /* Remove list styling */
1025
+ ul {
1026
+ display: block;
1027
+ list-style-type: none;
1028
+ margin-block-start: none;
1029
+ margin-block-end: 0;
1030
+ padding-inline-start: 0;
1031
+ margin-block-start: 0;
1032
+ }
1033
+
1034
+ /* A reset style for buttons */
1035
+ .button--reset {
1036
+ background: none;
1037
+ border: none;
1038
+ padding: 0;
1039
+ }
1040
+ /* this css class is added to html via modernizr @see modernizr.js */
1041
+ .no-hiddenscroll {
1042
+ /* Works on Firefox */
1043
+ * {
1044
+ scrollbar-width: thin;
1045
+ scrollbar-color: var(--ac-global-color-grey-300)
1046
+ var(--ac-global-color-grey-400);
1047
+ }
1048
+
1049
+ /* Works on Chrome, Edge, and Safari */
1050
+ *::-webkit-scrollbar {
1051
+ width: 14px;
1052
+ }
1053
+
1054
+ *::-webkit-scrollbar-track {
1055
+ background: var(--ac-global-color-grey-100);
1056
+ }
1057
+
1058
+ *::-webkit-scrollbar-thumb {
1059
+ background-color: var(--ac-global-color-grey-75);
1060
+ border-radius: 8px;
1061
+ border: 1px solid var(--ac-global-color-grey-300);
1062
+ }
1063
+ }
1064
+
1065
+ :root {
1066
+ --px-section-background-color: #2f353d;
1067
+
1068
+ /** The color of shadows on menus etc. */
1069
+ --px-overlay-shadow-color: rgba(0, 0, 0, 0.4);
1070
+
1071
+ /* An item is a typically something in a list */
1072
+ --px-item-background-color: #1d2126;
1073
+ --px-item-border-color: #282e35;
1074
+
1075
+ --px-font-weight-heavy: 600;
1076
+
1077
+ --px-gradient-bar-height: 8px;
1078
+
1079
+ --px-nav-collapsed-width: 45px;
1080
+ --px-nav-expanded-width: 200px;
1081
+
1082
+ --ac-global-opacity-disabled: 0.6;
1083
+
1084
+ /* Text */
1085
+ --ac-global-font-size-xxs: 10px;
1086
+ --ac-global-font-size-xs: 12px;
1087
+ --ac-global-font-size-s: 14px;
1088
+ --ac-global-font-size-m: 16px;
1089
+ --ac-global-font-size-l: 18px;
1090
+ --ac-global-font-size-xl: 24px;
1091
+ --ac-global-font-size-xxl: 32px;
1092
+
1093
+ --ac-global-line-height-xxs: 12px;
1094
+ --ac-global-line-height-xs: 16px;
1095
+ --ac-global-line-height-s: 20px;
1096
+ --ac-global-line-height-m: 24px;
1097
+ --ac-global-line-height-l: 28px;
1098
+ --ac-global-line-height-xl: 36px;
1099
+ --ac-global-line-height-xxl: 48px;
1100
+
1101
+ /* Fields */
1102
+ --ac-global-input-field-min-width: 200px;
1103
+
1104
+ /* Modal */
1105
+ --ac-global-modal-width-S: 500px;
1106
+ --ac-global-modal-width-M: 700px;
1107
+ }
1108
+
1109
+ .ac-theme--dark {
1110
+ --px-primary-color: #9efcfd;
1111
+ --px-primary-color--transparent: rgb(158, 252, 253, 0.2);
1112
+ --px-reference-color: #baa1f9;
1113
+ --px-reference-color--transparent: #baa1f982;
1114
+ --px-corpus-color: #92969c;
1115
+ --px-corpus-color--transparent: #92969c63;
1116
+ }
1117
+ .ac-theme--light {
1118
+ --px-primary-color: #00add0;
1119
+ --px-primary-color--transparent: rgba(0, 173, 208, 0.2);
1120
+ --px-reference-color: #4500d9;
1121
+ --px-reference-color--transparent: rgba(69, 0, 217, 0.2);
1122
+ --px-corpus-color: #92969c;
1123
+ --px-corpus-color--transparent: #92969c63;
1124
+ }
1125
+ `;function Xo(){const{theme:a="dark"}=A();return o(k,{styles:b(Jo,Bo,a==="dark"?$o:Ko,Ho(a),qo,Yo,Qo)})}const Zo=S(F(c(l,{path:"/",errorElement:o(To,{}),children:[o(l,{path:"/login",element:o(j,{})}),o(l,{path:"/reset-password",element:o(O,{}),loader:D}),o(l,{path:"/reset-password-with-token",element:o(G,{})}),o(l,{path:"/forgot-password",element:o(N,{})}),o(l,{element:o(Ro,{}),loader:V,children:c(l,{element:o(Eo,{}),children:[o(l,{path:"/profile",handle:{crumb:()=>"profile"},element:o(M,{})}),o(l,{index:!0,loader:W}),c(l,{path:"/model",handle:{crumb:()=>"model"},element:o($,{}),children:[o(l,{index:!0,element:o(m,{})}),o(l,{element:o(m,{}),children:o(l,{path:"dimensions",children:o(l,{path:":dimensionId",element:o(q,{}),loader:U})})}),o(l,{path:"embeddings",children:o(l,{path:":embeddingDimensionId",element:o(J,{}),loader:B,handle:{crumb:a=>a.embedding.name}})})]}),c(l,{path:"/projects",handle:{crumb:()=>"projects"},element:o(oo,{}),children:[o(l,{index:!0,element:o(K,{})}),c(l,{path:":projectId",element:o(Z,{}),loader:H,handle:{crumb:a=>a.project.name},children:[o(l,{index:!0,element:o(p,{})}),c(l,{element:o(p,{}),children:[o(l,{path:"traces/:traceId",element:o(Y,{})}),o(l,{path:"sessions/:sessionId",element:o(X,{}),loader:Q})]})]})]}),c(l,{path:"/datasets",handle:{crumb:()=>"datasets"},children:[o(l,{index:!0,element:o(lo,{})}),c(l,{path:":datasetId",loader:u,handle:{crumb:a=>a.dataset.name},children:[c(l,{element:o(go,{}),loader:u,children:[o(l,{index:!0,element:o(y,{}),loader:f}),o(l,{path:"experiments",element:o(y,{}),loader:f}),o(l,{path:"examples",element:o(co,{}),loader:ao,children:o(l,{path:":exampleId",element:o(ro,{})})})]}),o(l,{path:"compare",handle:{crumb:()=>"compare"},loader:eo,element:o(bo,{})})]})]}),c(l,{path:"/playground",handle:{crumb:()=>"Playground"},children:[o(l,{index:!0,element:o(no,{})}),o(l,{path:"spans/:spanId",element:o(so,{}),loader:io,handle:{crumb:a=>a.span.__typename==="Span"?`span ${a.span.context.spanId}`:"span unknown"}})]}),c(l,{path:"/prompts",handle:{crumb:()=>"prompts"},children:[o(l,{index:!0,element:o(mo,{}),loader:to}),c(l,{path:":promptId",loader:po,shouldRevalidate:()=>!0,handle:{crumb:a=>a.prompt.__typename==="Prompt"?a.prompt.name:"unknown"},children:[c(l,{element:o(wo,{}),children:[o(l,{index:!0,element:o(uo,{})}),o(l,{path:"versions",loader:fo,element:o(ho,{}),children:o(l,{path:":versionId",loader:yo,element:o(vo,{})})}),o(l,{path:"config",element:o(zo,{}),loader:xo})]}),o(l,{path:"playground",element:o(ko,{}),loader:Po,handle:{crumb:()=>"playground"}})]})]}),o(l,{path:"/apis",element:o(So,{}),handle:{crumb:()=>"APIs"}}),o(l,{path:"/support",element:o(Fo,{}),handle:{crumb:()=>"support"}}),o(l,{path:"/settings",element:o(Co,{}),loader:Lo,handle:{crumb:()=>"settings"}})]})})]})),{basename:window.Config.basename});function ol(){return o(L,{router:Zo})}function ll(){return o(_o,{children:o(jo,{children:o(al,{})})})}function al(){const{theme:a}=Do();return o(I,{theme:a,mountGlobalStyles:!1,children:c(C.RelayEnvironmentProvider,{environment:Oo,children:[o(Xo,{}),o(Wo,{children:o(Go,{children:o(Ao,{children:o(t.Suspense,{children:o(No,{children:o(ol,{})})})})})})]})})}const rl=document.getElementById("root"),cl=E.createRoot(rl);cl.render(o(ll,{}));