robodev 0.22.0 → 0.24.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.
Files changed (178) hide show
  1. package/package.json +1 -1
  2. package/src/emit-starter.test.ts +36 -0
  3. package/templates/auth-chat/package.json +1 -1
  4. package/templates/backend/api/_lib.ts +9 -2
  5. package/templates/backend/package.json +1 -1
  6. package/templates/catalog.json +5 -0
  7. package/templates/empty/package.json +1 -1
  8. package/templates/marketplace/.config/local.spa.template.yml +27 -0
  9. package/templates/marketplace/.oxlint-base.json +29 -0
  10. package/templates/marketplace/.oxlintrc.json +78 -0
  11. package/templates/marketplace/.rulesync/rules/frontend-api-boundary.md +36 -0
  12. package/templates/marketplace/.rulesync/rules/frontend-component-structure.md +38 -0
  13. package/templates/marketplace/.rulesync/rules/frontend-forms.md +32 -0
  14. package/templates/marketplace/.rulesync/rules/frontend-notifications.md +24 -0
  15. package/templates/marketplace/.rulesync/rules/frontend-povio-components.md +42 -0
  16. package/templates/marketplace/.rulesync/rules/frontend-povio-ui.md +45 -0
  17. package/templates/marketplace/.rulesync/rules/frontend-query-autocomplete.md +29 -0
  18. package/templates/marketplace/.rulesync/rules/frontend-tables-and-lists.md +34 -0
  19. package/templates/marketplace/.rulesync/rules/frontend-translations.md +26 -0
  20. package/templates/marketplace/.rulesync/rules/project-overview.md +32 -0
  21. package/templates/marketplace/.rulesync/rules/robodev-api.md +30 -0
  22. package/templates/marketplace/.rulesync/rules/robodev-auth.md +40 -0
  23. package/templates/marketplace/.rulesync/rules/robodev-database.md +22 -0
  24. package/templates/marketplace/.rulesync/rules/role-based-app-structure.md +36 -0
  25. package/templates/marketplace/.rulesync/skills/media-feature/SKILL.md +21 -0
  26. package/templates/marketplace/.rulesync/skills/povio-ui-styling/SKILL.md +208 -0
  27. package/templates/marketplace/.rulesync/skills/povio-ui-styling/agents/openai.yaml +4 -0
  28. package/templates/marketplace/.rulesync/skills/robodev-api-route/SKILL.md +13 -0
  29. package/templates/marketplace/.rulesync/skills/robodev-table/SKILL.md +12 -0
  30. package/templates/marketplace/README.md +40 -0
  31. package/templates/marketplace/api/_lib.ts +677 -0
  32. package/templates/marketplace/api/cart/[id].ts +51 -0
  33. package/templates/marketplace/api/cart.ts +70 -0
  34. package/templates/marketplace/api/categories.ts +11 -0
  35. package/templates/marketplace/api/checkout.ts +157 -0
  36. package/templates/marketplace/api/health.ts +7 -0
  37. package/templates/marketplace/api/listings/[id].ts +101 -0
  38. package/templates/marketplace/api/listings/paginate.ts +29 -0
  39. package/templates/marketplace/api/listings.ts +90 -0
  40. package/templates/marketplace/api/me.ts +14 -0
  41. package/templates/marketplace/api/orders/[id]/complete.ts +27 -0
  42. package/templates/marketplace/api/orders/[id]/ship.ts +24 -0
  43. package/templates/marketplace/api/orders/[id].ts +15 -0
  44. package/templates/marketplace/api/purchases.ts +19 -0
  45. package/templates/marketplace/api/reviews.ts +58 -0
  46. package/templates/marketplace/api/sales.ts +19 -0
  47. package/templates/marketplace/api/watches/[listingId].ts +18 -0
  48. package/templates/marketplace/api/watches.ts +51 -0
  49. package/templates/marketplace/apps/fe/index.html +24 -0
  50. package/templates/marketplace/apps/fe/openapi-codegen.config.ts +72 -0
  51. package/templates/marketplace/apps/fe/package.json +84 -0
  52. package/templates/marketplace/apps/fe/public/apple-touch-icon.png +0 -0
  53. package/templates/marketplace/apps/fe/public/favicon-96x96.png +0 -0
  54. package/templates/marketplace/apps/fe/public/favicon.ico +0 -0
  55. package/templates/marketplace/apps/fe/public/favicon.svg +3 -0
  56. package/templates/marketplace/apps/fe/public/site.webmanifest +21 -0
  57. package/templates/marketplace/apps/fe/public/web-app-manifest-192x192.png +0 -0
  58. package/templates/marketplace/apps/fe/public/web-app-manifest-512x512.png +0 -0
  59. package/templates/marketplace/apps/fe/src/assets/fonts/GeneralSans-Bold.otf +0 -0
  60. package/templates/marketplace/apps/fe/src/assets/fonts/GeneralSans-Medium.otf +0 -0
  61. package/templates/marketplace/apps/fe/src/assets/fonts/GeneralSans-Regular.otf +0 -0
  62. package/templates/marketplace/apps/fe/src/assets/fonts/GeneralSans-Semibold.otf +0 -0
  63. package/templates/marketplace/apps/fe/src/assets/locales/en/translation.json +335 -0
  64. package/templates/marketplace/apps/fe/src/assets/locales/sl/translation.json +335 -0
  65. package/templates/marketplace/apps/fe/src/clients/app-rest-client.ts +15 -0
  66. package/templates/marketplace/apps/fe/src/clients/auth-token-store.ts +101 -0
  67. package/templates/marketplace/apps/fe/src/clients/rest/app-error-handler.ts +31 -0
  68. package/templates/marketplace/apps/fe/src/clients/rest/interceptors/authorization-header.interceptor.ts +15 -0
  69. package/templates/marketplace/apps/fe/src/clients/rest/interceptors/refresh-token.interceptor.ts +37 -0
  70. package/templates/marketplace/apps/fe/src/clients/rest/interceptors/response.interceptor.ts +17 -0
  71. package/templates/marketplace/apps/fe/src/components/404.tsx +18 -0
  72. package/templates/marketplace/apps/fe/src/components/features/auth/AuthBrandPanel.tsx +60 -0
  73. package/templates/marketplace/apps/fe/src/components/features/auth/AuthLayout.tsx +23 -0
  74. package/templates/marketplace/apps/fe/src/components/features/auth/LoginPage.tsx +111 -0
  75. package/templates/marketplace/apps/fe/src/components/features/auth/RegisterPage.tsx +143 -0
  76. package/templates/marketplace/apps/fe/src/components/features/marketplace/BrowsePage.tsx +76 -0
  77. package/templates/marketplace/apps/fe/src/components/features/marketplace/CartPage.tsx +88 -0
  78. package/templates/marketplace/apps/fe/src/components/features/marketplace/CheckoutPage.tsx +193 -0
  79. package/templates/marketplace/apps/fe/src/components/features/marketplace/ListingCard.tsx +50 -0
  80. package/templates/marketplace/apps/fe/src/components/features/marketplace/ListingDetailsPage.tsx +152 -0
  81. package/templates/marketplace/apps/fe/src/components/features/marketplace/ListingFormPage.tsx +243 -0
  82. package/templates/marketplace/apps/fe/src/components/features/marketplace/MyListingsPage.tsx +84 -0
  83. package/templates/marketplace/apps/fe/src/components/features/marketplace/OrdersPage.tsx +224 -0
  84. package/templates/marketplace/apps/fe/src/components/features/marketplace/WatchlistPage.tsx +56 -0
  85. package/templates/marketplace/apps/fe/src/components/features/profile/ProfilePage.tsx +96 -0
  86. package/templates/marketplace/apps/fe/src/components/googleAnalytics/GoogleAnalytics.tsx +35 -0
  87. package/templates/marketplace/apps/fe/src/components/layout/AppLayout.tsx +19 -0
  88. package/templates/marketplace/apps/fe/src/components/layout/app-header/AppHeader.tsx +95 -0
  89. package/templates/marketplace/apps/fe/src/components/layout/app-header/MobileNavigation.tsx +55 -0
  90. package/templates/marketplace/apps/fe/src/components/layout/app-header/NavLink.tsx +29 -0
  91. package/templates/marketplace/apps/fe/src/components/shared/branding/BrandLogo.tsx +13 -0
  92. package/templates/marketplace/apps/fe/src/components/shared/error/ErrorFallback.tsx +43 -0
  93. package/templates/marketplace/apps/fe/src/components/shared/error/ErrorText.tsx +20 -0
  94. package/templates/marketplace/apps/fe/src/components/shared/error/NotFound.tsx +36 -0
  95. package/templates/marketplace/apps/fe/src/components/shared/forms/RequiredLabel.tsx +21 -0
  96. package/templates/marketplace/apps/fe/src/components/shared/forms/RowInputWrapper.tsx +50 -0
  97. package/templates/marketplace/apps/fe/src/components/shared/head/AppHead.tsx +32 -0
  98. package/templates/marketplace/apps/fe/src/components/shared/head/DefaultAppHead.tsx +34 -0
  99. package/templates/marketplace/apps/fe/src/components/shared/layout/LoadingState.tsx +9 -0
  100. package/templates/marketplace/apps/fe/src/components/shared/layout/ThinPageWrapper.tsx +5 -0
  101. package/templates/marketplace/apps/fe/src/components/shared/page/PageHeader.tsx +69 -0
  102. package/templates/marketplace/apps/fe/src/components/shared/ui/Card.tsx +60 -0
  103. package/templates/marketplace/apps/fe/src/components/shared/ui/GoogleLoginButton.tsx +19 -0
  104. package/templates/marketplace/apps/fe/src/components/shared/ui/RequiredLabel.tsx +22 -0
  105. package/templates/marketplace/apps/fe/src/components/shared/ui/TableActions.tsx +22 -0
  106. package/templates/marketplace/apps/fe/src/config/app.config.ts +35 -0
  107. package/templates/marketplace/apps/fe/src/config/i18n.ts +43 -0
  108. package/templates/marketplace/apps/fe/src/config/inits/a11y.ts +14 -0
  109. package/templates/marketplace/apps/fe/src/config/inits/logger.ts +7 -0
  110. package/templates/marketplace/apps/fe/src/config/inits/sentry.ts +21 -0
  111. package/templates/marketplace/apps/fe/src/config/jwt.config.ts +2 -0
  112. package/templates/marketplace/apps/fe/src/config/query.config.ts +20 -0
  113. package/templates/marketplace/apps/fe/src/hooks/useAuth.ts +5 -0
  114. package/templates/marketplace/apps/fe/src/main.tsx +52 -0
  115. package/templates/marketplace/apps/fe/src/pages/(guest)/login.tsx +23 -0
  116. package/templates/marketplace/apps/fe/src/pages/(guest)/register.tsx +23 -0
  117. package/templates/marketplace/apps/fe/src/pages/(guest)/route.tsx +18 -0
  118. package/templates/marketplace/apps/fe/src/pages/(private)/cart.tsx +22 -0
  119. package/templates/marketplace/apps/fe/src/pages/(private)/checkout.tsx +22 -0
  120. package/templates/marketplace/apps/fe/src/pages/(private)/index.tsx +22 -0
  121. package/templates/marketplace/apps/fe/src/pages/(private)/listings/$id/index.tsx +37 -0
  122. package/templates/marketplace/apps/fe/src/pages/(private)/my-listings.tsx +22 -0
  123. package/templates/marketplace/apps/fe/src/pages/(private)/orders/$id.tsx +40 -0
  124. package/templates/marketplace/apps/fe/src/pages/(private)/orders/index.tsx +22 -0
  125. package/templates/marketplace/apps/fe/src/pages/(private)/profile.tsx +23 -0
  126. package/templates/marketplace/apps/fe/src/pages/(private)/route.tsx +18 -0
  127. package/templates/marketplace/apps/fe/src/pages/(private)/sales.tsx +22 -0
  128. package/templates/marketplace/apps/fe/src/pages/(private)/sell/$id.tsx +44 -0
  129. package/templates/marketplace/apps/fe/src/pages/(private)/sell/index.tsx +19 -0
  130. package/templates/marketplace/apps/fe/src/pages/(private)/watchlist.tsx +22 -0
  131. package/templates/marketplace/apps/fe/src/pages/(public)/auth.tsx +37 -0
  132. package/templates/marketplace/apps/fe/src/pages/(public)/route.tsx +9 -0
  133. package/templates/marketplace/apps/fe/src/pages/__root.tsx +164 -0
  134. package/templates/marketplace/apps/fe/src/providers/AppErrorBoundary.tsx +10 -0
  135. package/templates/marketplace/apps/fe/src/providers/OpenApiRuntimeProvider.tsx +31 -0
  136. package/templates/marketplace/apps/fe/src/providers/index.tsx +44 -0
  137. package/templates/marketplace/apps/fe/src/providers/jwt.provider.tsx +95 -0
  138. package/templates/marketplace/apps/fe/src/routeTree.gen.ts +435 -0
  139. package/templates/marketplace/apps/fe/src/styles/base.css +103 -0
  140. package/templates/marketplace/apps/fe/src/styles/fonts/fonts.tsx +10 -0
  141. package/templates/marketplace/apps/fe/src/styles/fonts/general-sans.css +31 -0
  142. package/templates/marketplace/apps/fe/src/styles/globals.css +28 -0
  143. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/button.override.ts +536 -0
  144. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/checkbox.override.ts +71 -0
  145. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/input.override.ts +252 -0
  146. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/label.override.ts +91 -0
  147. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/modal.override.ts +57 -0
  148. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/radio.override.ts +46 -0
  149. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/table.override.ts +104 -0
  150. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/tag.override.ts +66 -0
  151. package/templates/marketplace/apps/fe/src/styles/overrides/defaults/typography.override.ts +115 -0
  152. package/templates/marketplace/apps/fe/src/styles/overrides/outline.clsx.ts +10 -0
  153. package/templates/marketplace/apps/fe/src/styles/overrides/uiOverrides.override.ts +60 -0
  154. package/templates/marketplace/apps/fe/src/styles/theme.css +2177 -0
  155. package/templates/marketplace/apps/fe/src/types/i18next.d.ts +12 -0
  156. package/templates/marketplace/apps/fe/src/types/table.d.ts +17 -0
  157. package/templates/marketplace/apps/fe/src/types/ui.d.ts +26 -0
  158. package/templates/marketplace/apps/fe/src/types/vite-env.d.ts +20 -0
  159. package/templates/marketplace/apps/fe/src/utils/date.utils.ts +17 -0
  160. package/templates/marketplace/apps/fe/src/utils/image-fallback.ts +9 -0
  161. package/templates/marketplace/apps/fe/src/utils/listing-form.test.ts +69 -0
  162. package/templates/marketplace/apps/fe/src/utils/listing-form.ts +77 -0
  163. package/templates/marketplace/apps/fe/src/utils/listing-submit.ts +29 -0
  164. package/templates/marketplace/apps/fe/src/utils/number.utils.ts +12 -0
  165. package/templates/marketplace/apps/fe/src/utils/string.utils.ts +5 -0
  166. package/templates/marketplace/apps/fe/src/vite-env.d.ts +1 -0
  167. package/templates/marketplace/apps/fe/tsconfig.app.json +32 -0
  168. package/templates/marketplace/apps/fe/tsconfig.json +9 -0
  169. package/templates/marketplace/apps/fe/tsconfig.node.json +31 -0
  170. package/templates/marketplace/apps/fe/vite.config.ts +125 -0
  171. package/templates/marketplace/database.ts +154 -0
  172. package/templates/marketplace/openapi.json +2303 -0
  173. package/templates/marketplace/oxfmt.config.js +23 -0
  174. package/templates/marketplace/package.json +18 -0
  175. package/templates/marketplace/rulesync.jsonc +18 -0
  176. package/templates/marketplace/tsconfig.json +11 -0
  177. package/templates/space/api/_lib.ts +9 -2
  178. package/templates/space/package.json +1 -1
@@ -0,0 +1,2177 @@
1
+ @layer base {
2
+ :root {
3
+ --elevation-fill-default-1-base: 255 255 255;
4
+ --elevation-fill-default-2-base: 248 249 249;
5
+ --elevation-outline-default-1-base: 218 220 221;
6
+ --elevation-outline-default-2-base: 198 200 201;
7
+ --interactive-contained-primary-on-idle-base: 255 255 255;
8
+ --interactive-contained-primary-idle-base: 0 90 154;
9
+ --interactive-contained-primary-hover-base: 46 142 210;
10
+ --interactive-contained-primary-disabled-base: 155 194 221;
11
+ --interactive-contained-primary-focus-base: 95 170 224;
12
+ --interactive-contained-secondary-on-idle-base: 255 255 255;
13
+ --interactive-contained-secondary-idle-base: 79 85 88;
14
+ --interactive-contained-secondary-hover-base: 111 114 116;
15
+ --interactive-contained-secondary-disabled-base: 176 178 179;
16
+ --interactive-contained-secondary-focus-base: 25 26 27;
17
+ --interactive-outlined-primary-on-idle-base: 0 90 154;
18
+ --interactive-outlined-primary-outline-idle-base: 0 90 154;
19
+ --interactive-outlined-primary-outline-hover-base: 46 142 210;
20
+ --interactive-outlined-primary-outline-disabled-base: 194 214 229;
21
+ --interactive-outlined-primary-focus-base: 95 170 224;
22
+ --text-default-1-base: 25 26 27;
23
+ --text-default-2-base: 79 85 88;
24
+ --text-inverted-1-base: 234 238 240;
25
+ --text-inverted-2-base: 218 220 221;
26
+ --text-default-3-base: 111 114 116;
27
+ --text-inverted-3-base: 198 200 201;
28
+ --interactive-contained-primary-pressed-base: 95 170 224;
29
+ --interactive-contained-secondary-pressed-base: 140 142 144;
30
+ --interactive-outlined-primary-outline-pressed-base: 95 170 224;
31
+ --elevation-fill-default-3-base: 234 238 240;
32
+ --input-outlined-idle-base: 255 255 255;
33
+ --input-outlined-active-base: 255 255 255;
34
+ --input-filled-idle-base: 234 238 240;
35
+ --input-filled-active-base: 255 255 255;
36
+ --input-outlined-hover-base: 255 255 255;
37
+ --input-outlined-error-base: 255 255 255;
38
+ --input-outlined-disabled-base: 255 255 255;
39
+ --input-filled-hover-base: 234 238 240;
40
+ --input-filled-error-base: 234 238 240;
41
+ --input-filled-disabled-base: 234 238 240;
42
+ --interactive-contained-success-on-idle-base: 255 255 255;
43
+ --interactive-contained-success-idle-base: 47 146 118;
44
+ --interactive-contained-success-hover-base: 76 175 144;
45
+ --interactive-contained-success-pressed-base: 115 196 170;
46
+ --interactive-contained-success-disabled-base: 159 216 197;
47
+ --interactive-contained-success-focus-base: 25 26 27;
48
+ --interactive-contained-warning-on-idle-base: 255 255 255;
49
+ --interactive-contained-warning-idle-base: 208 125 36;
50
+ --interactive-contained-warning-hover-base: 226 149 58;
51
+ --interactive-contained-warning-pressed-base: 238 177 95;
52
+ --interactive-contained-warning-disabled-base: 246 207 149;
53
+ --interactive-contained-warning-focus-base: 25 26 27;
54
+ --interactive-contained-error-on-idle-base: 255 255 255;
55
+ --interactive-contained-error-idle-base: 159 54 44;
56
+ --interactive-contained-error-hover-base: 184 69 58;
57
+ --interactive-contained-error-pressed-base: 201 101 91;
58
+ --interactive-contained-error-disabled-base: 217 141 133;
59
+ --interactive-contained-error-focus-base: 25 26 27;
60
+ --interactive-outlined-secondary-on-idle-base: 79 85 88;
61
+ --interactive-outlined-secondary-outline-idle-base: 79 85 88;
62
+ --interactive-outlined-secondary-outline-hover-base: 79 85 88;
63
+ --interactive-outlined-secondary-outline-pressed-base: 140 142 144;
64
+ --interactive-outlined-secondary-outline-disabled-base: 198 200 201;
65
+ --interactive-outlined-secondary-focus-base: 25 26 27;
66
+ --interactive-outlined-success-on-idle-base: 47 146 118;
67
+ --interactive-outlined-success-outline-idle-base: 47 146 118;
68
+ --interactive-outlined-success-outline-hover-base: 76 175 144;
69
+ --interactive-outlined-success-outline-pressed-base: 115 196 170;
70
+ --interactive-outlined-success-outline-disabled-base: 191 232 218;
71
+ --interactive-outlined-success-focus-base: 25 26 27;
72
+ --interactive-outlined-warning-on-idle-base: 208 125 36;
73
+ --interactive-outlined-warning-outline-idle-base: 208 125 36;
74
+ --interactive-outlined-warning-outline-hover-base: 226 149 58;
75
+ --interactive-outlined-warning-outline-pressed-base: 238 177 95;
76
+ --interactive-outlined-warning-outline-disabled-base: 246 207 149;
77
+ --interactive-outlined-warning-focus-base: 25 26 27;
78
+ --interactive-outlined-error-on-idle-base: 159 54 44;
79
+ --interactive-outlined-error-outline-idle-base: 159 54 44;
80
+ --interactive-outlined-error-outline-hover-base: 184 69 58;
81
+ --interactive-outlined-error-outline-pressed-base: 201 101 91;
82
+ --interactive-outlined-error-outline-disabled-base: 232 182 176;
83
+ --interactive-outlined-error-focus-base: 25 26 27;
84
+ --interactive-subtle-primary-on-idle-base: 0 75 127;
85
+ --interactive-subtle-primary-idle-base: 217 233 244;
86
+ --interactive-subtle-primary-hover-base: 217 233 244;
87
+ --interactive-subtle-primary-pressed-base: 194 214 229;
88
+ --interactive-subtle-primary-disabled-base: 240 248 254;
89
+ --interactive-subtle-primary-focus-base: 95 170 224;
90
+ --interactive-subtle-secondary-on-idle-base: 79 85 88;
91
+ --interactive-subtle-secondary-idle-base: 234 238 240;
92
+ --interactive-subtle-secondary-hover-base: 198 200 201;
93
+ --interactive-subtle-secondary-pressed-base: 176 178 179;
94
+ --interactive-subtle-secondary-disabled-base: 218 220 221;
95
+ --interactive-subtle-secondary-focus-base: 25 26 27;
96
+ --interactive-subtle-success-on-idle-base: 29 95 79;
97
+ --interactive-subtle-success-idle-base: 218 243 234;
98
+ --interactive-subtle-success-hover-base: 191 232 218;
99
+ --interactive-subtle-success-pressed-base: 159 216 197;
100
+ --interactive-subtle-success-disabled-base: 218 243 234;
101
+ --interactive-subtle-success-focus-base: 25 26 27;
102
+ --interactive-subtle-warning-on-idle-base: 120 71 21;
103
+ --interactive-subtle-warning-idle-base: 253 231 200;
104
+ --interactive-subtle-warning-hover-base: 246 207 149;
105
+ --interactive-subtle-warning-pressed-base: 238 177 95;
106
+ --interactive-subtle-warning-disabled-base: 253 231 200;
107
+ --interactive-subtle-warning-focus-base: 25 26 27;
108
+ --interactive-subtle-error-on-idle-base: 107 38 32;
109
+ --interactive-subtle-error-idle-base: 244 217 214;
110
+ --interactive-subtle-error-hover-base: 232 182 176;
111
+ --interactive-subtle-error-pressed-base: 217 141 133;
112
+ --interactive-subtle-error-disabled-base: 244 217 214;
113
+ --interactive-subtle-error-focus-base: 25 26 27;
114
+ --interactive-subtle-primary-on-disabled-base: 155 194 221;
115
+ --interactive-subtle-secondary-on-disabled-base: 176 178 179;
116
+ --interactive-subtle-success-on-disabled-base: 115 196 170;
117
+ --interactive-subtle-warning-on-disabled-base: 238 177 95;
118
+ --interactive-subtle-error-on-disabled-base: 201 101 91;
119
+ --text-success-1-base: 35 118 98;
120
+ --text-warning-1-base: 150 86 24;
121
+ --text-error-1-base: 159 54 44;
122
+ --interactive-text-primary-idle-base: 0 90 154;
123
+ --interactive-text-primary-hover-base: 46 142 210;
124
+ --interactive-text-primary-pressed-base: 95 170 224;
125
+ --interactive-text-primary-disabled-base: 155 194 221;
126
+ --interactive-text-primary-idle-inverted-base: 240 248 254;
127
+ --interactive-text-primary-hover-inverted-base: 155 194 221;
128
+ --interactive-text-primary-pressed-inverted-base: 46 142 210;
129
+ --interactive-text-secondary-idle-base: 79 85 88;
130
+ --interactive-text-secondary-hover-base: 111 114 116;
131
+ --interactive-text-secondary-pressed-base: 140 142 144;
132
+ --interactive-text-secondary-disabled-base: 176 178 179;
133
+ --interactive-text-secondary-idle-inverted-base: 248 249 249;
134
+ --interactive-text-secondary-hover-inverted-base: 218 220 221;
135
+ --interactive-text-secondary-pressed-inverted-base: 198 200 201;
136
+ --interactive-text-success-idle-base: 47 146 118;
137
+ --interactive-text-success-hover-base: 76 175 144;
138
+ --interactive-text-success-pressed-base: 115 196 170;
139
+ --interactive-text-success-disabled-base: 191 232 218;
140
+ --interactive-text-success-idle-inverted-base: 240 253 245;
141
+ --interactive-text-success-hover-inverted-base: 191 232 218;
142
+ --interactive-text-success-pressed-inverted-base: 115 196 170;
143
+ --interactive-text-warning-idle-base: 208 125 36;
144
+ --interactive-text-warning-hover-base: 226 149 58;
145
+ --interactive-text-warning-pressed-base: 238 177 95;
146
+ --interactive-text-warning-disabled-base: 246 207 149;
147
+ --interactive-text-warning-idle-inverted-base: 255 246 235;
148
+ --interactive-text-warning-hover-inverted-base: 246 207 149;
149
+ --interactive-text-warning-pressed-inverted-base: 238 177 95;
150
+ --interactive-text-error-idle-base: 159 54 44;
151
+ --interactive-text-error-hover-base: 184 69 58;
152
+ --interactive-text-error-pressed-base: 201 101 91;
153
+ --interactive-text-error-disabled-base: 140 142 144;
154
+ --interactive-text-error-idle-inverted-base: 254 243 242;
155
+ --interactive-text-error-hover-inverted-base: 232 182 176;
156
+ --interactive-text-error-pressed-inverted-base: 217 141 133;
157
+ --support-default-base: 0 0 0;
158
+ --support-inverted-base: 255 255 255;
159
+ --interactive-outlined-primary-hover-base: 240 248 254;
160
+ --interactive-outlined-secondary-hover-base: 248 249 249;
161
+ --interactive-outlined-success-hover-base: 240 253 245;
162
+ --interactive-outlined-warning-hover-base: 255 246 235;
163
+ --interactive-outlined-error-hover-base: 254 243 242;
164
+ --elevation-outline-default-3-base: 176 178 179;
165
+ --elevation-outline-inverted-1-base: 35 37 38;
166
+ --elevation-outline-inverted-2-base: 79 85 88;
167
+ --elevation-outline-inverted-3-base: 111 114 116;
168
+ --elevation-outline-success-1-base: 115 196 170;
169
+ --elevation-outline-warning-1-base: 238 177 95;
170
+ --elevation-outline-error-1-base: 184 69 58;
171
+ --elevation-fill-inverted-1-base: 25 26 27;
172
+ --elevation-fill-inverted-2-base: 35 37 38;
173
+ --elevation-fill-inverted-3-base: 79 85 88;
174
+ --elevation-fill-success-1-base: 47 146 118;
175
+ --elevation-fill-warning-1-base: 208 125 36;
176
+ --elevation-fill-error-1-base: 159 54 44;
177
+ --text-success-2-base: 47 146 118;
178
+ --text-warning-2-base: 226 149 58;
179
+ --text-error-2-base: 184 69 58;
180
+ --text-success-3-base: 115 196 170;
181
+ --text-warning-3-base: 238 177 95;
182
+ --text-error-3-base: 201 101 91;
183
+ --interactive-contained-primary-on-hover-base: 255 255 255;
184
+ --interactive-contained-primary-on-pressed-base: 255 255 255;
185
+ --interactive-contained-primary-on-disabled-base: 255 255 255;
186
+ --interactive-contained-secondary-on-hover-base: 255 255 255;
187
+ --interactive-contained-secondary-on-pressed-base: 255 255 255;
188
+ --interactive-contained-secondary-on-disabled-base: 255 255 255;
189
+ --interactive-contained-success-on-hover-base: 255 255 255;
190
+ --interactive-contained-success-on-pressed-base: 255 255 255;
191
+ --interactive-contained-success-on-disabled-base: 255 255 255;
192
+ --interactive-contained-warning-on-hover-base: 255 255 255;
193
+ --interactive-contained-warning-on-pressed-base: 255 255 255;
194
+ --interactive-contained-warning-on-disabled-base: 255 255 255;
195
+ --interactive-contained-error-on-hover-base: 255 255 255;
196
+ --interactive-contained-error-on-pressed-base: 255 255 255;
197
+ --interactive-contained-error-on-disabled-base: 255 255 255;
198
+ --interactive-outlined-primary-on-hover-base: 46 142 210;
199
+ --interactive-outlined-primary-on-pressed-base: 95 170 224;
200
+ --interactive-outlined-primary-on-disabled-base: 194 214 229;
201
+ --interactive-outlined-secondary-on-hover-base: 79 85 88;
202
+ --interactive-outlined-secondary-on-pressed-base: 140 142 144;
203
+ --interactive-outlined-secondary-on-disabled-base: 198 200 201;
204
+ --interactive-outlined-success-on-hover-base: 76 175 144;
205
+ --interactive-outlined-success-on-pressed-base: 115 196 170;
206
+ --interactive-outlined-success-on-disabled-base: 191 232 218;
207
+ --interactive-outlined-warning-on-hover-base: 226 149 58;
208
+ --interactive-outlined-warning-on-pressed-base: 238 177 95;
209
+ --interactive-outlined-warning-on-disabled-base: 246 207 149;
210
+ --interactive-outlined-error-on-hover-base: 184 69 58;
211
+ --interactive-outlined-error-on-pressed-base: 201 101 91;
212
+ --interactive-outlined-error-on-disabled-base: 232 182 176;
213
+ --interactive-subtle-primary-toggled-idle-base: 0 90 154;
214
+ --interactive-subtle-primary-on-hover-base: 0 75 127;
215
+ --interactive-subtle-primary-on-pressed-base: 0 75 127;
216
+ --interactive-subtle-primary-on-toggled-idle-base: 255 255 255;
217
+ --interactive-subtle-secondary-toggled-idle-base: 25 26 27;
218
+ --interactive-subtle-secondary-on-hover-base: 79 85 88;
219
+ --interactive-subtle-secondary-on-pressed-base: 79 85 88;
220
+ --interactive-subtle-secondary-on-toggled-idle-base: 255 255 255;
221
+ --interactive-subtle-success-on-hover-base: 29 95 79;
222
+ --interactive-subtle-success-on-pressed-base: 29 95 79;
223
+ --interactive-subtle-warning-on-hover-base: 120 71 21;
224
+ --interactive-subtle-warning-on-pressed-base: 120 71 21;
225
+ --interactive-subtle-error-on-hover-base: 107 38 32;
226
+ --interactive-subtle-error-on-pressed-base: 107 38 32;
227
+ --interactive-outlined-primary-on-toggled-idle-base: 255 255 255;
228
+ --interactive-outlined-primary-on-toggled-hover-base: 255 255 255;
229
+ --interactive-outlined-primary-on-toggled-disabled-base: 194 214 229;
230
+ --interactive-outlined-primary-toggled-idle-base: 0 90 154;
231
+ --interactive-outlined-primary-toggled-hover-base: 46 142 210;
232
+ --interactive-outlined-primary-toggled-disabled-base: 95 170 224;
233
+ --interactive-outlined-primary-idle-base: #ffffff00;
234
+ --interactive-outlined-primary-pressed-base: 240 248 254;
235
+ --interactive-outlined-primary-disabled-base: #ffffff00;
236
+ --interactive-outlined-secondary-idle-base: #ffffff00;
237
+ --interactive-outlined-secondary-pressed-base: 248 249 249;
238
+ --interactive-outlined-secondary-disabled-base: #ffffff00;
239
+ --interactive-outlined-secondary-on-toggled-idle-base: 255 255 255;
240
+ --interactive-outlined-secondary-on-toggled-hover-base: 255 255 255;
241
+ --interactive-outlined-secondary-on-toggled-disabled-base: 218 220 221;
242
+ --interactive-outlined-secondary-toggled-idle-base: 25 26 27;
243
+ --interactive-outlined-secondary-toggled-hover-base: 79 85 88;
244
+ --interactive-outlined-secondary-toggled-disabled-base: 176 178 179;
245
+ --interactive-outlined-success-idle-base: #ffffff00;
246
+ --interactive-outlined-success-pressed-base: 240 253 245;
247
+ --interactive-outlined-success-disabled-base: #ffffff00;
248
+ --interactive-outlined-warning-idle-base: #ffffff00;
249
+ --interactive-outlined-warning-pressed-base: 255 246 235;
250
+ --interactive-outlined-warning-disabled-base: #ffffff00;
251
+ --interactive-outlined-error-pressed-base: 254 243 242;
252
+ --interactive-outlined-error-idle-base: #ffffff00;
253
+ --interactive-outlined-error-disabled-base: #ffffff00;
254
+ --elevation-fill-inverted-4-base: 111 114 116;
255
+ --interactive-text-primary-focus-base: 95 170 224;
256
+ --interactive-text-secondary-focus-base: 79 85 88;
257
+ --interactive-text-secondary-focus-inverted-base: 198 200 201;
258
+ --interactive-text-primary-focus-inverted-base: 155 194 221;
259
+ --interactive-text-success-focus-base: 47 146 118;
260
+ --interactive-text-success-focus-inverted-base: 191 232 218;
261
+ --interactive-text-warning-focus-base: 208 125 36;
262
+ --interactive-text-warning-focus-inverted-base: 253 231 200;
263
+ --interactive-text-error-focus-base: 159 54 44;
264
+ --interactive-text-error-focus-inverted-base: 254 243 242;
265
+ --interactive-subtle-secondary-on-toggled-hover-base: 255 255 255;
266
+ --interactive-subtle-secondary-on-toggled-disabled-base: 218 220 221;
267
+ --interactive-subtle-secondary-toggled-hover-base: 79 85 88;
268
+ --interactive-subtle-secondary-toggled-disabled-base: 176 178 179;
269
+ --interactive-text-primary-disabled-inverted-base: 0 75 127;
270
+ --interactive-text-secondary-disabled-inverted-base: 140 142 144;
271
+ --interactive-text-success-disabled-inverted-base: 29 95 79;
272
+ --interactive-text-warning-disabled-inverted-base: 184 104 28;
273
+ --interactive-text-error-disabled-inverted-base: 132 45 37;
274
+ --interactive-subtle-primary-on-toggled-hover-base: 255 255 255;
275
+ --interactive-subtle-primary-on-toggled-disabled-base: 194 214 229;
276
+ --interactive-subtle-primary-toggled-hover-base: 46 142 210;
277
+ --interactive-subtle-primary-toggled-disabled-base: 95 170 224;
278
+ --input-outlined-outline-idle-base: 198 200 201;
279
+ --input-outlined-outline-hover-base: 46 142 210;
280
+ --input-outlined-outline-active-base: 0 90 154;
281
+ --input-outlined-outline-error-base: 184 69 58;
282
+ --input-outlined-outline-disabled-base: 218 220 221;
283
+ --input-filled-outline-error-base: 184 69 58;
284
+ --input-filled-outline-hover-base: 79 85 88;
285
+ --input-filled-outline-active-base: 0 90 154;
286
+ --support-overlay-base: #00000066;
287
+ --focus-base: 25 26 27;
288
+ --shadow-5-base: #0000000d;
289
+ --shadow-6-base: #0000000f;
290
+ --shadow-10-base: #0000001a;
291
+ --shadow-4-base: #0000000a;
292
+ --shadow-25-base: #00000040;
293
+ --text-success-inverted-1-base: 240 253 245;
294
+ --text-success-inverted-2-base: 218 243 234;
295
+ --text-success-inverted-3-base: 191 232 218;
296
+ --text-warning-inverted-1-base: 255 246 235;
297
+ --text-warning-inverted-2-base: 253 231 200;
298
+ --text-warning-inverted-3-base: 246 207 149;
299
+ --text-error-inverted-1-base: 254 243 242;
300
+ --text-error-inverted-2-base: 244 217 214;
301
+ --text-error-inverted-3-base: 232 182 176;
302
+ --interactive-contained-primary-on-toggled-idle-base: 255 255 255;
303
+ --interactive-contained-primary-on-toggled-hover-base: 248 249 249;
304
+ --interactive-contained-primary-on-toggled-disabled-base: 46 142 210;
305
+ --interactive-contained-primary-toggled-hover-base: 0 90 154;
306
+ --interactive-contained-primary-toggled-disabled-base: 0 75 127;
307
+ --interactive-contained-primary-toggled-idle-base: 0 75 127;
308
+ --interactive-contained-secondary-on-toggled-hover-base: 248 249 249;
309
+ --interactive-contained-secondary-on-toggled-disabled-base: 176 178 179;
310
+ --interactive-contained-secondary-toggled-idle-base: 25 26 27;
311
+ --interactive-contained-secondary-toggled-hover-base: 35 37 38;
312
+ --interactive-contained-secondary-toggled-disabled-base: 111 114 116;
313
+ --interactive-contained-secondary-on-toggled-idle-base: 255 255 255;
314
+ --interactive-contained-success-on-toggled-hover-base: 248 249 249;
315
+ --interactive-contained-success-on-toggled-disabled-base: 76 175 144;
316
+ --interactive-contained-success-on-toggled-idle-base: 255 255 255;
317
+ --interactive-contained-success-toggled-hover-base: 47 146 118;
318
+ --interactive-contained-success-toggled-disabled-base: 35 118 98;
319
+ --interactive-contained-success-toggled-idle-base: 35 118 98;
320
+ --interactive-contained-warning-on-toggled-hover-base: 248 249 249;
321
+ --interactive-contained-warning-on-toggled-disabled-base: 226 149 58;
322
+ --interactive-contained-warning-toggled-idle-base: 184 104 28;
323
+ --interactive-contained-warning-toggled-hover-base: 208 125 36;
324
+ --interactive-contained-warning-toggled-disabled-base: 184 104 28;
325
+ --interactive-contained-warning-on-toggled-idle-base: 255 255 255;
326
+ --interactive-contained-error-on-toggled-idle-base: 255 255 255;
327
+ --interactive-contained-error-toggled-hover-base: 159 54 44;
328
+ --interactive-contained-error-toggled-idle-base: 132 45 37;
329
+ --interactive-contained-error-on-toggled-disabled-base: 184 69 58;
330
+ --interactive-contained-error-toggled-disabled-base: 132 45 37;
331
+ --interactive-contained-error-on-toggled-hover-base: 248 249 249;
332
+ --interactive-subtle-success-toggled-disabled-base: 191 232 218;
333
+ --interactive-subtle-success-toggled-hover-base: 115 196 170;
334
+ --interactive-subtle-success-on-toggled-disabled-base: 115 196 170;
335
+ --interactive-subtle-success-toggled-idle-base: 115 196 170;
336
+ --interactive-subtle-success-on-toggled-idle-base: 23 74 63;
337
+ --interactive-subtle-success-on-toggled-hover-base: 15 47 40;
338
+ --interactive-subtle-warning-on-toggled-idle-base: 96 58 18;
339
+ --interactive-subtle-warning-toggled-disabled-base: 253 231 200;
340
+ --interactive-subtle-warning-toggled-idle-base: 208 125 36;
341
+ --interactive-subtle-warning-toggled-hover-base: 238 177 95;
342
+ --interactive-subtle-warning-on-toggled-disabled-base: 238 177 95;
343
+ --interactive-subtle-warning-on-toggled-hover-base: 54 32 9;
344
+ --interactive-subtle-error-on-toggled-idle-base: 86 31 27;
345
+ --interactive-subtle-error-toggled-idle-base: 201 101 91;
346
+ --interactive-subtle-error-toggled-disabled-base: 232 182 176;
347
+ --interactive-subtle-error-toggled-hover-base: 201 101 91;
348
+ --interactive-subtle-error-on-toggled-disabled-base: 201 101 91;
349
+ --interactive-subtle-error-on-toggled-hover-base: 51 16 14;
350
+ --support-transparent-outline-base: #ffffff00;
351
+ --interactive-outlined-success-on-toggled-idle-base: 255 255 255;
352
+ --interactive-outlined-success-on-toggled-hover-base: 248 249 249;
353
+ --interactive-outlined-success-toggled-disabled-base: 35 118 98;
354
+ --interactive-outlined-success-toggled-hover-base: 47 146 118;
355
+ --interactive-outlined-success-toggled-idle-base: 35 118 98;
356
+ --interactive-outlined-success-on-toggled-disabled-base: 47 146 118;
357
+ --interactive-outlined-warning-on-toggled-idle-base: 255 255 255;
358
+ --interactive-outlined-warning-toggled-disabled-base: 184 104 28;
359
+ --interactive-outlined-warning-on-toggled-hover-base: 248 249 249;
360
+ --interactive-outlined-warning-toggled-hover-base: 208 125 36;
361
+ --interactive-outlined-warning-on-toggled-disabled-base: 226 149 58;
362
+ --interactive-outlined-warning-toggled-idle-base: 184 104 28;
363
+ --interactive-outlined-error-toggled-hover-base: 159 54 44;
364
+ --interactive-outlined-error-toggled-disabled-base: 132 45 37;
365
+ --interactive-outlined-error-toggled-idle-base: 132 45 37;
366
+ --interactive-outlined-error-on-toggled-idle-base: 255 255 255;
367
+ --interactive-outlined-error-on-toggled-disabled-base: 184 69 58;
368
+ --interactive-outlined-error-on-toggled-hover-base: 248 249 249;
369
+ --interactive-ghost-primary-on-idle-base: 0 75 127;
370
+ --interactive-ghost-primary-on-hover-base: 0 75 127;
371
+ --interactive-ghost-primary-on-pressed-base: 0 75 127;
372
+ --interactive-ghost-primary-on-disabled-base: 155 194 221;
373
+ --interactive-ghost-primary-idle-base: #f0f5fe00;
374
+ --interactive-ghost-primary-hover-base: 217 233 244;
375
+ --interactive-ghost-primary-pressed-base: 194 214 229;
376
+ --interactive-ghost-primary-disabled-base: 240 248 254;
377
+ --interactive-ghost-primary-focus-base: 95 170 224;
378
+ --interactive-ghost-secondary-on-idle-base: 79 85 88;
379
+ --interactive-ghost-primary-on-toggled-idle-base: 0 75 127;
380
+ --interactive-ghost-primary-on-toggled-hover-base: 0 75 127;
381
+ --interactive-ghost-primary-on-toggled-disabled-base: 95 170 224;
382
+ --interactive-ghost-secondary-on-hover-base: 79 85 88;
383
+ --interactive-ghost-secondary-on-pressed-base: 79 85 88;
384
+ --interactive-ghost-secondary-on-disabled-base: 198 200 201;
385
+ --interactive-ghost-secondary-idle-base: #ebedef00;
386
+ --interactive-ghost-primary-toggled-idle-base: 217 233 244;
387
+ --interactive-ghost-secondary-hover-base: 218 220 221;
388
+ --interactive-ghost-secondary-pressed-base: 198 200 201;
389
+ --interactive-ghost-secondary-disabled-base: 234 238 240;
390
+ --interactive-ghost-secondary-focus-base: 25 26 27;
391
+ --interactive-ghost-secondary-on-toggled-idle-base: 255 255 255;
392
+ --interactive-ghost-secondary-on-toggled-hover-base: 255 255 255;
393
+ --interactive-ghost-secondary-on-toggled-disabled-base: 218 220 221;
394
+ --interactive-ghost-secondary-toggled-idle-base: 25 26 27;
395
+ --interactive-ghost-secondary-toggled-hover-base: 79 85 88;
396
+ --interactive-ghost-secondary-toggled-disabled-base: 176 178 179;
397
+ --interactive-ghost-success-on-idle-base: 29 95 79;
398
+ --interactive-ghost-success-on-hover-base: 29 95 79;
399
+ --interactive-ghost-success-on-pressed-base: 29 95 79;
400
+ --interactive-ghost-success-on-disabled-base: 115 196 170;
401
+ --interactive-ghost-success-idle-base: #dcfce800;
402
+ --interactive-ghost-success-hover-base: 191 232 218;
403
+ --interactive-ghost-success-pressed-base: 159 216 197;
404
+ --interactive-ghost-success-disabled-base: 218 243 234;
405
+ --interactive-ghost-success-focus-base: 25 26 27;
406
+ --interactive-ghost-warning-on-idle-base: 120 71 21;
407
+ --interactive-ghost-success-on-toggled-idle-base: 23 74 63;
408
+ --interactive-ghost-warning-on-hover-base: 120 71 21;
409
+ --interactive-ghost-warning-on-pressed-base: 120 71 21;
410
+ --interactive-ghost-warning-on-disabled-base: 238 177 95;
411
+ --interactive-ghost-warning-idle-base: #fee4c700;
412
+ --interactive-ghost-success-on-toggled-hover-base: 15 47 40;
413
+ --interactive-ghost-warning-hover-base: 246 207 149;
414
+ --interactive-ghost-success-on-toggled-disabled-base: 115 196 170;
415
+ --interactive-ghost-warning-pressed-base: 238 177 95;
416
+ --interactive-ghost-success-toggled-idle-base: 115 196 170;
417
+ --interactive-ghost-warning-disabled-base: 253 231 200;
418
+ --interactive-ghost-success-toggled-hover-base: 115 196 170;
419
+ --interactive-ghost-warning-focus-base: 25 26 27;
420
+ --interactive-ghost-success-toggled-disabled-base: 191 232 218;
421
+ --interactive-ghost-warning-on-toggled-idle-base: 96 58 18;
422
+ --interactive-ghost-error-on-idle-base: 107 38 32;
423
+ --interactive-ghost-warning-on-toggled-hover-base: 54 32 9;
424
+ --interactive-ghost-error-on-hover-base: 107 38 32;
425
+ --interactive-ghost-error-on-pressed-base: 107 38 32;
426
+ --interactive-ghost-error-on-disabled-base: 201 101 91;
427
+ --interactive-ghost-error-idle-base: #fde6e300;
428
+ --interactive-ghost-warning-on-toggled-disabled-base: 238 177 95;
429
+ --interactive-ghost-warning-toggled-idle-base: 208 125 36;
430
+ --interactive-ghost-error-hover-base: 232 182 176;
431
+ --interactive-ghost-warning-toggled-hover-base: 238 177 95;
432
+ --interactive-ghost-error-pressed-base: 217 141 133;
433
+ --interactive-ghost-error-disabled-base: 244 217 214;
434
+ --interactive-ghost-warning-toggled-disabled-base: 253 231 200;
435
+ --interactive-ghost-error-focus-base: 25 26 27;
436
+ --interactive-ghost-error-on-toggled-idle-base: 86 31 27;
437
+ --interactive-ghost-error-on-toggled-hover-base: 51 16 14;
438
+ --interactive-ghost-error-on-toggled-disabled-base: 201 101 91;
439
+ --interactive-ghost-error-toggled-idle-base: 201 101 91;
440
+ --interactive-ghost-error-toggled-hover-base: 201 101 91;
441
+ --interactive-ghost-error-toggled-disabled-base: 232 182 176;
442
+ --interactive-ghost-primary-toggled-hover-base: 155 194 221;
443
+ --interactive-ghost-primary-toggled-disabled-base: 194 214 229;
444
+ --interactive-text-primary-toggled-idle-base: 0 60 102;
445
+ --interactive-text-primary-toggled-hovered-base: 0 75 127;
446
+ --interactive-text-primary-toggled-disabled-base: 155 194 221;
447
+ --interactive-text-secondary-toggled-disabled-base: 140 142 144;
448
+ --interactive-text-secondary-toggled-hovered-base: 79 85 88;
449
+ --interactive-text-secondary-toggled-idle-base: 12 13 13;
450
+ --interactive-text-success-toggled-disabled-base: 115 196 170;
451
+ --interactive-text-success-toggled-hovered-base: 29 95 79;
452
+ --interactive-text-success-toggled-idle-base: 15 47 40;
453
+ --interactive-text-primary-toggled-disabled-inverted-base: 0 75 127;
454
+ --interactive-text-primary-toggled-hovered-inverted-base: 155 194 221;
455
+ --interactive-text-primary-toggled-idle-inverted-base: 95 170 224;
456
+ --interactive-text-success-toggled-disabled-inverted-base: 29 95 79;
457
+ --interactive-text-success-toggled-hovered-inverted-base: 191 232 218;
458
+ --interactive-text-success-toggled-idle-inverted-base: 159 216 197;
459
+ --interactive-text-warning-toggled-disabled-inverted-base: 184 104 28;
460
+ --interactive-text-warning-toggled-hovered-inverted-base: 253 231 200;
461
+ --interactive-text-warning-toggled-hovered-base: 226 149 58;
462
+ --interactive-text-warning-toggled-idle-inverted-base: 246 207 149;
463
+ --interactive-text-warning-toggled-disabled-base: 238 177 95;
464
+ --interactive-text-warning-toggled-idle-base: 150 86 24;
465
+ --interactive-text-error-toggled-hovered-inverted-base: 244 217 214;
466
+ --interactive-text-error-toggled-idle-inverted-base: 232 182 176;
467
+ --interactive-text-error-toggled-hovered-base: 184 69 58;
468
+ --interactive-text-error-toggled-disabled-inverted-base: 132 45 37;
469
+ --interactive-text-error-toggled-disabled-base: 111 114 116;
470
+ --interactive-text-error-toggled-idle-base: 86 31 27;
471
+ --elevation-fill-default-4-base: 240 248 254;
472
+ --support-alert-base: 255 43 43;
473
+ --support-status-purple-on-base: 94 71 133;
474
+ --support-status-purple-bg-base: 237 233 254;
475
+ --support-status-teal-on-base: 71 123 133;
476
+ --support-status-teal-bg-base: 213 251 251;
477
+ --support-status-white-bg-base: 255 255 255;
478
+ --support-status-yellow-bg-base: 252 248 207;
479
+ --support-status-yellow-on-base: 115 107 8;
480
+ --elevation-fill-default-2-5-base: 238 240 242;
481
+ --elevation-fill-default-3-5-base: 218 220 221;
482
+ }
483
+
484
+ .dark {
485
+ --elevation-fill-default-1-base: 25 26 27;
486
+ --elevation-fill-default-2-base: 19 20 20;
487
+ --elevation-outline-default-1-base: 35 37 38;
488
+ --elevation-outline-default-2-base: 79 85 88;
489
+ --interactive-contained-primary-on-idle-base: 255 255 255;
490
+ --interactive-contained-primary-idle-base: 0 90 154;
491
+ --interactive-contained-primary-hover-base: 0 75 127;
492
+ --interactive-contained-primary-disabled-base: 0 60 102;
493
+ --interactive-contained-primary-focus-base: 155 194 221;
494
+ --interactive-contained-secondary-on-idle-base: 255 255 255;
495
+ --interactive-contained-secondary-idle-base: 35 37 38;
496
+ --interactive-contained-secondary-hover-base: 25 26 27;
497
+ --interactive-contained-secondary-disabled-base: 25 26 27;
498
+ --interactive-contained-secondary-focus-base: 198 200 201;
499
+ --interactive-outlined-primary-on-idle-base: 95 170 224;
500
+ --interactive-outlined-primary-outline-idle-base: 0 90 154;
501
+ --interactive-outlined-primary-outline-hover-base: 0 75 127;
502
+ --interactive-outlined-primary-outline-disabled-base: 0 60 102;
503
+ --interactive-outlined-primary-focus-base: 155 194 221;
504
+ --text-default-1-base: 234 238 240;
505
+ --text-default-2-base: 218 220 221;
506
+ --text-inverted-1-base: 25 26 27;
507
+ --text-inverted-2-base: 79 85 88;
508
+ --text-default-3-base: 176 178 179;
509
+ --text-inverted-3-base: 140 142 144;
510
+ --interactive-contained-primary-pressed-base: 0 60 102;
511
+ --interactive-contained-secondary-pressed-base: 12 13 13;
512
+ --interactive-outlined-primary-outline-pressed-base: 0 60 102;
513
+ --elevation-fill-default-3-base: 12 13 13;
514
+ --input-outlined-idle-base: 25 26 27;
515
+ --input-outlined-active-base: 25 26 27;
516
+ --input-filled-idle-base: 12 13 13;
517
+ --input-filled-active-base: 25 26 27;
518
+ --input-outlined-hover-base: 25 26 27;
519
+ --input-outlined-error-base: 25 26 27;
520
+ --input-outlined-disabled-base: 25 26 27;
521
+ --input-filled-hover-base: 12 13 13;
522
+ --input-filled-error-base: 12 13 13;
523
+ --input-filled-disabled-base: 12 13 13;
524
+ --interactive-contained-success-on-idle-base: 255 255 255;
525
+ --interactive-contained-success-idle-base: 35 118 98;
526
+ --interactive-contained-success-hover-base: 29 95 79;
527
+ --interactive-contained-success-pressed-base: 23 74 63;
528
+ --interactive-contained-success-disabled-base: 23 74 63;
529
+ --interactive-contained-success-focus-base: 198 200 201;
530
+ --interactive-contained-warning-on-idle-base: 255 255 255;
531
+ --interactive-contained-warning-idle-base: 184 104 28;
532
+ --interactive-contained-warning-hover-base: 150 86 24;
533
+ --interactive-contained-warning-pressed-base: 120 71 21;
534
+ --interactive-contained-warning-disabled-base: 96 58 18;
535
+ --interactive-contained-warning-focus-base: 198 200 201;
536
+ --interactive-contained-error-on-idle-base: 255 255 255;
537
+ --interactive-contained-error-idle-base: 132 45 37;
538
+ --interactive-contained-error-hover-base: 107 38 32;
539
+ --interactive-contained-error-pressed-base: 86 31 27;
540
+ --interactive-contained-error-disabled-base: 86 31 27;
541
+ --interactive-contained-error-focus-base: 198 200 201;
542
+ --interactive-outlined-secondary-on-idle-base: 198 200 201;
543
+ --interactive-outlined-secondary-outline-idle-base: 79 85 88;
544
+ --interactive-outlined-secondary-outline-hover-base: 25 26 27;
545
+ --interactive-outlined-secondary-outline-pressed-base: 25 26 27;
546
+ --interactive-outlined-secondary-outline-disabled-base: 35 37 38;
547
+ --interactive-outlined-secondary-focus-base: 198 200 201;
548
+ --interactive-outlined-success-on-idle-base: 76 175 144;
549
+ --interactive-outlined-success-outline-idle-base: 35 118 98;
550
+ --interactive-outlined-success-outline-hover-base: 29 95 79;
551
+ --interactive-outlined-success-outline-pressed-base: 23 74 63;
552
+ --interactive-outlined-success-outline-disabled-base: 23 74 63;
553
+ --interactive-outlined-success-focus-base: 198 200 201;
554
+ --interactive-outlined-warning-on-idle-base: 208 125 36;
555
+ --interactive-outlined-warning-outline-idle-base: 184 104 28;
556
+ --interactive-outlined-warning-outline-hover-base: 150 86 24;
557
+ --interactive-outlined-warning-outline-pressed-base: 120 71 21;
558
+ --interactive-outlined-warning-outline-disabled-base: 96 58 18;
559
+ --interactive-outlined-warning-focus-base: 198 200 201;
560
+ --interactive-outlined-error-on-idle-base: 184 69 58;
561
+ --interactive-outlined-error-outline-idle-base: 132 45 37;
562
+ --interactive-outlined-error-outline-hover-base: 107 38 32;
563
+ --interactive-outlined-error-outline-pressed-base: 86 31 27;
564
+ --interactive-outlined-error-outline-disabled-base: 86 31 27;
565
+ --interactive-outlined-error-focus-base: 198 200 201;
566
+ --interactive-subtle-primary-on-idle-base: 240 248 254;
567
+ --interactive-subtle-primary-idle-base: 0 46 79;
568
+ --interactive-subtle-primary-hover-base: 0 60 102;
569
+ --interactive-subtle-primary-pressed-base: 0 75 127;
570
+ --interactive-subtle-primary-disabled-base: 0 46 79;
571
+ --interactive-subtle-primary-focus-base: 155 194 221;
572
+ --interactive-subtle-secondary-on-idle-base: 234 238 240;
573
+ --interactive-subtle-secondary-idle-base: 19 20 20;
574
+ --interactive-subtle-secondary-hover-base: 35 37 38;
575
+ --interactive-subtle-secondary-pressed-base: 79 85 88;
576
+ --interactive-subtle-secondary-disabled-base: 25 26 27;
577
+ --interactive-subtle-secondary-focus-base: 198 200 201;
578
+ --interactive-subtle-success-on-idle-base: 218 243 234;
579
+ --interactive-subtle-success-idle-base: 23 74 63;
580
+ --interactive-subtle-success-hover-base: 29 95 79;
581
+ --interactive-subtle-success-pressed-base: 35 118 98;
582
+ --interactive-subtle-success-disabled-base: 15 47 40;
583
+ --interactive-subtle-success-focus-base: 198 200 201;
584
+ --interactive-subtle-warning-on-idle-base: 253 231 200;
585
+ --interactive-subtle-warning-idle-base: 54 32 9;
586
+ --interactive-subtle-warning-hover-base: 96 58 18;
587
+ --interactive-subtle-warning-pressed-base: 120 71 21;
588
+ --interactive-subtle-warning-disabled-base: 54 32 9;
589
+ --interactive-subtle-warning-focus-base: 198 200 201;
590
+ --interactive-subtle-error-on-idle-base: 244 217 214;
591
+ --interactive-subtle-error-idle-base: 51 16 14;
592
+ --interactive-subtle-error-hover-base: 86 31 27;
593
+ --interactive-subtle-error-pressed-base: 107 38 32;
594
+ --interactive-subtle-error-disabled-base: 86 31 27;
595
+ --interactive-subtle-error-focus-base: 198 200 201;
596
+ --interactive-subtle-primary-on-disabled-base: 0 90 154;
597
+ --interactive-subtle-secondary-on-disabled-base: 79 85 88;
598
+ --interactive-subtle-success-on-disabled-base: 35 118 98;
599
+ --interactive-subtle-warning-on-disabled-base: 120 71 21;
600
+ --interactive-subtle-error-on-disabled-base: 132 45 37;
601
+ --text-success-1-base: 76 175 144;
602
+ --text-warning-1-base: 226 149 58;
603
+ --text-error-1-base: 184 69 58;
604
+ --interactive-text-primary-idle-base: 95 170 224;
605
+ --interactive-text-primary-hover-base: 46 142 210;
606
+ --interactive-text-primary-pressed-base: 0 106 182;
607
+ --interactive-text-primary-disabled-base: 0 60 102;
608
+ --interactive-text-primary-idle-inverted-base: 0 60 102;
609
+ --interactive-text-primary-hover-inverted-base: 0 75 127;
610
+ --interactive-text-primary-pressed-inverted-base: 0 106 182;
611
+ --interactive-text-secondary-idle-base: 198 200 201;
612
+ --interactive-text-secondary-hover-base: 176 178 179;
613
+ --interactive-text-secondary-pressed-base: 140 142 144;
614
+ --interactive-text-secondary-disabled-base: 79 85 88;
615
+ --interactive-text-secondary-idle-inverted-base: 25 26 27;
616
+ --interactive-text-secondary-hover-inverted-base: 35 37 38;
617
+ --interactive-text-secondary-pressed-inverted-base: 111 114 116;
618
+ --interactive-text-success-idle-base: 76 175 144;
619
+ --interactive-text-success-hover-base: 47 146 118;
620
+ --interactive-text-success-pressed-base: 35 118 98;
621
+ --interactive-text-success-disabled-base: 23 74 63;
622
+ --interactive-text-success-idle-inverted-base: 29 95 79;
623
+ --interactive-text-success-hover-inverted-base: 35 118 98;
624
+ --interactive-text-success-pressed-inverted-base: 47 146 118;
625
+ --interactive-text-warning-idle-base: 208 125 36;
626
+ --interactive-text-warning-hover-base: 184 104 28;
627
+ --interactive-text-warning-pressed-base: 150 86 24;
628
+ --interactive-text-warning-disabled-base: 96 58 18;
629
+ --interactive-text-warning-idle-inverted-base: 120 71 21;
630
+ --interactive-text-warning-hover-inverted-base: 150 86 24;
631
+ --interactive-text-warning-pressed-inverted-base: 184 104 28;
632
+ --interactive-text-error-idle-base: 159 54 44;
633
+ --interactive-text-error-hover-base: 107 38 32;
634
+ --interactive-text-error-pressed-base: 86 31 27;
635
+ --interactive-text-error-disabled-base: 35 37 38;
636
+ --interactive-text-error-idle-inverted-base: 107 38 32;
637
+ --interactive-text-error-hover-inverted-base: 132 45 37;
638
+ --interactive-text-error-pressed-inverted-base: 159 54 44;
639
+ --support-default-base: 0 0 0;
640
+ --support-inverted-base: 255 255 255;
641
+ --interactive-outlined-primary-hover-base: 0 46 79;
642
+ --interactive-outlined-secondary-hover-base: 19 20 20;
643
+ --interactive-outlined-success-hover-base: 15 47 40;
644
+ --interactive-outlined-warning-hover-base: 54 32 9;
645
+ --interactive-outlined-error-hover-base: 51 16 14;
646
+ --elevation-outline-default-3-base: 111 114 116;
647
+ --elevation-outline-inverted-1-base: 218 220 221;
648
+ --elevation-outline-inverted-2-base: 198 200 201;
649
+ --elevation-outline-inverted-3-base: 176 178 179;
650
+ --elevation-outline-success-1-base: 76 175 144;
651
+ --elevation-outline-warning-1-base: 226 149 58;
652
+ --elevation-outline-error-1-base: 159 54 44;
653
+ --elevation-fill-inverted-1-base: 248 249 249;
654
+ --elevation-fill-inverted-2-base: 218 220 221;
655
+ --elevation-fill-inverted-3-base: 198 200 201;
656
+ --elevation-fill-success-1-base: 218 243 234;
657
+ --elevation-fill-warning-1-base: 253 231 200;
658
+ --elevation-fill-error-1-base: 244 217 214;
659
+ --text-success-2-base: 47 146 118;
660
+ --text-warning-2-base: 208 125 36;
661
+ --text-error-2-base: 159 54 44;
662
+ --text-success-3-base: 35 118 98;
663
+ --text-warning-3-base: 184 104 28;
664
+ --text-error-3-base: 132 45 37;
665
+ --interactive-contained-primary-on-hover-base: 255 255 255;
666
+ --interactive-contained-primary-on-pressed-base: 255 255 255;
667
+ --interactive-contained-primary-on-disabled-base: 0 106 182;
668
+ --interactive-contained-secondary-on-hover-base: 255 255 255;
669
+ --interactive-contained-secondary-on-pressed-base: 255 255 255;
670
+ --interactive-contained-secondary-on-disabled-base: 79 85 88;
671
+ --interactive-contained-success-on-hover-base: 255 255 255;
672
+ --interactive-contained-success-on-pressed-base: 255 255 255;
673
+ --interactive-contained-success-on-disabled-base: 35 118 98;
674
+ --interactive-contained-warning-on-hover-base: 255 255 255;
675
+ --interactive-contained-warning-on-pressed-base: 255 255 255;
676
+ --interactive-contained-warning-on-disabled-base: 150 86 24;
677
+ --interactive-contained-error-on-hover-base: 255 255 255;
678
+ --interactive-contained-error-on-pressed-base: 255 255 255;
679
+ --interactive-contained-error-on-disabled-base: 132 45 37;
680
+ --interactive-outlined-primary-on-hover-base: 46 142 210;
681
+ --interactive-outlined-primary-on-pressed-base: 0 106 182;
682
+ --interactive-outlined-primary-on-disabled-base: 0 60 102;
683
+ --interactive-outlined-secondary-on-hover-base: 176 178 179;
684
+ --interactive-outlined-secondary-on-pressed-base: 140 142 144;
685
+ --interactive-outlined-secondary-on-disabled-base: 35 37 38;
686
+ --interactive-outlined-success-on-hover-base: 47 146 118;
687
+ --interactive-outlined-success-on-pressed-base: 35 118 98;
688
+ --interactive-outlined-success-on-disabled-base: 23 74 63;
689
+ --interactive-outlined-warning-on-hover-base: 184 104 28;
690
+ --interactive-outlined-warning-on-pressed-base: 150 86 24;
691
+ --interactive-outlined-warning-on-disabled-base: 96 58 18;
692
+ --interactive-outlined-error-on-hover-base: 159 54 44;
693
+ --interactive-outlined-error-on-pressed-base: 132 45 37;
694
+ --interactive-outlined-error-on-disabled-base: 86 31 27;
695
+ --interactive-subtle-primary-toggled-idle-base: 0 75 127;
696
+ --interactive-subtle-primary-on-hover-base: 240 248 254;
697
+ --interactive-subtle-primary-on-pressed-base: 240 248 254;
698
+ --interactive-subtle-primary-on-toggled-idle-base: 255 255 255;
699
+ --interactive-subtle-secondary-toggled-idle-base: 198 200 201;
700
+ --interactive-subtle-secondary-on-hover-base: 255 255 255;
701
+ --interactive-subtle-secondary-on-pressed-base: 234 238 240;
702
+ --interactive-subtle-secondary-on-toggled-idle-base: 35 37 38;
703
+ --interactive-subtle-success-on-hover-base: 218 243 234;
704
+ --interactive-subtle-success-on-pressed-base: 218 243 234;
705
+ --interactive-subtle-warning-on-hover-base: 253 231 200;
706
+ --interactive-subtle-warning-on-pressed-base: 253 231 200;
707
+ --interactive-subtle-error-on-hover-base: 244 217 214;
708
+ --interactive-subtle-error-on-pressed-base: 244 217 214;
709
+ --interactive-outlined-primary-on-toggled-idle-base: 255 255 255;
710
+ --interactive-outlined-primary-on-toggled-hover-base: 255 255 255;
711
+ --interactive-outlined-primary-on-toggled-disabled-base: 46 142 210;
712
+ --interactive-outlined-primary-toggled-idle-base: 0 90 154;
713
+ --interactive-outlined-primary-toggled-hover-base: 0 75 127;
714
+ --interactive-outlined-primary-toggled-disabled-base: 0 90 154;
715
+ --interactive-outlined-primary-idle-base: #ffffff00;
716
+ --interactive-outlined-primary-pressed-base: 0 46 79;
717
+ --interactive-outlined-primary-disabled-base: #ffffff00;
718
+ --interactive-outlined-secondary-idle-base: #ffffff00;
719
+ --interactive-outlined-secondary-pressed-base: 12 13 13;
720
+ --interactive-outlined-secondary-disabled-base: #ffffff00;
721
+ --interactive-outlined-secondary-on-toggled-idle-base: 255 255 255;
722
+ --interactive-outlined-secondary-on-toggled-hover-base: 255 255 255;
723
+ --interactive-outlined-secondary-on-toggled-disabled-base: 79 85 88;
724
+ --interactive-outlined-secondary-toggled-idle-base: 19 20 20;
725
+ --interactive-outlined-secondary-toggled-hover-base: 79 85 88;
726
+ --interactive-outlined-secondary-toggled-disabled-base: 19 20 20;
727
+ --interactive-outlined-success-idle-base: #ffffff00;
728
+ --interactive-outlined-success-pressed-base: 15 47 40;
729
+ --interactive-outlined-success-disabled-base: #ffffff00;
730
+ --interactive-outlined-warning-idle-base: #ffffff00;
731
+ --interactive-outlined-warning-pressed-base: 54 32 9;
732
+ --interactive-outlined-warning-disabled-base: #ffffff00;
733
+ --interactive-outlined-error-pressed-base: 51 16 14;
734
+ --interactive-outlined-error-idle-base: #ffffff00;
735
+ --interactive-outlined-error-disabled-base: #ffffff00;
736
+ --elevation-fill-inverted-4-base: 176 178 179;
737
+ --interactive-text-primary-focus-base: 155 194 221;
738
+ --interactive-text-secondary-focus-base: 198 200 201;
739
+ --interactive-text-secondary-focus-inverted-base: 25 26 27;
740
+ --interactive-text-primary-focus-inverted-base: 155 194 221;
741
+ --interactive-text-success-focus-base: 115 196 170;
742
+ --interactive-text-success-focus-inverted-base: 29 95 79;
743
+ --interactive-text-warning-focus-base: 208 125 36;
744
+ --interactive-text-warning-focus-inverted-base: 120 71 21;
745
+ --interactive-text-error-focus-base: 132 45 37;
746
+ --interactive-text-error-focus-inverted-base: 86 31 27;
747
+ --interactive-subtle-secondary-on-toggled-hover-base: 35 37 38;
748
+ --interactive-subtle-secondary-on-toggled-disabled-base: 79 85 88;
749
+ --interactive-subtle-secondary-toggled-hover-base: 35 37 38;
750
+ --interactive-subtle-secondary-toggled-disabled-base: 19 20 20;
751
+ --interactive-text-primary-disabled-inverted-base: 155 194 221;
752
+ --interactive-text-secondary-disabled-inverted-base: 176 178 179;
753
+ --interactive-text-success-disabled-inverted-base: 159 216 197;
754
+ --interactive-text-warning-disabled-inverted-base: 238 177 95;
755
+ --interactive-text-error-disabled-inverted-base: 201 101 91;
756
+ --interactive-subtle-primary-on-toggled-hover-base: 255 255 255;
757
+ --interactive-subtle-primary-on-toggled-disabled-base: 46 142 210;
758
+ --interactive-subtle-primary-toggled-hover-base: 0 106 182;
759
+ --interactive-subtle-primary-toggled-disabled-base: 0 75 127;
760
+ --input-outlined-outline-idle-base: 35 37 38;
761
+ --input-outlined-outline-hover-base: 0 106 182;
762
+ --input-outlined-outline-active-base: 46 142 210;
763
+ --input-outlined-outline-error-base: 184 69 58;
764
+ --input-outlined-outline-disabled-base: 35 37 38;
765
+ --input-filled-outline-error-base: 184 69 58;
766
+ --input-filled-outline-hover-base: 176 178 179;
767
+ --input-filled-outline-active-base: 46 142 210;
768
+ --support-overlay-base: #00000066;
769
+ --focus-base: 176 178 179;
770
+ --shadow-5-base: #00000014;
771
+ --shadow-6-base: #00000017;
772
+ --shadow-10-base: #00000026;
773
+ --shadow-4-base: #0000000f;
774
+ --shadow-25-base: #00000061;
775
+ --text-success-inverted-1-base: 29 95 79;
776
+ --text-success-inverted-2-base: 35 118 98;
777
+ --text-success-inverted-3-base: 47 146 118;
778
+ --text-warning-inverted-1-base: 120 71 21;
779
+ --text-warning-inverted-2-base: 150 86 24;
780
+ --text-warning-inverted-3-base: 184 104 28;
781
+ --text-error-inverted-1-base: 107 38 32;
782
+ --text-error-inverted-2-base: 132 45 37;
783
+ --text-error-inverted-3-base: 159 54 44;
784
+ --interactive-contained-primary-on-toggled-idle-base: 255 255 255;
785
+ --interactive-contained-primary-on-toggled-hover-base: 248 249 249;
786
+ --interactive-contained-primary-on-toggled-disabled-base: 0 46 79;
787
+ --interactive-contained-primary-toggled-hover-base: 46 142 210;
788
+ --interactive-contained-primary-toggled-disabled-base: 0 75 127;
789
+ --interactive-contained-primary-toggled-idle-base: 0 75 127;
790
+ --interactive-contained-secondary-on-toggled-hover-base: 248 249 249;
791
+ --interactive-contained-secondary-on-toggled-disabled-base: 79 85 88;
792
+ --interactive-contained-secondary-toggled-idle-base: 19 20 20;
793
+ --interactive-contained-secondary-toggled-hover-base: 25 26 27;
794
+ --interactive-contained-secondary-toggled-disabled-base: 19 20 20;
795
+ --interactive-contained-secondary-on-toggled-idle-base: 255 255 255;
796
+ --interactive-contained-success-on-toggled-hover-base: 248 249 249;
797
+ --interactive-contained-success-on-toggled-disabled-base: 23 74 63;
798
+ --interactive-contained-success-on-toggled-idle-base: 255 255 255;
799
+ --interactive-contained-success-toggled-hover-base: 29 95 79;
800
+ --interactive-contained-success-toggled-disabled-base: 15 47 40;
801
+ --interactive-contained-success-toggled-idle-base: 15 47 40;
802
+ --interactive-contained-warning-on-toggled-hover-base: 248 249 249;
803
+ --interactive-contained-warning-on-toggled-disabled-base: 54 32 9;
804
+ --interactive-contained-warning-toggled-idle-base: 96 58 18;
805
+ --interactive-contained-warning-toggled-hover-base: 150 86 24;
806
+ --interactive-contained-warning-toggled-disabled-base: 96 58 18;
807
+ --interactive-contained-warning-on-toggled-idle-base: 255 255 255;
808
+ --interactive-contained-error-on-toggled-idle-base: 255 255 255;
809
+ --interactive-contained-error-toggled-hover-base: 107 38 32;
810
+ --interactive-contained-error-toggled-idle-base: 51 16 14;
811
+ --interactive-contained-error-on-toggled-disabled-base: 86 31 27;
812
+ --interactive-contained-error-toggled-disabled-base: 51 16 14;
813
+ --interactive-contained-error-on-toggled-hover-base: 248 249 249;
814
+ --interactive-subtle-success-toggled-disabled-base: 15 47 40;
815
+ --interactive-subtle-success-toggled-hover-base: 23 74 63;
816
+ --interactive-subtle-success-on-toggled-disabled-base: 23 74 63;
817
+ --interactive-subtle-success-toggled-idle-base: 15 47 40;
818
+ --interactive-subtle-success-on-toggled-idle-base: 159 216 197;
819
+ --interactive-subtle-success-on-toggled-hover-base: 159 216 197;
820
+ --interactive-subtle-warning-on-toggled-idle-base: 238 177 95;
821
+ --interactive-subtle-warning-toggled-disabled-base: 54 32 9;
822
+ --interactive-subtle-warning-toggled-idle-base: 54 32 9;
823
+ --interactive-subtle-warning-toggled-hover-base: 96 58 18;
824
+ --interactive-subtle-warning-on-toggled-disabled-base: 96 58 18;
825
+ --interactive-subtle-warning-on-toggled-hover-base: 238 177 95;
826
+ --interactive-subtle-error-on-toggled-idle-base: 217 141 133;
827
+ --interactive-subtle-error-toggled-idle-base: 51 16 14;
828
+ --interactive-subtle-error-toggled-disabled-base: 51 16 14;
829
+ --interactive-subtle-error-toggled-hover-base: 86 31 27;
830
+ --interactive-subtle-error-on-toggled-disabled-base: 86 31 27;
831
+ --interactive-subtle-error-on-toggled-hover-base: 217 141 133;
832
+ --support-transparent-outline-base: #ffffff00;
833
+ --interactive-outlined-success-on-toggled-idle-base: 255 255 255;
834
+ --interactive-outlined-success-on-toggled-hover-base: 248 249 249;
835
+ --interactive-outlined-success-toggled-disabled-base: 15 47 40;
836
+ --interactive-outlined-success-toggled-hover-base: 29 95 79;
837
+ --interactive-outlined-success-toggled-idle-base: 15 47 40;
838
+ --interactive-outlined-success-on-toggled-disabled-base: 23 74 63;
839
+ --interactive-outlined-warning-on-toggled-idle-base: 255 255 255;
840
+ --interactive-outlined-warning-toggled-disabled-base: 96 58 18;
841
+ --interactive-outlined-warning-on-toggled-hover-base: 248 249 249;
842
+ --interactive-outlined-warning-toggled-hover-base: 150 86 24;
843
+ --interactive-outlined-warning-on-toggled-disabled-base: 54 32 9;
844
+ --interactive-outlined-warning-toggled-idle-base: 96 58 18;
845
+ --interactive-outlined-error-toggled-hover-base: 107 38 32;
846
+ --interactive-outlined-error-toggled-disabled-base: 51 16 14;
847
+ --interactive-outlined-error-toggled-idle-base: 51 16 14;
848
+ --interactive-outlined-error-on-toggled-idle-base: 255 255 255;
849
+ --interactive-outlined-error-on-toggled-disabled-base: 86 31 27;
850
+ --interactive-outlined-error-on-toggled-hover-base: 248 249 249;
851
+ --interactive-ghost-primary-on-idle-base: 240 248 254;
852
+ --interactive-ghost-primary-on-hover-base: 240 248 254;
853
+ --interactive-ghost-primary-on-pressed-base: 240 248 254;
854
+ --interactive-ghost-primary-on-disabled-base: 0 90 154;
855
+ --interactive-ghost-primary-idle-base: #253a8300;
856
+ --interactive-ghost-primary-hover-base: 0 75 127;
857
+ --interactive-ghost-primary-pressed-base: 0 90 154;
858
+ --interactive-ghost-primary-disabled-base: 0 46 79;
859
+ --interactive-ghost-primary-focus-base: 155 194 221;
860
+ --interactive-ghost-secondary-on-idle-base: 234 238 240;
861
+ --interactive-ghost-primary-on-toggled-idle-base: 255 255 255;
862
+ --interactive-ghost-primary-on-toggled-hover-base: 255 255 255;
863
+ --interactive-ghost-primary-on-toggled-disabled-base: 46 142 210;
864
+ --interactive-ghost-secondary-on-hover-base: 234 238 240;
865
+ --interactive-ghost-secondary-on-pressed-base: 234 238 240;
866
+ --interactive-ghost-secondary-on-disabled-base: 79 85 88;
867
+ --interactive-ghost-secondary-idle-base: #181c2300;
868
+ --interactive-ghost-primary-toggled-idle-base: 0 46 79;
869
+ --interactive-ghost-secondary-hover-base: 35 37 38;
870
+ --interactive-ghost-secondary-pressed-base: 79 85 88;
871
+ --interactive-ghost-secondary-disabled-base: 25 26 27;
872
+ --interactive-ghost-secondary-focus-base: 198 200 201;
873
+ --interactive-ghost-secondary-on-toggled-idle-base: 255 255 255;
874
+ --interactive-ghost-secondary-on-toggled-hover-base: 35 37 38;
875
+ --interactive-ghost-secondary-on-toggled-disabled-base: 140 142 144;
876
+ --interactive-ghost-secondary-toggled-idle-base: 19 20 20;
877
+ --interactive-ghost-secondary-toggled-hover-base: 35 37 38;
878
+ --interactive-ghost-secondary-toggled-disabled-base: 35 37 38;
879
+ --interactive-ghost-success-on-idle-base: 218 243 234;
880
+ --interactive-ghost-success-on-hover-base: 218 243 234;
881
+ --interactive-ghost-success-on-pressed-base: 218 243 234;
882
+ --interactive-ghost-success-on-disabled-base: 35 118 98;
883
+ --interactive-ghost-success-idle-base: #14532b00;
884
+ --interactive-ghost-success-hover-base: 29 95 79;
885
+ --interactive-ghost-success-pressed-base: 35 118 98;
886
+ --interactive-ghost-success-disabled-base: 15 47 40;
887
+ --interactive-ghost-success-focus-base: 198 200 201;
888
+ --interactive-ghost-warning-on-idle-base: 253 231 200;
889
+ --interactive-ghost-success-on-toggled-idle-base: 159 216 197;
890
+ --interactive-ghost-warning-on-hover-base: 253 231 200;
891
+ --interactive-ghost-warning-on-pressed-base: 253 231 200;
892
+ --interactive-ghost-warning-on-disabled-base: 120 71 21;
893
+ --interactive-ghost-warning-idle-base: #45260300;
894
+ --interactive-ghost-success-on-toggled-hover-base: 159 216 197;
895
+ --interactive-ghost-warning-hover-base: 96 58 18;
896
+ --interactive-ghost-success-on-toggled-disabled-base: 23 74 63;
897
+ --interactive-ghost-warning-pressed-base: 120 71 21;
898
+ --interactive-ghost-success-toggled-idle-base: 15 47 40;
899
+ --interactive-ghost-warning-disabled-base: 54 32 9;
900
+ --interactive-ghost-success-toggled-hover-base: 23 74 63;
901
+ --interactive-ghost-warning-focus-base: 198 200 201;
902
+ --interactive-ghost-success-toggled-disabled-base: 15 47 40;
903
+ --interactive-ghost-warning-on-toggled-idle-base: 238 177 95;
904
+ --interactive-ghost-error-on-idle-base: 244 217 214;
905
+ --interactive-ghost-warning-on-toggled-hover-base: 238 177 95;
906
+ --interactive-ghost-error-on-hover-base: 244 217 214;
907
+ --interactive-ghost-error-on-pressed-base: 244 217 214;
908
+ --interactive-ghost-error-on-disabled-base: 132 45 37;
909
+ --interactive-ghost-error-idle-base: #43130c00;
910
+ --interactive-ghost-warning-on-toggled-disabled-base: 96 58 18;
911
+ --interactive-ghost-warning-toggled-idle-base: 54 32 9;
912
+ --interactive-ghost-error-hover-base: 86 31 27;
913
+ --interactive-ghost-warning-toggled-hover-base: 96 58 18;
914
+ --interactive-ghost-error-pressed-base: 107 38 32;
915
+ --interactive-ghost-error-disabled-base: 86 31 27;
916
+ --interactive-ghost-warning-toggled-disabled-base: 54 32 9;
917
+ --interactive-ghost-error-focus-base: 198 200 201;
918
+ --interactive-ghost-error-on-toggled-idle-base: 217 141 133;
919
+ --interactive-ghost-error-on-toggled-hover-base: 217 141 133;
920
+ --interactive-ghost-error-on-toggled-disabled-base: 86 31 27;
921
+ --interactive-ghost-error-toggled-idle-base: 51 16 14;
922
+ --interactive-ghost-error-toggled-hover-base: 86 31 27;
923
+ --interactive-ghost-error-toggled-disabled-base: 51 16 14;
924
+ --interactive-ghost-primary-toggled-hover-base: 0 106 182;
925
+ --interactive-ghost-primary-toggled-disabled-base: 0 75 127;
926
+ --interactive-text-primary-toggled-idle-base: 0 90 154;
927
+ --interactive-text-primary-toggled-hovered-base: 46 142 210;
928
+ --interactive-text-primary-toggled-disabled-base: 0 60 102;
929
+ --interactive-text-secondary-toggled-disabled-base: 79 85 88;
930
+ --interactive-text-secondary-toggled-hovered-base: 176 178 179;
931
+ --interactive-text-secondary-toggled-idle-base: 234 238 240;
932
+ --interactive-text-success-toggled-disabled-base: 15 47 40;
933
+ --interactive-text-success-toggled-hovered-base: 159 216 197;
934
+ --interactive-text-success-toggled-idle-base: 115 196 170;
935
+ --interactive-text-primary-toggled-disabled-inverted-base: 155 194 221;
936
+ --interactive-text-primary-toggled-hovered-inverted-base: 0 75 127;
937
+ --interactive-text-primary-toggled-idle-inverted-base: 0 46 79;
938
+ --interactive-text-success-toggled-disabled-inverted-base: 159 216 197;
939
+ --interactive-text-success-toggled-hovered-inverted-base: 35 118 98;
940
+ --interactive-text-success-toggled-idle-inverted-base: 15 47 40;
941
+ --interactive-text-warning-toggled-disabled-inverted-base: 246 207 149;
942
+ --interactive-text-warning-toggled-hovered-inverted-base: 150 86 24;
943
+ --interactive-text-warning-toggled-hovered-base: 246 207 149;
944
+ --interactive-text-warning-toggled-idle-inverted-base: 54 32 9;
945
+ --interactive-text-warning-toggled-disabled-base: 54 32 9;
946
+ --interactive-text-warning-toggled-idle-base: 238 177 95;
947
+ --interactive-text-error-toggled-hovered-inverted-base: 51 16 14;
948
+ --interactive-text-error-toggled-idle-inverted-base: 184 69 58;
949
+ --interactive-text-error-toggled-hovered-base: 217 141 133;
950
+ --interactive-text-error-toggled-disabled-inverted-base: 217 141 133;
951
+ --interactive-text-error-toggled-disabled-base: 51 16 14;
952
+ --interactive-text-error-toggled-idle-base: 184 69 58;
953
+ --elevation-fill-default-4-base: 0 46 79;
954
+ --support-alert-base: 255 255 255;
955
+ --support-status-purple-on-base: 255 255 255;
956
+ --support-status-purple-bg-base: 255 255 255;
957
+ --support-status-teal-on-base: 255 255 255;
958
+ --support-status-teal-bg-base: 255 255 255;
959
+ --support-status-white-bg-base: 255 255 255;
960
+ --support-status-yellow-bg-base: 255 255 255;
961
+ --support-status-yellow-on-base: 255 255 255;
962
+ --elevation-fill-default-2-5-base: 19 20 20;
963
+ --elevation-fill-default-3-5-base: 12 13 13;
964
+ }
965
+ }
966
+ @theme inline {
967
+ --drop-shadow-1: 0 2px 10px var(--shadow-6-base, rgba(0, 0, 0, 0.06));
968
+ --drop-shadow-2:
969
+ 0 1px 3px var(--shadow-10-base, rgba(0, 0, 0, 0.1)), 0 1px 2px var(--shadow-6-base, rgba(0, 0, 0, 0.06));
970
+ --drop-shadow-3:
971
+ 0 4px 6px var(--shadow-10-base, rgba(0, 0, 0, 0.1)), 0 2px 4px var(--shadow-6-base, rgba(0, 0, 0, 0.06));
972
+ --drop-shadow-4:
973
+ 0 10px 15px var(--shadow-10-base, rgba(0, 0, 0, 0.1)), 0 4px 6px var(--shadow-6-base, rgba(0, 0, 0, 0.06));
974
+ --drop-shadow-5:
975
+ 0 20px 25px var(--shadow-10-base, rgba(0, 0, 0, 0.1)), 0 10px 10px var(--shadow-4-base, rgba(0, 0, 0, 0.04));
976
+ --drop-shadow-6: 0 25px 50px var(--shadow-25-base, rgba(0, 0, 0, 0.25));
977
+ }
978
+
979
+ @theme {
980
+ --color-elevation-fill-default-1: rgb(var(--elevation-fill-default-1-base));
981
+ --color-elevation-fill-default-2: rgb(var(--elevation-fill-default-2-base));
982
+ --color-elevation-outline-default-1: rgb(var(--elevation-outline-default-1-base));
983
+ --color-elevation-outline-default-2: rgb(var(--elevation-outline-default-2-base));
984
+ --color-interactive-contained-primary-on-idle: rgb(var(--interactive-contained-primary-on-idle-base));
985
+ --color-interactive-contained-primary-idle: rgb(var(--interactive-contained-primary-idle-base));
986
+ --color-interactive-contained-primary-hover: rgb(var(--interactive-contained-primary-hover-base));
987
+ --color-interactive-contained-primary-disabled: rgb(var(--interactive-contained-primary-disabled-base));
988
+ --color-interactive-contained-primary-focus: rgb(var(--interactive-contained-primary-focus-base));
989
+ --color-interactive-contained-secondary-on-idle: rgb(var(--interactive-contained-secondary-on-idle-base));
990
+ --color-interactive-contained-secondary-idle: rgb(var(--interactive-contained-secondary-idle-base));
991
+ --color-interactive-contained-secondary-hover: rgb(var(--interactive-contained-secondary-hover-base));
992
+ --color-interactive-contained-secondary-disabled: rgb(var(--interactive-contained-secondary-disabled-base));
993
+ --color-interactive-contained-secondary-focus: rgb(var(--interactive-contained-secondary-focus-base));
994
+ --color-interactive-outlined-primary-on-idle: rgb(var(--interactive-outlined-primary-on-idle-base));
995
+ --color-interactive-outlined-primary-outline-idle: rgb(var(--interactive-outlined-primary-outline-idle-base));
996
+ --color-interactive-outlined-primary-outline-hover: rgb(var(--interactive-outlined-primary-outline-hover-base));
997
+ --color-interactive-outlined-primary-outline-disabled: rgb(var(--interactive-outlined-primary-outline-disabled-base));
998
+ --color-interactive-outlined-primary-focus: rgb(var(--interactive-outlined-primary-focus-base));
999
+ --color-text-default-1: rgb(var(--text-default-1-base));
1000
+ --color-text-default-2: rgb(var(--text-default-2-base));
1001
+ --color-text-inverted-1: rgb(var(--text-inverted-1-base));
1002
+ --color-text-inverted-2: rgb(var(--text-inverted-2-base));
1003
+ --color-text-default-3: rgb(var(--text-default-3-base));
1004
+ --color-text-inverted-3: rgb(var(--text-inverted-3-base));
1005
+ --color-interactive-contained-primary-pressed: rgb(var(--interactive-contained-primary-pressed-base));
1006
+ --color-interactive-contained-secondary-pressed: rgb(var(--interactive-contained-secondary-pressed-base));
1007
+ --color-interactive-outlined-primary-outline-pressed: rgb(var(--interactive-outlined-primary-outline-pressed-base));
1008
+ --color-elevation-fill-default-3: rgb(var(--elevation-fill-default-3-base));
1009
+ --color-input-outlined-idle: rgb(var(--input-outlined-idle-base));
1010
+ --color-input-outlined-active: rgb(var(--input-outlined-active-base));
1011
+ --color-input-filled-idle: rgb(var(--input-filled-idle-base));
1012
+ --color-input-filled-active: rgb(var(--input-filled-active-base));
1013
+ --color-input-outlined-hover: rgb(var(--input-outlined-hover-base));
1014
+ --color-input-outlined-error: rgb(var(--input-outlined-error-base));
1015
+ --color-input-outlined-disabled: rgb(var(--input-outlined-disabled-base));
1016
+ --color-input-filled-hover: rgb(var(--input-filled-hover-base));
1017
+ --color-input-filled-error: rgb(var(--input-filled-error-base));
1018
+ --color-input-filled-disabled: rgb(var(--input-filled-disabled-base));
1019
+ --color-interactive-contained-success-on-idle: rgb(var(--interactive-contained-success-on-idle-base));
1020
+ --color-interactive-contained-success-idle: rgb(var(--interactive-contained-success-idle-base));
1021
+ --color-interactive-contained-success-hover: rgb(var(--interactive-contained-success-hover-base));
1022
+ --color-interactive-contained-success-pressed: rgb(var(--interactive-contained-success-pressed-base));
1023
+ --color-interactive-contained-success-disabled: rgb(var(--interactive-contained-success-disabled-base));
1024
+ --color-interactive-contained-success-focus: rgb(var(--interactive-contained-success-focus-base));
1025
+ --color-interactive-contained-warning-on-idle: rgb(var(--interactive-contained-warning-on-idle-base));
1026
+ --color-interactive-contained-warning-idle: rgb(var(--interactive-contained-warning-idle-base));
1027
+ --color-interactive-contained-warning-hover: rgb(var(--interactive-contained-warning-hover-base));
1028
+ --color-interactive-contained-warning-pressed: rgb(var(--interactive-contained-warning-pressed-base));
1029
+ --color-interactive-contained-warning-disabled: rgb(var(--interactive-contained-warning-disabled-base));
1030
+ --color-interactive-contained-warning-focus: rgb(var(--interactive-contained-warning-focus-base));
1031
+ --color-interactive-contained-error-on-idle: rgb(var(--interactive-contained-error-on-idle-base));
1032
+ --color-interactive-contained-error-idle: rgb(var(--interactive-contained-error-idle-base));
1033
+ --color-interactive-contained-error-hover: rgb(var(--interactive-contained-error-hover-base));
1034
+ --color-interactive-contained-error-pressed: rgb(var(--interactive-contained-error-pressed-base));
1035
+ --color-interactive-contained-error-disabled: rgb(var(--interactive-contained-error-disabled-base));
1036
+ --color-interactive-contained-error-focus: rgb(var(--interactive-contained-error-focus-base));
1037
+ --color-interactive-outlined-secondary-on-idle: rgb(var(--interactive-outlined-secondary-on-idle-base));
1038
+ --color-interactive-outlined-secondary-outline-idle: rgb(var(--interactive-outlined-secondary-outline-idle-base));
1039
+ --color-interactive-outlined-secondary-outline-hover: rgb(var(--interactive-outlined-secondary-outline-hover-base));
1040
+ --color-interactive-outlined-secondary-outline-pressed: rgb(
1041
+ var(--interactive-outlined-secondary-outline-pressed-base)
1042
+ );
1043
+ --color-interactive-outlined-secondary-outline-disabled: rgb(
1044
+ var(--interactive-outlined-secondary-outline-disabled-base)
1045
+ );
1046
+ --color-interactive-outlined-secondary-focus: rgb(var(--interactive-outlined-secondary-focus-base));
1047
+ --color-interactive-outlined-success-on-idle: rgb(var(--interactive-outlined-success-on-idle-base));
1048
+ --color-interactive-outlined-success-outline-idle: rgb(var(--interactive-outlined-success-outline-idle-base));
1049
+ --color-interactive-outlined-success-outline-hover: rgb(var(--interactive-outlined-success-outline-hover-base));
1050
+ --color-interactive-outlined-success-outline-pressed: rgb(var(--interactive-outlined-success-outline-pressed-base));
1051
+ --color-interactive-outlined-success-outline-disabled: rgb(var(--interactive-outlined-success-outline-disabled-base));
1052
+ --color-interactive-outlined-success-focus: rgb(var(--interactive-outlined-success-focus-base));
1053
+ --color-interactive-outlined-warning-on-idle: rgb(var(--interactive-outlined-warning-on-idle-base));
1054
+ --color-interactive-outlined-warning-outline-idle: rgb(var(--interactive-outlined-warning-outline-idle-base));
1055
+ --color-interactive-outlined-warning-outline-hover: rgb(var(--interactive-outlined-warning-outline-hover-base));
1056
+ --color-interactive-outlined-warning-outline-pressed: rgb(var(--interactive-outlined-warning-outline-pressed-base));
1057
+ --color-interactive-outlined-warning-outline-disabled: rgb(var(--interactive-outlined-warning-outline-disabled-base));
1058
+ --color-interactive-outlined-warning-focus: rgb(var(--interactive-outlined-warning-focus-base));
1059
+ --color-interactive-outlined-error-on-idle: rgb(var(--interactive-outlined-error-on-idle-base));
1060
+ --color-interactive-outlined-error-outline-idle: rgb(var(--interactive-outlined-error-outline-idle-base));
1061
+ --color-interactive-outlined-error-outline-hover: rgb(var(--interactive-outlined-error-outline-hover-base));
1062
+ --color-interactive-outlined-error-outline-pressed: rgb(var(--interactive-outlined-error-outline-pressed-base));
1063
+ --color-interactive-outlined-error-outline-disabled: rgb(var(--interactive-outlined-error-outline-disabled-base));
1064
+ --color-interactive-outlined-error-focus: rgb(var(--interactive-outlined-error-focus-base));
1065
+ --color-interactive-subtle-primary-on-idle: rgb(var(--interactive-subtle-primary-on-idle-base));
1066
+ --color-interactive-subtle-primary-idle: rgb(var(--interactive-subtle-primary-idle-base));
1067
+ --color-interactive-subtle-primary-hover: rgb(var(--interactive-subtle-primary-hover-base));
1068
+ --color-interactive-subtle-primary-pressed: rgb(var(--interactive-subtle-primary-pressed-base));
1069
+ --color-interactive-subtle-primary-disabled: rgb(var(--interactive-subtle-primary-disabled-base));
1070
+ --color-interactive-subtle-primary-focus: rgb(var(--interactive-subtle-primary-focus-base));
1071
+ --color-interactive-subtle-secondary-on-idle: rgb(var(--interactive-subtle-secondary-on-idle-base));
1072
+ --color-interactive-subtle-secondary-idle: rgb(var(--interactive-subtle-secondary-idle-base));
1073
+ --color-interactive-subtle-secondary-hover: rgb(var(--interactive-subtle-secondary-hover-base));
1074
+ --color-interactive-subtle-secondary-pressed: rgb(var(--interactive-subtle-secondary-pressed-base));
1075
+ --color-interactive-subtle-secondary-disabled: rgb(var(--interactive-subtle-secondary-disabled-base));
1076
+ --color-interactive-subtle-secondary-focus: rgb(var(--interactive-subtle-secondary-focus-base));
1077
+ --color-interactive-subtle-success-on-idle: rgb(var(--interactive-subtle-success-on-idle-base));
1078
+ --color-interactive-subtle-success-idle: rgb(var(--interactive-subtle-success-idle-base));
1079
+ --color-interactive-subtle-success-hover: rgb(var(--interactive-subtle-success-hover-base));
1080
+ --color-interactive-subtle-success-pressed: rgb(var(--interactive-subtle-success-pressed-base));
1081
+ --color-interactive-subtle-success-disabled: rgb(var(--interactive-subtle-success-disabled-base));
1082
+ --color-interactive-subtle-success-focus: rgb(var(--interactive-subtle-success-focus-base));
1083
+ --color-interactive-subtle-warning-on-idle: rgb(var(--interactive-subtle-warning-on-idle-base));
1084
+ --color-interactive-subtle-warning-idle: rgb(var(--interactive-subtle-warning-idle-base));
1085
+ --color-interactive-subtle-warning-hover: rgb(var(--interactive-subtle-warning-hover-base));
1086
+ --color-interactive-subtle-warning-pressed: rgb(var(--interactive-subtle-warning-pressed-base));
1087
+ --color-interactive-subtle-warning-disabled: rgb(var(--interactive-subtle-warning-disabled-base));
1088
+ --color-interactive-subtle-warning-focus: rgb(var(--interactive-subtle-warning-focus-base));
1089
+ --color-interactive-subtle-error-on-idle: rgb(var(--interactive-subtle-error-on-idle-base));
1090
+ --color-interactive-subtle-error-idle: rgb(var(--interactive-subtle-error-idle-base));
1091
+ --color-interactive-subtle-error-hover: rgb(var(--interactive-subtle-error-hover-base));
1092
+ --color-interactive-subtle-error-pressed: rgb(var(--interactive-subtle-error-pressed-base));
1093
+ --color-interactive-subtle-error-disabled: rgb(var(--interactive-subtle-error-disabled-base));
1094
+ --color-interactive-subtle-error-focus: rgb(var(--interactive-subtle-error-focus-base));
1095
+ --color-interactive-subtle-primary-on-disabled: rgb(var(--interactive-subtle-primary-on-disabled-base));
1096
+ --color-interactive-subtle-secondary-on-disabled: rgb(var(--interactive-subtle-secondary-on-disabled-base));
1097
+ --color-interactive-subtle-success-on-disabled: rgb(var(--interactive-subtle-success-on-disabled-base));
1098
+ --color-interactive-subtle-warning-on-disabled: rgb(var(--interactive-subtle-warning-on-disabled-base));
1099
+ --color-interactive-subtle-error-on-disabled: rgb(var(--interactive-subtle-error-on-disabled-base));
1100
+ --color-text-success-1: rgb(var(--text-success-1-base));
1101
+ --color-text-warning-1: rgb(var(--text-warning-1-base));
1102
+ --color-text-error-1: rgb(var(--text-error-1-base));
1103
+ --color-interactive-text-primary-idle: rgb(var(--interactive-text-primary-idle-base));
1104
+ --color-interactive-text-primary-hover: rgb(var(--interactive-text-primary-hover-base));
1105
+ --color-interactive-text-primary-pressed: rgb(var(--interactive-text-primary-pressed-base));
1106
+ --color-interactive-text-primary-disabled: rgb(var(--interactive-text-primary-disabled-base));
1107
+ --color-interactive-text-primary-idle-inverted: rgb(var(--interactive-text-primary-idle-inverted-base));
1108
+ --color-interactive-text-primary-hover-inverted: rgb(var(--interactive-text-primary-hover-inverted-base));
1109
+ --color-interactive-text-primary-pressed-inverted: rgb(var(--interactive-text-primary-pressed-inverted-base));
1110
+ --color-interactive-text-secondary-idle: rgb(var(--interactive-text-secondary-idle-base));
1111
+ --color-interactive-text-secondary-hover: rgb(var(--interactive-text-secondary-hover-base));
1112
+ --color-interactive-text-secondary-pressed: rgb(var(--interactive-text-secondary-pressed-base));
1113
+ --color-interactive-text-secondary-disabled: rgb(var(--interactive-text-secondary-disabled-base));
1114
+ --color-interactive-text-secondary-idle-inverted: rgb(var(--interactive-text-secondary-idle-inverted-base));
1115
+ --color-interactive-text-secondary-hover-inverted: rgb(var(--interactive-text-secondary-hover-inverted-base));
1116
+ --color-interactive-text-secondary-pressed-inverted: rgb(var(--interactive-text-secondary-pressed-inverted-base));
1117
+ --color-interactive-text-success-idle: rgb(var(--interactive-text-success-idle-base));
1118
+ --color-interactive-text-success-hover: rgb(var(--interactive-text-success-hover-base));
1119
+ --color-interactive-text-success-pressed: rgb(var(--interactive-text-success-pressed-base));
1120
+ --color-interactive-text-success-disabled: rgb(var(--interactive-text-success-disabled-base));
1121
+ --color-interactive-text-success-idle-inverted: rgb(var(--interactive-text-success-idle-inverted-base));
1122
+ --color-interactive-text-success-hover-inverted: rgb(var(--interactive-text-success-hover-inverted-base));
1123
+ --color-interactive-text-success-pressed-inverted: rgb(var(--interactive-text-success-pressed-inverted-base));
1124
+ --color-interactive-text-warning-idle: rgb(var(--interactive-text-warning-idle-base));
1125
+ --color-interactive-text-warning-hover: rgb(var(--interactive-text-warning-hover-base));
1126
+ --color-interactive-text-warning-pressed: rgb(var(--interactive-text-warning-pressed-base));
1127
+ --color-interactive-text-warning-disabled: rgb(var(--interactive-text-warning-disabled-base));
1128
+ --color-interactive-text-warning-idle-inverted: rgb(var(--interactive-text-warning-idle-inverted-base));
1129
+ --color-interactive-text-warning-hover-inverted: rgb(var(--interactive-text-warning-hover-inverted-base));
1130
+ --color-interactive-text-warning-pressed-inverted: rgb(var(--interactive-text-warning-pressed-inverted-base));
1131
+ --color-interactive-text-error-idle: rgb(var(--interactive-text-error-idle-base));
1132
+ --color-interactive-text-error-hover: rgb(var(--interactive-text-error-hover-base));
1133
+ --color-interactive-text-error-pressed: rgb(var(--interactive-text-error-pressed-base));
1134
+ --color-interactive-text-error-disabled: rgb(var(--interactive-text-error-disabled-base));
1135
+ --color-interactive-text-error-idle-inverted: rgb(var(--interactive-text-error-idle-inverted-base));
1136
+ --color-interactive-text-error-hover-inverted: rgb(var(--interactive-text-error-hover-inverted-base));
1137
+ --color-interactive-text-error-pressed-inverted: rgb(var(--interactive-text-error-pressed-inverted-base));
1138
+ --color-support-default: rgb(var(--support-default-base));
1139
+ --color-support-inverted: rgb(var(--support-inverted-base));
1140
+ --color-interactive-outlined-primary-hover: rgb(var(--interactive-outlined-primary-hover-base));
1141
+ --color-interactive-outlined-secondary-hover: rgb(var(--interactive-outlined-secondary-hover-base));
1142
+ --color-interactive-outlined-success-hover: rgb(var(--interactive-outlined-success-hover-base));
1143
+ --color-interactive-outlined-warning-hover: rgb(var(--interactive-outlined-warning-hover-base));
1144
+ --color-interactive-outlined-error-hover: rgb(var(--interactive-outlined-error-hover-base));
1145
+ --color-elevation-outline-default-3: rgb(var(--elevation-outline-default-3-base));
1146
+ --color-elevation-outline-inverted-1: rgb(var(--elevation-outline-inverted-1-base));
1147
+ --color-elevation-outline-inverted-2: rgb(var(--elevation-outline-inverted-2-base));
1148
+ --color-elevation-outline-inverted-3: rgb(var(--elevation-outline-inverted-3-base));
1149
+ --color-elevation-outline-success-1: rgb(var(--elevation-outline-success-1-base));
1150
+ --color-elevation-outline-warning-1: rgb(var(--elevation-outline-warning-1-base));
1151
+ --color-elevation-outline-error-1: rgb(var(--elevation-outline-error-1-base));
1152
+ --color-elevation-fill-inverted-1: rgb(var(--elevation-fill-inverted-1-base));
1153
+ --color-elevation-fill-inverted-2: rgb(var(--elevation-fill-inverted-2-base));
1154
+ --color-elevation-fill-inverted-3: rgb(var(--elevation-fill-inverted-3-base));
1155
+ --color-elevation-fill-success-1: rgb(var(--elevation-fill-success-1-base));
1156
+ --color-elevation-fill-warning-1: rgb(var(--elevation-fill-warning-1-base));
1157
+ --color-elevation-fill-error-1: rgb(var(--elevation-fill-error-1-base));
1158
+ --color-text-success-2: rgb(var(--text-success-2-base));
1159
+ --color-text-warning-2: rgb(var(--text-warning-2-base));
1160
+ --color-text-error-2: rgb(var(--text-error-2-base));
1161
+ --color-text-success-3: rgb(var(--text-success-3-base));
1162
+ --color-text-warning-3: rgb(var(--text-warning-3-base));
1163
+ --color-text-error-3: rgb(var(--text-error-3-base));
1164
+ --color-interactive-contained-primary-on-hover: rgb(var(--interactive-contained-primary-on-hover-base));
1165
+ --color-interactive-contained-primary-on-pressed: rgb(var(--interactive-contained-primary-on-pressed-base));
1166
+ --color-interactive-contained-primary-on-disabled: rgb(var(--interactive-contained-primary-on-disabled-base));
1167
+ --color-interactive-contained-secondary-on-hover: rgb(var(--interactive-contained-secondary-on-hover-base));
1168
+ --color-interactive-contained-secondary-on-pressed: rgb(var(--interactive-contained-secondary-on-pressed-base));
1169
+ --color-interactive-contained-secondary-on-disabled: rgb(var(--interactive-contained-secondary-on-disabled-base));
1170
+ --color-interactive-contained-success-on-hover: rgb(var(--interactive-contained-success-on-hover-base));
1171
+ --color-interactive-contained-success-on-pressed: rgb(var(--interactive-contained-success-on-pressed-base));
1172
+ --color-interactive-contained-success-on-disabled: rgb(var(--interactive-contained-success-on-disabled-base));
1173
+ --color-interactive-contained-warning-on-hover: rgb(var(--interactive-contained-warning-on-hover-base));
1174
+ --color-interactive-contained-warning-on-pressed: rgb(var(--interactive-contained-warning-on-pressed-base));
1175
+ --color-interactive-contained-warning-on-disabled: rgb(var(--interactive-contained-warning-on-disabled-base));
1176
+ --color-interactive-contained-error-on-hover: rgb(var(--interactive-contained-error-on-hover-base));
1177
+ --color-interactive-contained-error-on-pressed: rgb(var(--interactive-contained-error-on-pressed-base));
1178
+ --color-interactive-contained-error-on-disabled: rgb(var(--interactive-contained-error-on-disabled-base));
1179
+ --color-interactive-outlined-primary-on-hover: rgb(var(--interactive-outlined-primary-on-hover-base));
1180
+ --color-interactive-outlined-primary-on-pressed: rgb(var(--interactive-outlined-primary-on-pressed-base));
1181
+ --color-interactive-outlined-primary-on-disabled: rgb(var(--interactive-outlined-primary-on-disabled-base));
1182
+ --color-interactive-outlined-secondary-on-hover: rgb(var(--interactive-outlined-secondary-on-hover-base));
1183
+ --color-interactive-outlined-secondary-on-pressed: rgb(var(--interactive-outlined-secondary-on-pressed-base));
1184
+ --color-interactive-outlined-secondary-on-disabled: rgb(var(--interactive-outlined-secondary-on-disabled-base));
1185
+ --color-interactive-outlined-success-on-hover: rgb(var(--interactive-outlined-success-on-hover-base));
1186
+ --color-interactive-outlined-success-on-pressed: rgb(var(--interactive-outlined-success-on-pressed-base));
1187
+ --color-interactive-outlined-success-on-disabled: rgb(var(--interactive-outlined-success-on-disabled-base));
1188
+ --color-interactive-outlined-warning-on-hover: rgb(var(--interactive-outlined-warning-on-hover-base));
1189
+ --color-interactive-outlined-warning-on-pressed: rgb(var(--interactive-outlined-warning-on-pressed-base));
1190
+ --color-interactive-outlined-warning-on-disabled: rgb(var(--interactive-outlined-warning-on-disabled-base));
1191
+ --color-interactive-outlined-error-on-hover: rgb(var(--interactive-outlined-error-on-hover-base));
1192
+ --color-interactive-outlined-error-on-pressed: rgb(var(--interactive-outlined-error-on-pressed-base));
1193
+ --color-interactive-outlined-error-on-disabled: rgb(var(--interactive-outlined-error-on-disabled-base));
1194
+ --color-interactive-subtle-primary-toggled-idle: rgb(var(--interactive-subtle-primary-toggled-idle-base));
1195
+ --color-interactive-subtle-primary-on-hover: rgb(var(--interactive-subtle-primary-on-hover-base));
1196
+ --color-interactive-subtle-primary-on-pressed: rgb(var(--interactive-subtle-primary-on-pressed-base));
1197
+ --color-interactive-subtle-primary-on-toggled-idle: rgb(var(--interactive-subtle-primary-on-toggled-idle-base));
1198
+ --color-interactive-subtle-secondary-toggled-idle: rgb(var(--interactive-subtle-secondary-toggled-idle-base));
1199
+ --color-interactive-subtle-secondary-on-hover: rgb(var(--interactive-subtle-secondary-on-hover-base));
1200
+ --color-interactive-subtle-secondary-on-pressed: rgb(var(--interactive-subtle-secondary-on-pressed-base));
1201
+ --color-interactive-subtle-secondary-on-toggled-idle: rgb(var(--interactive-subtle-secondary-on-toggled-idle-base));
1202
+ --color-interactive-subtle-success-on-hover: rgb(var(--interactive-subtle-success-on-hover-base));
1203
+ --color-interactive-subtle-success-on-pressed: rgb(var(--interactive-subtle-success-on-pressed-base));
1204
+ --color-interactive-subtle-warning-on-hover: rgb(var(--interactive-subtle-warning-on-hover-base));
1205
+ --color-interactive-subtle-warning-on-pressed: rgb(var(--interactive-subtle-warning-on-pressed-base));
1206
+ --color-interactive-subtle-error-on-hover: rgb(var(--interactive-subtle-error-on-hover-base));
1207
+ --color-interactive-subtle-error-on-pressed: rgb(var(--interactive-subtle-error-on-pressed-base));
1208
+ --color-interactive-outlined-primary-on-toggled-idle: rgb(var(--interactive-outlined-primary-on-toggled-idle-base));
1209
+ --color-interactive-outlined-primary-on-toggled-hover: rgb(var(--interactive-outlined-primary-on-toggled-hover-base));
1210
+ --color-interactive-outlined-primary-on-toggled-disabled: rgb(
1211
+ var(--interactive-outlined-primary-on-toggled-disabled-base)
1212
+ );
1213
+ --color-interactive-outlined-primary-toggled-idle: rgb(var(--interactive-outlined-primary-toggled-idle-base));
1214
+ --color-interactive-outlined-primary-toggled-hover: rgb(var(--interactive-outlined-primary-toggled-hover-base));
1215
+ --color-interactive-outlined-primary-toggled-disabled: rgb(var(--interactive-outlined-primary-toggled-disabled-base));
1216
+ --color-interactive-outlined-primary-idle: var(--interactive-outlined-primary-idle-base);
1217
+ --color-interactive-outlined-primary-pressed: rgb(var(--interactive-outlined-primary-pressed-base));
1218
+ --color-interactive-outlined-primary-disabled: var(--interactive-outlined-primary-disabled-base);
1219
+ --color-interactive-outlined-secondary-idle: var(--interactive-outlined-secondary-idle-base);
1220
+ --color-interactive-outlined-secondary-pressed: rgb(var(--interactive-outlined-secondary-pressed-base));
1221
+ --color-interactive-outlined-secondary-disabled: var(--interactive-outlined-secondary-disabled-base);
1222
+ --color-interactive-outlined-secondary-on-toggled-idle: rgb(
1223
+ var(--interactive-outlined-secondary-on-toggled-idle-base)
1224
+ );
1225
+ --color-interactive-outlined-secondary-on-toggled-hover: rgb(
1226
+ var(--interactive-outlined-secondary-on-toggled-hover-base)
1227
+ );
1228
+ --color-interactive-outlined-secondary-on-toggled-disabled: rgb(
1229
+ var(--interactive-outlined-secondary-on-toggled-disabled-base)
1230
+ );
1231
+ --color-interactive-outlined-secondary-toggled-idle: rgb(var(--interactive-outlined-secondary-toggled-idle-base));
1232
+ --color-interactive-outlined-secondary-toggled-hover: rgb(var(--interactive-outlined-secondary-toggled-hover-base));
1233
+ --color-interactive-outlined-secondary-toggled-disabled: rgb(
1234
+ var(--interactive-outlined-secondary-toggled-disabled-base)
1235
+ );
1236
+ --color-interactive-outlined-success-idle: var(--interactive-outlined-success-idle-base);
1237
+ --color-interactive-outlined-success-pressed: rgb(var(--interactive-outlined-success-pressed-base));
1238
+ --color-interactive-outlined-success-disabled: var(--interactive-outlined-success-disabled-base);
1239
+ --color-interactive-outlined-warning-idle: var(--interactive-outlined-warning-idle-base);
1240
+ --color-interactive-outlined-warning-pressed: rgb(var(--interactive-outlined-warning-pressed-base));
1241
+ --color-interactive-outlined-warning-disabled: var(--interactive-outlined-warning-disabled-base);
1242
+ --color-interactive-outlined-error-pressed: rgb(var(--interactive-outlined-error-pressed-base));
1243
+ --color-interactive-outlined-error-idle: var(--interactive-outlined-error-idle-base);
1244
+ --color-interactive-outlined-error-disabled: var(--interactive-outlined-error-disabled-base);
1245
+ --color-elevation-fill-inverted-4: rgb(var(--elevation-fill-inverted-4-base));
1246
+ --color-interactive-text-primary-focus: rgb(var(--interactive-text-primary-focus-base));
1247
+ --color-interactive-text-secondary-focus: rgb(var(--interactive-text-secondary-focus-base));
1248
+ --color-interactive-text-secondary-focus-inverted: rgb(var(--interactive-text-secondary-focus-inverted-base));
1249
+ --color-interactive-text-primary-focus-inverted: rgb(var(--interactive-text-primary-focus-inverted-base));
1250
+ --color-interactive-text-success-focus: rgb(var(--interactive-text-success-focus-base));
1251
+ --color-interactive-text-success-focus-inverted: rgb(var(--interactive-text-success-focus-inverted-base));
1252
+ --color-interactive-text-warning-focus: rgb(var(--interactive-text-warning-focus-base));
1253
+ --color-interactive-text-warning-focus-inverted: rgb(var(--interactive-text-warning-focus-inverted-base));
1254
+ --color-interactive-text-error-focus: rgb(var(--interactive-text-error-focus-base));
1255
+ --color-interactive-text-error-focus-inverted: rgb(var(--interactive-text-error-focus-inverted-base));
1256
+ --color-interactive-subtle-secondary-on-toggled-hover: rgb(var(--interactive-subtle-secondary-on-toggled-hover-base));
1257
+ --color-interactive-subtle-secondary-on-toggled-disabled: rgb(
1258
+ var(--interactive-subtle-secondary-on-toggled-disabled-base)
1259
+ );
1260
+ --color-interactive-subtle-secondary-toggled-hover: rgb(var(--interactive-subtle-secondary-toggled-hover-base));
1261
+ --color-interactive-subtle-secondary-toggled-disabled: rgb(var(--interactive-subtle-secondary-toggled-disabled-base));
1262
+ --color-interactive-text-primary-disabled-inverted: rgb(var(--interactive-text-primary-disabled-inverted-base));
1263
+ --color-interactive-text-secondary-disabled-inverted: rgb(var(--interactive-text-secondary-disabled-inverted-base));
1264
+ --color-interactive-text-success-disabled-inverted: rgb(var(--interactive-text-success-disabled-inverted-base));
1265
+ --color-interactive-text-warning-disabled-inverted: rgb(var(--interactive-text-warning-disabled-inverted-base));
1266
+ --color-interactive-text-error-disabled-inverted: rgb(var(--interactive-text-error-disabled-inverted-base));
1267
+ --color-interactive-subtle-primary-on-toggled-hover: rgb(var(--interactive-subtle-primary-on-toggled-hover-base));
1268
+ --color-interactive-subtle-primary-on-toggled-disabled: rgb(
1269
+ var(--interactive-subtle-primary-on-toggled-disabled-base)
1270
+ );
1271
+ --color-interactive-subtle-primary-toggled-hover: rgb(var(--interactive-subtle-primary-toggled-hover-base));
1272
+ --color-interactive-subtle-primary-toggled-disabled: rgb(var(--interactive-subtle-primary-toggled-disabled-base));
1273
+ --color-input-outlined-outline-idle: rgb(var(--input-outlined-outline-idle-base));
1274
+ --color-input-outlined-outline-hover: rgb(var(--input-outlined-outline-hover-base));
1275
+ --color-input-outlined-outline-active: rgb(var(--input-outlined-outline-active-base));
1276
+ --color-input-outlined-outline-error: rgb(var(--input-outlined-outline-error-base));
1277
+ --color-input-outlined-outline-disabled: rgb(var(--input-outlined-outline-disabled-base));
1278
+ --color-input-filled-outline-error: rgb(var(--input-filled-outline-error-base));
1279
+ --color-input-filled-outline-hover: rgb(var(--input-filled-outline-hover-base));
1280
+ --color-input-filled-outline-active: rgb(var(--input-filled-outline-active-base));
1281
+ --color-support-overlay: var(--support-overlay-base);
1282
+ --color-focus: rgb(var(--focus-base));
1283
+ --color-shadow-5: var(--shadow-5-base);
1284
+ --color-shadow-6: var(--shadow-6-base);
1285
+ --color-shadow-10: var(--shadow-10-base);
1286
+ --color-shadow-4: var(--shadow-4-base);
1287
+ --color-shadow-25: var(--shadow-25-base);
1288
+ --color-text-success-inverted-1: rgb(var(--text-success-inverted-1-base));
1289
+ --color-text-success-inverted-2: rgb(var(--text-success-inverted-2-base));
1290
+ --color-text-success-inverted-3: rgb(var(--text-success-inverted-3-base));
1291
+ --color-text-warning-inverted-1: rgb(var(--text-warning-inverted-1-base));
1292
+ --color-text-warning-inverted-2: rgb(var(--text-warning-inverted-2-base));
1293
+ --color-text-warning-inverted-3: rgb(var(--text-warning-inverted-3-base));
1294
+ --color-text-error-inverted-1: rgb(var(--text-error-inverted-1-base));
1295
+ --color-text-error-inverted-2: rgb(var(--text-error-inverted-2-base));
1296
+ --color-text-error-inverted-3: rgb(var(--text-error-inverted-3-base));
1297
+ --color-interactive-contained-primary-on-toggled-idle: rgb(var(--interactive-contained-primary-on-toggled-idle-base));
1298
+ --color-interactive-contained-primary-on-toggled-hover: rgb(
1299
+ var(--interactive-contained-primary-on-toggled-hover-base)
1300
+ );
1301
+ --color-interactive-contained-primary-on-toggled-disabled: rgb(
1302
+ var(--interactive-contained-primary-on-toggled-disabled-base)
1303
+ );
1304
+ --color-interactive-contained-primary-toggled-hover: rgb(var(--interactive-contained-primary-toggled-hover-base));
1305
+ --color-interactive-contained-primary-toggled-disabled: rgb(
1306
+ var(--interactive-contained-primary-toggled-disabled-base)
1307
+ );
1308
+ --color-interactive-contained-primary-toggled-idle: rgb(var(--interactive-contained-primary-toggled-idle-base));
1309
+ --color-interactive-contained-secondary-on-toggled-hover: rgb(
1310
+ var(--interactive-contained-secondary-on-toggled-hover-base)
1311
+ );
1312
+ --color-interactive-contained-secondary-on-toggled-disabled: rgb(
1313
+ var(--interactive-contained-secondary-on-toggled-disabled-base)
1314
+ );
1315
+ --color-interactive-contained-secondary-toggled-idle: rgb(var(--interactive-contained-secondary-toggled-idle-base));
1316
+ --color-interactive-contained-secondary-toggled-hover: rgb(var(--interactive-contained-secondary-toggled-hover-base));
1317
+ --color-interactive-contained-secondary-toggled-disabled: rgb(
1318
+ var(--interactive-contained-secondary-toggled-disabled-base)
1319
+ );
1320
+ --color-interactive-contained-secondary-on-toggled-idle: rgb(
1321
+ var(--interactive-contained-secondary-on-toggled-idle-base)
1322
+ );
1323
+ --color-interactive-contained-success-on-toggled-hover: rgb(
1324
+ var(--interactive-contained-success-on-toggled-hover-base)
1325
+ );
1326
+ --color-interactive-contained-success-on-toggled-disabled: rgb(
1327
+ var(--interactive-contained-success-on-toggled-disabled-base)
1328
+ );
1329
+ --color-interactive-contained-success-on-toggled-idle: rgb(var(--interactive-contained-success-on-toggled-idle-base));
1330
+ --color-interactive-contained-success-toggled-hover: rgb(var(--interactive-contained-success-toggled-hover-base));
1331
+ --color-interactive-contained-success-toggled-disabled: rgb(
1332
+ var(--interactive-contained-success-toggled-disabled-base)
1333
+ );
1334
+ --color-interactive-contained-success-toggled-idle: rgb(var(--interactive-contained-success-toggled-idle-base));
1335
+ --color-interactive-contained-warning-on-toggled-hover: rgb(
1336
+ var(--interactive-contained-warning-on-toggled-hover-base)
1337
+ );
1338
+ --color-interactive-contained-warning-on-toggled-disabled: rgb(
1339
+ var(--interactive-contained-warning-on-toggled-disabled-base)
1340
+ );
1341
+ --color-interactive-contained-warning-toggled-idle: rgb(var(--interactive-contained-warning-toggled-idle-base));
1342
+ --color-interactive-contained-warning-toggled-hover: rgb(var(--interactive-contained-warning-toggled-hover-base));
1343
+ --color-interactive-contained-warning-toggled-disabled: rgb(
1344
+ var(--interactive-contained-warning-toggled-disabled-base)
1345
+ );
1346
+ --color-interactive-contained-warning-on-toggled-idle: rgb(var(--interactive-contained-warning-on-toggled-idle-base));
1347
+ --color-interactive-contained-error-on-toggled-idle: rgb(var(--interactive-contained-error-on-toggled-idle-base));
1348
+ --color-interactive-contained-error-toggled-hover: rgb(var(--interactive-contained-error-toggled-hover-base));
1349
+ --color-interactive-contained-error-toggled-idle: rgb(var(--interactive-contained-error-toggled-idle-base));
1350
+ --color-interactive-contained-error-on-toggled-disabled: rgb(
1351
+ var(--interactive-contained-error-on-toggled-disabled-base)
1352
+ );
1353
+ --color-interactive-contained-error-toggled-disabled: rgb(var(--interactive-contained-error-toggled-disabled-base));
1354
+ --color-interactive-contained-error-on-toggled-hover: rgb(var(--interactive-contained-error-on-toggled-hover-base));
1355
+ --color-interactive-subtle-success-toggled-disabled: rgb(var(--interactive-subtle-success-toggled-disabled-base));
1356
+ --color-interactive-subtle-success-toggled-hover: rgb(var(--interactive-subtle-success-toggled-hover-base));
1357
+ --color-interactive-subtle-success-on-toggled-disabled: rgb(
1358
+ var(--interactive-subtle-success-on-toggled-disabled-base)
1359
+ );
1360
+ --color-interactive-subtle-success-toggled-idle: rgb(var(--interactive-subtle-success-toggled-idle-base));
1361
+ --color-interactive-subtle-success-on-toggled-idle: rgb(var(--interactive-subtle-success-on-toggled-idle-base));
1362
+ --color-interactive-subtle-success-on-toggled-hover: rgb(var(--interactive-subtle-success-on-toggled-hover-base));
1363
+ --color-interactive-subtle-warning-on-toggled-idle: rgb(var(--interactive-subtle-warning-on-toggled-idle-base));
1364
+ --color-interactive-subtle-warning-toggled-disabled: rgb(var(--interactive-subtle-warning-toggled-disabled-base));
1365
+ --color-interactive-subtle-warning-toggled-idle: rgb(var(--interactive-subtle-warning-toggled-idle-base));
1366
+ --color-interactive-subtle-warning-toggled-hover: rgb(var(--interactive-subtle-warning-toggled-hover-base));
1367
+ --color-interactive-subtle-warning-on-toggled-disabled: rgb(
1368
+ var(--interactive-subtle-warning-on-toggled-disabled-base)
1369
+ );
1370
+ --color-interactive-subtle-warning-on-toggled-hover: rgb(var(--interactive-subtle-warning-on-toggled-hover-base));
1371
+ --color-interactive-subtle-error-on-toggled-idle: rgb(var(--interactive-subtle-error-on-toggled-idle-base));
1372
+ --color-interactive-subtle-error-toggled-idle: rgb(var(--interactive-subtle-error-toggled-idle-base));
1373
+ --color-interactive-subtle-error-toggled-disabled: rgb(var(--interactive-subtle-error-toggled-disabled-base));
1374
+ --color-interactive-subtle-error-toggled-hover: rgb(var(--interactive-subtle-error-toggled-hover-base));
1375
+ --color-interactive-subtle-error-on-toggled-disabled: rgb(var(--interactive-subtle-error-on-toggled-disabled-base));
1376
+ --color-interactive-subtle-error-on-toggled-hover: rgb(var(--interactive-subtle-error-on-toggled-hover-base));
1377
+ --color-support-transparent-outline: var(--support-transparent-outline-base);
1378
+ --color-interactive-outlined-success-on-toggled-idle: rgb(var(--interactive-outlined-success-on-toggled-idle-base));
1379
+ --color-interactive-outlined-success-on-toggled-hover: rgb(var(--interactive-outlined-success-on-toggled-hover-base));
1380
+ --color-interactive-outlined-success-toggled-disabled: rgb(var(--interactive-outlined-success-toggled-disabled-base));
1381
+ --color-interactive-outlined-success-toggled-hover: rgb(var(--interactive-outlined-success-toggled-hover-base));
1382
+ --color-interactive-outlined-success-toggled-idle: rgb(var(--interactive-outlined-success-toggled-idle-base));
1383
+ --color-interactive-outlined-success-on-toggled-disabled: rgb(
1384
+ var(--interactive-outlined-success-on-toggled-disabled-base)
1385
+ );
1386
+ --color-interactive-outlined-warning-on-toggled-idle: rgb(var(--interactive-outlined-warning-on-toggled-idle-base));
1387
+ --color-interactive-outlined-warning-toggled-disabled: rgb(var(--interactive-outlined-warning-toggled-disabled-base));
1388
+ --color-interactive-outlined-warning-on-toggled-hover: rgb(var(--interactive-outlined-warning-on-toggled-hover-base));
1389
+ --color-interactive-outlined-warning-toggled-hover: rgb(var(--interactive-outlined-warning-toggled-hover-base));
1390
+ --color-interactive-outlined-warning-on-toggled-disabled: rgb(
1391
+ var(--interactive-outlined-warning-on-toggled-disabled-base)
1392
+ );
1393
+ --color-interactive-outlined-warning-toggled-idle: rgb(var(--interactive-outlined-warning-toggled-idle-base));
1394
+ --color-interactive-outlined-error-toggled-hover: rgb(var(--interactive-outlined-error-toggled-hover-base));
1395
+ --color-interactive-outlined-error-toggled-disabled: rgb(var(--interactive-outlined-error-toggled-disabled-base));
1396
+ --color-interactive-outlined-error-toggled-idle: rgb(var(--interactive-outlined-error-toggled-idle-base));
1397
+ --color-interactive-outlined-error-on-toggled-idle: rgb(var(--interactive-outlined-error-on-toggled-idle-base));
1398
+ --color-interactive-outlined-error-on-toggled-disabled: rgb(
1399
+ var(--interactive-outlined-error-on-toggled-disabled-base)
1400
+ );
1401
+ --color-interactive-outlined-error-on-toggled-hover: rgb(var(--interactive-outlined-error-on-toggled-hover-base));
1402
+ --color-interactive-ghost-primary-on-idle: rgb(var(--interactive-ghost-primary-on-idle-base));
1403
+ --color-interactive-ghost-primary-on-hover: rgb(var(--interactive-ghost-primary-on-hover-base));
1404
+ --color-interactive-ghost-primary-on-pressed: rgb(var(--interactive-ghost-primary-on-pressed-base));
1405
+ --color-interactive-ghost-primary-on-disabled: rgb(var(--interactive-ghost-primary-on-disabled-base));
1406
+ --color-interactive-ghost-primary-idle: var(--interactive-ghost-primary-idle-base);
1407
+ --color-interactive-ghost-primary-hover: rgb(var(--interactive-ghost-primary-hover-base));
1408
+ --color-interactive-ghost-primary-pressed: rgb(var(--interactive-ghost-primary-pressed-base));
1409
+ --color-interactive-ghost-primary-disabled: rgb(var(--interactive-ghost-primary-disabled-base));
1410
+ --color-interactive-ghost-primary-focus: rgb(var(--interactive-ghost-primary-focus-base));
1411
+ --color-interactive-ghost-secondary-on-idle: rgb(var(--interactive-ghost-secondary-on-idle-base));
1412
+ --color-interactive-ghost-primary-on-toggled-idle: rgb(var(--interactive-ghost-primary-on-toggled-idle-base));
1413
+ --color-interactive-ghost-primary-on-toggled-hover: rgb(var(--interactive-ghost-primary-on-toggled-hover-base));
1414
+ --color-interactive-ghost-primary-on-toggled-disabled: rgb(var(--interactive-ghost-primary-on-toggled-disabled-base));
1415
+ --color-interactive-ghost-secondary-on-hover: rgb(var(--interactive-ghost-secondary-on-hover-base));
1416
+ --color-interactive-ghost-secondary-on-pressed: rgb(var(--interactive-ghost-secondary-on-pressed-base));
1417
+ --color-interactive-ghost-secondary-on-disabled: rgb(var(--interactive-ghost-secondary-on-disabled-base));
1418
+ --color-interactive-ghost-secondary-idle: var(--interactive-ghost-secondary-idle-base);
1419
+ --color-interactive-ghost-primary-toggled-idle: rgb(var(--interactive-ghost-primary-toggled-idle-base));
1420
+ --color-interactive-ghost-secondary-hover: rgb(var(--interactive-ghost-secondary-hover-base));
1421
+ --color-interactive-ghost-secondary-pressed: rgb(var(--interactive-ghost-secondary-pressed-base));
1422
+ --color-interactive-ghost-secondary-disabled: rgb(var(--interactive-ghost-secondary-disabled-base));
1423
+ --color-interactive-ghost-secondary-focus: rgb(var(--interactive-ghost-secondary-focus-base));
1424
+ --color-interactive-ghost-secondary-on-toggled-idle: rgb(var(--interactive-ghost-secondary-on-toggled-idle-base));
1425
+ --color-interactive-ghost-secondary-on-toggled-hover: rgb(var(--interactive-ghost-secondary-on-toggled-hover-base));
1426
+ --color-interactive-ghost-secondary-on-toggled-disabled: rgb(
1427
+ var(--interactive-ghost-secondary-on-toggled-disabled-base)
1428
+ );
1429
+ --color-interactive-ghost-secondary-toggled-idle: rgb(var(--interactive-ghost-secondary-toggled-idle-base));
1430
+ --color-interactive-ghost-secondary-toggled-hover: rgb(var(--interactive-ghost-secondary-toggled-hover-base));
1431
+ --color-interactive-ghost-secondary-toggled-disabled: rgb(var(--interactive-ghost-secondary-toggled-disabled-base));
1432
+ --color-interactive-ghost-success-on-idle: rgb(var(--interactive-ghost-success-on-idle-base));
1433
+ --color-interactive-ghost-success-on-hover: rgb(var(--interactive-ghost-success-on-hover-base));
1434
+ --color-interactive-ghost-success-on-pressed: rgb(var(--interactive-ghost-success-on-pressed-base));
1435
+ --color-interactive-ghost-success-on-disabled: rgb(var(--interactive-ghost-success-on-disabled-base));
1436
+ --color-interactive-ghost-success-idle: var(--interactive-ghost-success-idle-base);
1437
+ --color-interactive-ghost-success-hover: rgb(var(--interactive-ghost-success-hover-base));
1438
+ --color-interactive-ghost-success-pressed: rgb(var(--interactive-ghost-success-pressed-base));
1439
+ --color-interactive-ghost-success-disabled: rgb(var(--interactive-ghost-success-disabled-base));
1440
+ --color-interactive-ghost-success-focus: rgb(var(--interactive-ghost-success-focus-base));
1441
+ --color-interactive-ghost-warning-on-idle: rgb(var(--interactive-ghost-warning-on-idle-base));
1442
+ --color-interactive-ghost-success-on-toggled-idle: rgb(var(--interactive-ghost-success-on-toggled-idle-base));
1443
+ --color-interactive-ghost-warning-on-hover: rgb(var(--interactive-ghost-warning-on-hover-base));
1444
+ --color-interactive-ghost-warning-on-pressed: rgb(var(--interactive-ghost-warning-on-pressed-base));
1445
+ --color-interactive-ghost-warning-on-disabled: rgb(var(--interactive-ghost-warning-on-disabled-base));
1446
+ --color-interactive-ghost-warning-idle: var(--interactive-ghost-warning-idle-base);
1447
+ --color-interactive-ghost-success-on-toggled-hover: rgb(var(--interactive-ghost-success-on-toggled-hover-base));
1448
+ --color-interactive-ghost-warning-hover: rgb(var(--interactive-ghost-warning-hover-base));
1449
+ --color-interactive-ghost-success-on-toggled-disabled: rgb(var(--interactive-ghost-success-on-toggled-disabled-base));
1450
+ --color-interactive-ghost-warning-pressed: rgb(var(--interactive-ghost-warning-pressed-base));
1451
+ --color-interactive-ghost-success-toggled-idle: rgb(var(--interactive-ghost-success-toggled-idle-base));
1452
+ --color-interactive-ghost-warning-disabled: rgb(var(--interactive-ghost-warning-disabled-base));
1453
+ --color-interactive-ghost-success-toggled-hover: rgb(var(--interactive-ghost-success-toggled-hover-base));
1454
+ --color-interactive-ghost-warning-focus: rgb(var(--interactive-ghost-warning-focus-base));
1455
+ --color-interactive-ghost-success-toggled-disabled: rgb(var(--interactive-ghost-success-toggled-disabled-base));
1456
+ --color-interactive-ghost-warning-on-toggled-idle: rgb(var(--interactive-ghost-warning-on-toggled-idle-base));
1457
+ --color-interactive-ghost-error-on-idle: rgb(var(--interactive-ghost-error-on-idle-base));
1458
+ --color-interactive-ghost-warning-on-toggled-hover: rgb(var(--interactive-ghost-warning-on-toggled-hover-base));
1459
+ --color-interactive-ghost-error-on-hover: rgb(var(--interactive-ghost-error-on-hover-base));
1460
+ --color-interactive-ghost-error-on-pressed: rgb(var(--interactive-ghost-error-on-pressed-base));
1461
+ --color-interactive-ghost-error-on-disabled: rgb(var(--interactive-ghost-error-on-disabled-base));
1462
+ --color-interactive-ghost-error-idle: var(--interactive-ghost-error-idle-base);
1463
+ --color-interactive-ghost-warning-on-toggled-disabled: rgb(var(--interactive-ghost-warning-on-toggled-disabled-base));
1464
+ --color-interactive-ghost-warning-toggled-idle: rgb(var(--interactive-ghost-warning-toggled-idle-base));
1465
+ --color-interactive-ghost-error-hover: rgb(var(--interactive-ghost-error-hover-base));
1466
+ --color-interactive-ghost-warning-toggled-hover: rgb(var(--interactive-ghost-warning-toggled-hover-base));
1467
+ --color-interactive-ghost-error-pressed: rgb(var(--interactive-ghost-error-pressed-base));
1468
+ --color-interactive-ghost-error-disabled: rgb(var(--interactive-ghost-error-disabled-base));
1469
+ --color-interactive-ghost-warning-toggled-disabled: rgb(var(--interactive-ghost-warning-toggled-disabled-base));
1470
+ --color-interactive-ghost-error-focus: rgb(var(--interactive-ghost-error-focus-base));
1471
+ --color-interactive-ghost-error-on-toggled-idle: rgb(var(--interactive-ghost-error-on-toggled-idle-base));
1472
+ --color-interactive-ghost-error-on-toggled-hover: rgb(var(--interactive-ghost-error-on-toggled-hover-base));
1473
+ --color-interactive-ghost-error-on-toggled-disabled: rgb(var(--interactive-ghost-error-on-toggled-disabled-base));
1474
+ --color-interactive-ghost-error-toggled-idle: rgb(var(--interactive-ghost-error-toggled-idle-base));
1475
+ --color-interactive-ghost-error-toggled-hover: rgb(var(--interactive-ghost-error-toggled-hover-base));
1476
+ --color-interactive-ghost-error-toggled-disabled: rgb(var(--interactive-ghost-error-toggled-disabled-base));
1477
+ --color-interactive-ghost-primary-toggled-hover: rgb(var(--interactive-ghost-primary-toggled-hover-base));
1478
+ --color-interactive-ghost-primary-toggled-disabled: rgb(var(--interactive-ghost-primary-toggled-disabled-base));
1479
+ --color-interactive-text-primary-toggled-idle: rgb(var(--interactive-text-primary-toggled-idle-base));
1480
+ --color-interactive-text-primary-toggled-hovered: rgb(var(--interactive-text-primary-toggled-hovered-base));
1481
+ --color-interactive-text-primary-toggled-disabled: rgb(var(--interactive-text-primary-toggled-disabled-base));
1482
+ --color-interactive-text-secondary-toggled-disabled: rgb(var(--interactive-text-secondary-toggled-disabled-base));
1483
+ --color-interactive-text-secondary-toggled-hovered: rgb(var(--interactive-text-secondary-toggled-hovered-base));
1484
+ --color-interactive-text-secondary-toggled-idle: rgb(var(--interactive-text-secondary-toggled-idle-base));
1485
+ --color-interactive-text-success-toggled-disabled: rgb(var(--interactive-text-success-toggled-disabled-base));
1486
+ --color-interactive-text-success-toggled-hovered: rgb(var(--interactive-text-success-toggled-hovered-base));
1487
+ --color-interactive-text-success-toggled-idle: rgb(var(--interactive-text-success-toggled-idle-base));
1488
+ --color-interactive-text-primary-toggled-disabled-inverted: rgb(
1489
+ var(--interactive-text-primary-toggled-disabled-inverted-base)
1490
+ );
1491
+ --color-interactive-text-primary-toggled-hovered-inverted: rgb(
1492
+ var(--interactive-text-primary-toggled-hovered-inverted-base)
1493
+ );
1494
+ --color-interactive-text-primary-toggled-idle-inverted: rgb(
1495
+ var(--interactive-text-primary-toggled-idle-inverted-base)
1496
+ );
1497
+ --color-interactive-text-success-toggled-disabled-inverted: rgb(
1498
+ var(--interactive-text-success-toggled-disabled-inverted-base)
1499
+ );
1500
+ --color-interactive-text-success-toggled-hovered-inverted: rgb(
1501
+ var(--interactive-text-success-toggled-hovered-inverted-base)
1502
+ );
1503
+ --color-interactive-text-success-toggled-idle-inverted: rgb(
1504
+ var(--interactive-text-success-toggled-idle-inverted-base)
1505
+ );
1506
+ --color-interactive-text-warning-toggled-disabled-inverted: rgb(
1507
+ var(--interactive-text-warning-toggled-disabled-inverted-base)
1508
+ );
1509
+ --color-interactive-text-warning-toggled-hovered-inverted: rgb(
1510
+ var(--interactive-text-warning-toggled-hovered-inverted-base)
1511
+ );
1512
+ --color-interactive-text-warning-toggled-hovered: rgb(var(--interactive-text-warning-toggled-hovered-base));
1513
+ --color-interactive-text-warning-toggled-idle-inverted: rgb(
1514
+ var(--interactive-text-warning-toggled-idle-inverted-base)
1515
+ );
1516
+ --color-interactive-text-warning-toggled-disabled: rgb(var(--interactive-text-warning-toggled-disabled-base));
1517
+ --color-interactive-text-warning-toggled-idle: rgb(var(--interactive-text-warning-toggled-idle-base));
1518
+ --color-interactive-text-error-toggled-hovered-inverted: rgb(
1519
+ var(--interactive-text-error-toggled-hovered-inverted-base)
1520
+ );
1521
+ --color-interactive-text-error-toggled-idle-inverted: rgb(var(--interactive-text-error-toggled-idle-inverted-base));
1522
+ --color-interactive-text-error-toggled-hovered: rgb(var(--interactive-text-error-toggled-hovered-base));
1523
+ --color-interactive-text-error-toggled-disabled-inverted: rgb(
1524
+ var(--interactive-text-error-toggled-disabled-inverted-base)
1525
+ );
1526
+ --color-interactive-text-error-toggled-disabled: rgb(var(--interactive-text-error-toggled-disabled-base));
1527
+ --color-interactive-text-error-toggled-idle: rgb(var(--interactive-text-error-toggled-idle-base));
1528
+ --color-elevation-fill-default-4: rgb(var(--elevation-fill-default-4-base));
1529
+ --color-support-alert: rgb(var(--support-alert-base));
1530
+ --color-support-status-purple-on: rgb(var(--support-status-purple-on-base));
1531
+ --color-support-status-purple-bg: rgb(var(--support-status-purple-bg-base));
1532
+ --color-support-status-teal-on: rgb(var(--support-status-teal-on-base));
1533
+ --color-support-status-teal-bg: rgb(var(--support-status-teal-bg-base));
1534
+ --color-support-status-white-bg: rgb(var(--support-status-white-bg-base));
1535
+ --color-support-status-yellow-bg: rgb(var(--support-status-yellow-bg-base));
1536
+ --color-support-status-yellow-on: rgb(var(--support-status-yellow-on-base));
1537
+ --color-elevation-fill-default-2-5: rgb(var(--elevation-fill-default-2-5-base));
1538
+ --color-elevation-fill-default-3-5: rgb(var(--elevation-fill-default-3-5-base));
1539
+ --radius-none: 0rem;
1540
+ --radius-2xs: 0.125rem;
1541
+ --radius-xs: 0.25rem;
1542
+ --radius-s: 0.375rem;
1543
+ --radius-sm: 0.5rem;
1544
+ --radius-ml: 0.75rem;
1545
+ --radius-xl: 1rem;
1546
+ --radius-4xl: 1.5rem;
1547
+ --radius-full: 624.9375rem;
1548
+ --radius-5xl: 1.75rem;
1549
+ --radius-6xl: 2rem;
1550
+ --radius-m: 0.625rem;
1551
+ --radius-l: 0.875rem;
1552
+ --radius-2xl: 1.125rem;
1553
+ --radius-3xl: 1.25rem;
1554
+ --radius-global-rounding-xs: 0.25rem;
1555
+ --radius-global-rounding-s: 0.375rem;
1556
+ --radius-global-rounding-m: 0.5rem;
1557
+ --radius-global-rounding-l: 0.625rem;
1558
+ --radius-global-rounding-xl: 0.75rem;
1559
+ --radius-input-rounding-default: 0.375rem;
1560
+ --radius-list-rounding-actions: 0rem;
1561
+ --radius-list-rounding-drawer: 1rem;
1562
+ --radius-modal-rounding-default: 0.75rem;
1563
+ --radius-toast-rounding-default: 0.5rem;
1564
+ --radius-tooltip-rounding-default: 0.5rem;
1565
+ --radius-button-rounding-m: 0.375rem;
1566
+ --radius-alert-rounding-default: 0.5rem;
1567
+ --radius-pill-rounding-default: 624.9375rem;
1568
+ --radius-button-focus-rounding-s: 0.5rem;
1569
+ --radius-list-rounding-dropdown: 0.375rem;
1570
+ --radius-button-rounding-s: 0.375rem;
1571
+ --radius-button-rounding-xs: 0.375rem;
1572
+ --radius-button-rounding-l: 0.375rem;
1573
+ --radius-button-focus-rounding-xs: 0.5rem;
1574
+ --radius-button-focus-rounding-m: 0.5rem;
1575
+ --radius-button-focus-rounding-l: 0.5rem;
1576
+ --radius-file-upload-container-rounding-default: 0.375rem;
1577
+ --radius-file-upload-file-card-rounding-default: 0.375rem;
1578
+ --radius-segmented-control-rounding-segment: 0.375rem;
1579
+ --radius-segmented-control-rounding-segmented-control: 0.5rem;
1580
+ --radius-avatar-rounding-default: 624.9375rem;
1581
+ --radius-progress-rounding-default: 0.25rem;
1582
+ --radius-slider-rounding-default: 0.25rem;
1583
+ --radius-stepper-rounding-icon: 624.9375rem;
1584
+ --radius-accordion-rounding-filled: 0.375rem;
1585
+ --radius-button-focus-rounding-none: 0rem;
1586
+ --radius-accordion-rounding-focus: 0.5rem;
1587
+ --radius-accordion-rounding-outlined: 0rem;
1588
+ --container-0: 0rem;
1589
+ --container-1: 0.25rem;
1590
+ --container-2: 0.5rem;
1591
+ --container-3: 0.75rem;
1592
+ --container-4: 1rem;
1593
+ --container-5: 1.25rem;
1594
+ --container-6: 1.5rem;
1595
+ --container-7: 1.75rem;
1596
+ --container-8: 2rem;
1597
+ --container-9: 2.25rem;
1598
+ --container-10: 2.5rem;
1599
+ --container-11: 2.75rem;
1600
+ --container-12: 3rem;
1601
+ --container-14: 3.5rem;
1602
+ --container-16: 4rem;
1603
+ --container-18: 4.5rem;
1604
+ --container-20: 5rem;
1605
+ --container-24: 6rem;
1606
+ --container-28: 7rem;
1607
+ --container-32: 8rem;
1608
+ --container-36: 9rem;
1609
+ --container-40: 10rem;
1610
+ --container-44: 11rem;
1611
+ --container-48: 12rem;
1612
+ --container-52: 13rem;
1613
+ --container-56: 14rem;
1614
+ --container-60: 15rem;
1615
+ --container-64: 16rem;
1616
+ --container-72: 18rem;
1617
+ --container-80: 20rem;
1618
+ --container-96: 24rem;
1619
+ --container-xs: 20rem;
1620
+ --container-sm: 24rem;
1621
+ --container-md: 28rem;
1622
+ --container-lg: 32rem;
1623
+ --container-xl: 36rem;
1624
+ --container-2xl: 42rem;
1625
+ --container-3xl: 48rem;
1626
+ --container-4xl: 56rem;
1627
+ --container-5xl: 64rem;
1628
+ --container-6xl: 72rem;
1629
+ --container-7xl: 80rem;
1630
+ --container-2xs: 16rem;
1631
+ --container-3xs: 12rem;
1632
+ --container-3-5xs: 9.75rem;
1633
+ --container-4xs: 8rem;
1634
+ --container-4-5xs: 7rem;
1635
+ --container-5-5xs: 4.75rem;
1636
+ --container-5xs: 6rem;
1637
+ --container-px: 0.0625rem;
1638
+ --container-0-5: 0.125rem;
1639
+ --container-1-5: 0.375rem;
1640
+ --container-2-5: 0.625rem;
1641
+ --container-3-5: 0.875rem;
1642
+ --container-avatar-height-xs: 1.5rem;
1643
+ --container-avatar-height-s: 2rem;
1644
+ --container-avatar-height-m: 2.5rem;
1645
+ --container-avatar-height-l: 3.5rem;
1646
+ --container-avatar-height-xl: 4.5rem;
1647
+ --container-avatar-height-xxl: 6rem;
1648
+ --container-input-width-min-width: 12.75rem;
1649
+ --container-button-min-width-xs: 2.375rem;
1650
+ --container-button-min-width-s: 2.875rem;
1651
+ --container-button-min-width-m: 3.625rem;
1652
+ --container-button-min-width-l: 4.125rem;
1653
+ --container-floating-label-input-offset-top: 0.1875rem;
1654
+ --container-floating-label-input-offset-bottom: 0.0625rem;
1655
+ --container-global-side-xs: 0.125rem;
1656
+ --container-global-side-s: 0.25rem;
1657
+ --container-global-side-m: 0.625rem;
1658
+ --container-global-side-l: 1rem;
1659
+ --container-global-side-xl: 1.25rem;
1660
+ --container-global-gap-xs: 0.25rem;
1661
+ --container-global-gap-s: 0.5rem;
1662
+ --container-global-gap-m: 0.75rem;
1663
+ --container-global-gap-l: 1rem;
1664
+ --container-global-gap-xl: 1.25rem;
1665
+ --container-global-gap-ml: 0.875rem;
1666
+ --container-global-gap-sm: 0.625rem;
1667
+ --container-global-side-sm: 0.375rem;
1668
+ --container-global-side-ml: 0.75rem;
1669
+ --container-global-height-xs: 0.125rem;
1670
+ --container-global-height-s: 0.375rem;
1671
+ --container-global-height-m: 0.625rem;
1672
+ --container-global-height-l: 0.875rem;
1673
+ --container-global-height-xl: 1rem;
1674
+ --container-button-height-xs: 0.125rem;
1675
+ --container-button-height-s: 0.375rem;
1676
+ --container-button-height-m: 0.625rem;
1677
+ --container-button-height-l: 0.875rem;
1678
+ --container-button-side-xs: 0.75rem;
1679
+ --container-button-side-s: 1rem;
1680
+ --container-button-side-m: 1.5rem;
1681
+ --container-button-side-l: 1.75rem;
1682
+ --container-input-height-m: 0.625rem;
1683
+ --container-input-side-m: 0.625rem;
1684
+ --container-input-gap-label-to-input: 0.25rem;
1685
+ --container-input-gap-text-area-controls: 0.5rem;
1686
+ --container-list-height-item: 0.375rem;
1687
+ --container-list-height-actions: 0.375rem;
1688
+ --container-list-height-title-top: 0.75rem;
1689
+ --container-list-side-item-left: 0.625rem;
1690
+ --container-list-side-actions: 1rem;
1691
+ --container-list-height-bottom: 8rem;
1692
+ --container-list-gap-icon-to-label: 0.5rem;
1693
+ --container-list-gap-label-to-subcontent: 0.0625rem;
1694
+ --container-list-side-extra-actions: 1.5rem;
1695
+ --container-list-height-extra-actions: 1.5rem;
1696
+ --container-modal-side-desktop: 2.5rem;
1697
+ --container-modal-height-desktop: 2.5rem;
1698
+ --container-modal-gap-buttons: 1rem;
1699
+ --container-modal-gap-text: 0.625rem;
1700
+ --container-modal-gap-content: 1.75rem;
1701
+ --container-modal-gap-form: 2rem;
1702
+ --container-toast-height-content: 0.875rem;
1703
+ --container-toast-side-default: 1rem;
1704
+ --container-toast-gap-action: 1rem;
1705
+ --container-tooltip-height-default: 0.5rem;
1706
+ --container-tooltip-side-default: 0.75rem;
1707
+ --container-table-cell-content-gap-s: 0.25rem;
1708
+ --container-table-cell-content-gap-m: 0.375rem;
1709
+ --container-table-cell-content-gap-l: 0.5rem;
1710
+ --container-table-cell-content-height-s: 0.25rem;
1711
+ --container-table-cell-content-height-m: 0.375rem;
1712
+ --container-table-cell-content-side-s: 0.375rem;
1713
+ --container-table-cell-content-side-m: 0.5rem;
1714
+ --container-table-cell-container-height-xs: 0.0625rem;
1715
+ --container-table-cell-container-side-default: 0.5rem;
1716
+ --container-table-header-cell-container-height-m: 0.5rem;
1717
+ --container-table-header-cell-container-side-default: 0.5rem;
1718
+ --container-toast-height-actions-mobile: 0.5rem;
1719
+ --container-toast-gap-icon-to-text: 0.75rem;
1720
+ --container-alert-height-content: 0.875rem;
1721
+ --container-alert-height-actions-mobile: 0.5rem;
1722
+ --container-alert-side-default: 1rem;
1723
+ --container-alert-gap-icon-to-text: 0.75rem;
1724
+ --container-alert-gap-action: 1rem;
1725
+ --container-slider-side-bar: 0rem;
1726
+ --container-slider-height-bar: 0.625rem;
1727
+ --container-input-gap-error-to-input: 0.375rem;
1728
+ --container-list-side-title: 1rem;
1729
+ --container-list-gap-title-to-icon: 0.125rem;
1730
+ --container-list-gap-title-to-helper-text: 0rem;
1731
+ --container-list-height-title-bottom: 0.375rem;
1732
+ --container-toast-height-actions-desktop: 0.75rem;
1733
+ --container-alert-height-actions-desktop: 0.75rem;
1734
+ --container-tooltip-gap-margin: 0.75rem;
1735
+ --container-list-gap-margin: 0.25rem;
1736
+ --container-modal-gap-buttons-top: 0.25rem;
1737
+ --container-list-height-subcontent-bottom: 0.25rem;
1738
+ --container-pill-side-default: 0.5rem;
1739
+ --container-pill-height-s: 0.125rem;
1740
+ --container-modal-side-mobile: 1rem;
1741
+ --container-modal-height-mobile: 1rem;
1742
+ --container-pill-gap-pill-to-pill: 0.5rem;
1743
+ --container-progress-side-bar: 0.5rem;
1744
+ --container-progress-height-bar: 0.375rem;
1745
+ --container-file-upload-container-height-top-bottom: 1.5rem;
1746
+ --container-file-upload-container-side-default: 1.5rem;
1747
+ --container-file-upload-file-card-height-top-bottom: 1rem;
1748
+ --container-file-upload-file-card-side-default: 1rem;
1749
+ --container-file-upload-content-height-xs: 0.25rem;
1750
+ --container-file-upload-content-height-s: 0.5rem;
1751
+ --container-file-upload-content-height-m: 1rem;
1752
+ --container-file-upload-content-height-l: 1.75rem;
1753
+ --container-file-upload-content-height-xl: 2rem;
1754
+ --container-input-gap-trailing-elements: 0.25rem;
1755
+ --container-toast-gap-margin-desktop: 2rem;
1756
+ --container-toast-gap-margin-mobile: 1rem;
1757
+ --container-list-gap-content: 0.375rem;
1758
+ --container-floating-label-input-height-empty: 0.625rem;
1759
+ --container-floating-label-input-height-filled: 0rem;
1760
+ --container-floating-label-input-gap-label-to-input: 0.25rem;
1761
+ --container-floating-label-input-gap-trailing-elements: 0.25rem;
1762
+ --container-floating-label-input-gap-error-to-input: 0.375rem;
1763
+ --container-file-upload-content-gap-icon-to-content: 0.5rem;
1764
+ --container-file-upload-content-gap-text-to-text: 0.25rem;
1765
+ --container-file-upload-content-gap-content-to-button: 1.25rem;
1766
+ --container-file-upload-content-gap-text-to-progress: 0.25rem;
1767
+ --container-file-upload-content-gap-progress-actions: 0.5rem;
1768
+ --container-file-upload-content-gap-left-to-right-content: 1rem;
1769
+ --container-file-upload-content-gap-button-to-button: 1rem;
1770
+ --container-file-upload-file-card-gap-icon-to-content-gap: 0.5rem;
1771
+ --container-file-upload-file-card-gap-text-to-text-gap: 0.25rem;
1772
+ --container-file-upload-file-card-gap-progress-actions-gap: 0.5rem;
1773
+ --container-file-upload-file-card-gap-left-to-right-content-gap: 1rem;
1774
+ --container-file-upload-file-card-gap-trailing-actions: 0.5rem;
1775
+ --container-input-gap-input-to-button-gap: 0.625rem;
1776
+ --container-segmented-control-height-segment: 0.375rem;
1777
+ --container-segmented-control-side-segment: 0.75rem;
1778
+ --container-segmented-control-gap-content-icon-to-text: 0.25rem;
1779
+ --container-segmented-control-gap-segment-to-segment: 0.125rem;
1780
+ --container-segmented-control-side-content: 0.375rem;
1781
+ --container-segmented-control-side-segmented-control: 0.125rem;
1782
+ --container-input-gap-leading-elements: 0.375rem;
1783
+ --container-modal-gap-desktop-modal-close-icon-top-right: 0.25rem;
1784
+ --container-modal-gap-mobile-modal-close-icon-top-right: 0rem;
1785
+ --container-modal-gap-close-icon-container: 0.5rem;
1786
+ --container-list-gap-nav-button-icon-to-label: 0.125rem;
1787
+ --container-list-gap-footer-button-icon-to-label: 0.125rem;
1788
+ --container-input-gap-header-text-to-elements: 0.125rem;
1789
+ --container-floating-label-input-gap-header-text-to-elements: 0.125rem;
1790
+ --container-floating-label-input-gap-leading-elements: 0.375rem;
1791
+ --container-input-gap-input-text-to-elements: 0.5rem;
1792
+ --container-input-gap-text-to-text: 0.25rem;
1793
+ --container-avatar-padding-xs: 0.25rem;
1794
+ --container-avatar-padding-s: 0.5rem;
1795
+ --container-avatar-padding-m: 0.625rem;
1796
+ --container-avatar-padding-l: 1rem;
1797
+ --container-avatar-padding-xl: 1.25rem;
1798
+ --container-avatar-padding-xxl: 1.75rem;
1799
+ --container-progress-height-leading-and-trailing: 0.375rem;
1800
+ --container-progress-side-leading-and-trailing: 0.5rem;
1801
+ --container-slider-height-leading-and-trailing: 0.625rem;
1802
+ --container-slider-side-leading-and-trailing: 0rem;
1803
+ --container-button-height-text-button-default: 0rem;
1804
+ --container-button-side-text-button-default: 0rem;
1805
+ --container-button-gap-icon-to-label: 0.25rem;
1806
+ --container-button-side-button-content: 0.375rem;
1807
+ --container-pill-side-dismissable: 0.375rem;
1808
+ --container-stepper-gap-icon-to-text-horizontal: 0.625rem;
1809
+ --container-stepper-gap-icon-to-text-vertical: 0.25rem;
1810
+ --container-stepper-gap-text-to-subtext: 0rem;
1811
+ --container-stepper-gap-step-to-line-horizontal: 1rem;
1812
+ --container-stepper-gap-step-to-line-vertical: 1rem;
1813
+ --container-breadcrumbs-gap-segment-to-segment: 0.25rem;
1814
+ --container-breadcrumbs-gap-icon-to-text: 0.25rem;
1815
+ --container-accordion-gap-content-to-arrow: 0.75rem;
1816
+ --container-accordion-gap-icon-to-text: 0.5rem;
1817
+ --container-accordion-height-content: 0.5rem;
1818
+ --container-accordion-gap-content---input-to-text: 0.75rem;
1819
+ --container-accordion-gap-content---text-to-buttons: 0.75rem;
1820
+ --container-accordion-gap-button-to-button: 0.75rem;
1821
+ --container-accordion-height-accordion: 0.75rem;
1822
+ --container-accordion-side-content: 0rem;
1823
+ --container-accordion-side-accordion: 0.75rem;
1824
+ --container-accordion-gap-heading-to-content: 0.75rem;
1825
+ --container-pagination-button-to-button: 0.5rem;
1826
+ --container-pagination-item-to-item: 1rem;
1827
+ --container-list-side-item-right: 0.375rem;
1828
+ --container-input-height-xs: 0.125rem;
1829
+ --container-input-height-s: 0.375rem;
1830
+ --container-input-height-l: 0.875rem;
1831
+ --container-input-side-xs: 0.625rem;
1832
+ --container-input-side-s: 0.625rem;
1833
+ --container-input-side-l: 0.75rem;
1834
+ --container-pill-height-xs: 0rem;
1835
+ --container-table-cell-container-height-s: 0.25rem;
1836
+ --container-table-cell-container-height-m: 0.5rem;
1837
+ --container-table-header-cell-container-height-xs: 0.0625rem;
1838
+ --container-table-header-cell-container-height-s: 0.25rem;
1839
+ --spacing-0: 0rem;
1840
+ --spacing-1: 0.25rem;
1841
+ --spacing-2: 0.5rem;
1842
+ --spacing-3: 0.75rem;
1843
+ --spacing-4: 1rem;
1844
+ --spacing-5: 1.25rem;
1845
+ --spacing-6: 1.5rem;
1846
+ --spacing-7: 1.75rem;
1847
+ --spacing-8: 2rem;
1848
+ --spacing-9: 2.25rem;
1849
+ --spacing-10: 2.5rem;
1850
+ --spacing-11: 2.75rem;
1851
+ --spacing-12: 3rem;
1852
+ --spacing-14: 3.5rem;
1853
+ --spacing-16: 4rem;
1854
+ --spacing-18: 4.5rem;
1855
+ --spacing-20: 5rem;
1856
+ --spacing-24: 6rem;
1857
+ --spacing-28: 7rem;
1858
+ --spacing-32: 8rem;
1859
+ --spacing-36: 9rem;
1860
+ --spacing-40: 10rem;
1861
+ --spacing-44: 11rem;
1862
+ --spacing-48: 12rem;
1863
+ --spacing-52: 13rem;
1864
+ --spacing-56: 14rem;
1865
+ --spacing-60: 15rem;
1866
+ --spacing-64: 16rem;
1867
+ --spacing-72: 18rem;
1868
+ --spacing-80: 20rem;
1869
+ --spacing-96: 24rem;
1870
+ --spacing-px: 0.0625rem;
1871
+ --spacing-0-5: 0.125rem;
1872
+ --spacing-1-5: 0.375rem;
1873
+ --spacing-2-5: 0.625rem;
1874
+ --spacing-3-5: 0.875rem;
1875
+ --spacing-avatar-height-xs: 1.5rem;
1876
+ --spacing-avatar-height-s: 2rem;
1877
+ --spacing-avatar-height-m: 2.5rem;
1878
+ --spacing-avatar-height-l: 3.5rem;
1879
+ --spacing-avatar-height-xl: 4.5rem;
1880
+ --spacing-avatar-height-xxl: 6rem;
1881
+ --spacing-input-width-min-width: 12.75rem;
1882
+ --spacing-button-min-width-xs: 2.375rem;
1883
+ --spacing-button-min-width-s: 2.875rem;
1884
+ --spacing-button-min-width-m: 3.625rem;
1885
+ --spacing-button-min-width-l: 4.125rem;
1886
+ --spacing-floating-label-input-offset-top: 0.1875rem;
1887
+ --spacing-floating-label-input-offset-bottom: 0.0625rem;
1888
+ --spacing-global-side-xs: 0.125rem;
1889
+ --spacing-global-side-s: 0.25rem;
1890
+ --spacing-global-side-m: 0.625rem;
1891
+ --spacing-global-side-l: 1rem;
1892
+ --spacing-global-side-xl: 1.25rem;
1893
+ --spacing-global-gap-xs: 0.25rem;
1894
+ --spacing-global-gap-s: 0.5rem;
1895
+ --spacing-global-gap-m: 0.75rem;
1896
+ --spacing-global-gap-l: 1rem;
1897
+ --spacing-global-gap-xl: 1.25rem;
1898
+ --spacing-global-gap-ml: 0.875rem;
1899
+ --spacing-global-gap-sm: 0.625rem;
1900
+ --spacing-global-side-sm: 0.375rem;
1901
+ --spacing-global-side-ml: 0.75rem;
1902
+ --spacing-global-height-xs: 0.125rem;
1903
+ --spacing-global-height-s: 0.375rem;
1904
+ --spacing-global-height-m: 0.625rem;
1905
+ --spacing-global-height-l: 0.875rem;
1906
+ --spacing-global-height-xl: 1rem;
1907
+ --spacing-button-height-xs: 0.125rem;
1908
+ --spacing-button-height-s: 0.375rem;
1909
+ --spacing-button-height-m: 0.625rem;
1910
+ --spacing-button-height-l: 0.875rem;
1911
+ --spacing-button-side-xs: 0.75rem;
1912
+ --spacing-button-side-s: 1rem;
1913
+ --spacing-button-side-m: 1.5rem;
1914
+ --spacing-button-side-l: 1.75rem;
1915
+ --spacing-input-height-m: 0.625rem;
1916
+ --spacing-input-side-m: 0.625rem;
1917
+ --spacing-input-gap-label-to-input: 0.25rem;
1918
+ --spacing-input-gap-text-area-controls: 0.5rem;
1919
+ --spacing-list-height-item: 0.375rem;
1920
+ --spacing-list-height-actions: 0.375rem;
1921
+ --spacing-list-height-title-top: 0.75rem;
1922
+ --spacing-list-side-item-left: 0.625rem;
1923
+ --spacing-list-side-actions: 1rem;
1924
+ --spacing-list-height-bottom: 8rem;
1925
+ --spacing-list-gap-icon-to-label: 0.5rem;
1926
+ --spacing-list-gap-label-to-subcontent: 0.0625rem;
1927
+ --spacing-list-side-extra-actions: 1.5rem;
1928
+ --spacing-list-height-extra-actions: 1.5rem;
1929
+ --spacing-modal-side-desktop: 2.5rem;
1930
+ --spacing-modal-height-desktop: 2.5rem;
1931
+ --spacing-modal-gap-buttons: 1rem;
1932
+ --spacing-modal-gap-text: 0.625rem;
1933
+ --spacing-modal-gap-content: 1.75rem;
1934
+ --spacing-modal-gap-form: 2rem;
1935
+ --spacing-toast-height-content: 0.875rem;
1936
+ --spacing-toast-side-default: 1rem;
1937
+ --spacing-toast-gap-action: 1rem;
1938
+ --spacing-tooltip-height-default: 0.5rem;
1939
+ --spacing-tooltip-side-default: 0.75rem;
1940
+ --spacing-table-cell-content-gap-s: 0.25rem;
1941
+ --spacing-table-cell-content-gap-m: 0.375rem;
1942
+ --spacing-table-cell-content-gap-l: 0.5rem;
1943
+ --spacing-table-cell-content-height-s: 0.25rem;
1944
+ --spacing-table-cell-content-height-m: 0.375rem;
1945
+ --spacing-table-cell-content-side-s: 0.375rem;
1946
+ --spacing-table-cell-content-side-m: 0.5rem;
1947
+ --spacing-table-cell-container-height-xs: 0.0625rem;
1948
+ --spacing-table-cell-container-side-default: 0.5rem;
1949
+ --spacing-table-header-cell-container-height-m: 0.5rem;
1950
+ --spacing-table-header-cell-container-side-default: 0.5rem;
1951
+ --spacing-toast-height-actions-mobile: 0.5rem;
1952
+ --spacing-toast-gap-icon-to-text: 0.75rem;
1953
+ --spacing-alert-height-content: 0.875rem;
1954
+ --spacing-alert-height-actions-mobile: 0.5rem;
1955
+ --spacing-alert-side-default: 1rem;
1956
+ --spacing-alert-gap-icon-to-text: 0.75rem;
1957
+ --spacing-alert-gap-action: 1rem;
1958
+ --spacing-slider-side-bar: 0rem;
1959
+ --spacing-slider-height-bar: 0.625rem;
1960
+ --spacing-input-gap-error-to-input: 0.375rem;
1961
+ --spacing-list-side-title: 1rem;
1962
+ --spacing-list-gap-title-to-icon: 0.125rem;
1963
+ --spacing-list-gap-title-to-helper-text: 0rem;
1964
+ --spacing-list-height-title-bottom: 0.375rem;
1965
+ --spacing-toast-height-actions-desktop: 0.75rem;
1966
+ --spacing-alert-height-actions-desktop: 0.75rem;
1967
+ --spacing-tooltip-gap-margin: 0.75rem;
1968
+ --spacing-list-gap-margin: 0.25rem;
1969
+ --spacing-modal-gap-buttons-top: 0.25rem;
1970
+ --spacing-list-height-subcontent-bottom: 0.25rem;
1971
+ --spacing-pill-side-default: 0.5rem;
1972
+ --spacing-pill-height-s: 0.125rem;
1973
+ --spacing-modal-side-mobile: 1rem;
1974
+ --spacing-modal-height-mobile: 1rem;
1975
+ --spacing-pill-gap-pill-to-pill: 0.5rem;
1976
+ --spacing-progress-side-bar: 0.5rem;
1977
+ --spacing-progress-height-bar: 0.375rem;
1978
+ --spacing-file-upload-container-height-top-bottom: 1.5rem;
1979
+ --spacing-file-upload-container-side-default: 1.5rem;
1980
+ --spacing-file-upload-file-card-height-top-bottom: 1rem;
1981
+ --spacing-file-upload-file-card-side-default: 1rem;
1982
+ --spacing-file-upload-content-height-xs: 0.25rem;
1983
+ --spacing-file-upload-content-height-s: 0.5rem;
1984
+ --spacing-file-upload-content-height-m: 1rem;
1985
+ --spacing-file-upload-content-height-l: 1.75rem;
1986
+ --spacing-file-upload-content-height-xl: 2rem;
1987
+ --spacing-input-gap-trailing-elements: 0.25rem;
1988
+ --spacing-toast-gap-margin-desktop: 2rem;
1989
+ --spacing-toast-gap-margin-mobile: 1rem;
1990
+ --spacing-list-gap-content: 0.375rem;
1991
+ --spacing-floating-label-input-height-empty: 0.625rem;
1992
+ --spacing-floating-label-input-height-filled: 0rem;
1993
+ --spacing-floating-label-input-gap-label-to-input: 0.25rem;
1994
+ --spacing-floating-label-input-gap-trailing-elements: 0.25rem;
1995
+ --spacing-floating-label-input-gap-error-to-input: 0.375rem;
1996
+ --spacing-file-upload-content-gap-icon-to-content: 0.5rem;
1997
+ --spacing-file-upload-content-gap-text-to-text: 0.25rem;
1998
+ --spacing-file-upload-content-gap-content-to-button: 1.25rem;
1999
+ --spacing-file-upload-content-gap-text-to-progress: 0.25rem;
2000
+ --spacing-file-upload-content-gap-progress-actions: 0.5rem;
2001
+ --spacing-file-upload-content-gap-left-to-right-content: 1rem;
2002
+ --spacing-file-upload-content-gap-button-to-button: 1rem;
2003
+ --spacing-file-upload-file-card-gap-icon-to-content-gap: 0.5rem;
2004
+ --spacing-file-upload-file-card-gap-text-to-text-gap: 0.25rem;
2005
+ --spacing-file-upload-file-card-gap-progress-actions-gap: 0.5rem;
2006
+ --spacing-file-upload-file-card-gap-left-to-right-content-gap: 1rem;
2007
+ --spacing-file-upload-file-card-gap-trailing-actions: 0.5rem;
2008
+ --spacing-input-gap-input-to-button-gap: 0.625rem;
2009
+ --spacing-segmented-control-height-segment: 0.375rem;
2010
+ --spacing-segmented-control-side-segment: 0.75rem;
2011
+ --spacing-segmented-control-gap-content-icon-to-text: 0.25rem;
2012
+ --spacing-segmented-control-gap-segment-to-segment: 0.125rem;
2013
+ --spacing-segmented-control-side-content: 0.375rem;
2014
+ --spacing-segmented-control-side-segmented-control: 0.125rem;
2015
+ --spacing-input-gap-leading-elements: 0.375rem;
2016
+ --spacing-modal-gap-desktop-modal-close-icon-top-right: 0.25rem;
2017
+ --spacing-modal-gap-mobile-modal-close-icon-top-right: 0rem;
2018
+ --spacing-modal-gap-close-icon-container: 0.5rem;
2019
+ --spacing-list-gap-nav-button-icon-to-label: 0.125rem;
2020
+ --spacing-list-gap-footer-button-icon-to-label: 0.125rem;
2021
+ --spacing-input-gap-header-text-to-elements: 0.125rem;
2022
+ --spacing-floating-label-input-gap-header-text-to-elements: 0.125rem;
2023
+ --spacing-floating-label-input-gap-leading-elements: 0.375rem;
2024
+ --spacing-input-gap-input-text-to-elements: 0.5rem;
2025
+ --spacing-input-gap-text-to-text: 0.25rem;
2026
+ --spacing-avatar-padding-xs: 0.25rem;
2027
+ --spacing-avatar-padding-s: 0.5rem;
2028
+ --spacing-avatar-padding-m: 0.625rem;
2029
+ --spacing-avatar-padding-l: 1rem;
2030
+ --spacing-avatar-padding-xl: 1.25rem;
2031
+ --spacing-avatar-padding-xxl: 1.75rem;
2032
+ --spacing-progress-height-leading-and-trailing: 0.375rem;
2033
+ --spacing-progress-side-leading-and-trailing: 0.5rem;
2034
+ --spacing-slider-height-leading-and-trailing: 0.625rem;
2035
+ --spacing-slider-side-leading-and-trailing: 0rem;
2036
+ --spacing-button-height-text-button-default: 0rem;
2037
+ --spacing-button-side-text-button-default: 0rem;
2038
+ --spacing-button-gap-icon-to-label: 0.25rem;
2039
+ --spacing-button-side-button-content: 0.375rem;
2040
+ --spacing-pill-side-dismissable: 0.375rem;
2041
+ --spacing-stepper-gap-icon-to-text-horizontal: 0.625rem;
2042
+ --spacing-stepper-gap-icon-to-text-vertical: 0.25rem;
2043
+ --spacing-stepper-gap-text-to-subtext: 0rem;
2044
+ --spacing-stepper-gap-step-to-line-horizontal: 1rem;
2045
+ --spacing-stepper-gap-step-to-line-vertical: 1rem;
2046
+ --spacing-breadcrumbs-gap-segment-to-segment: 0.25rem;
2047
+ --spacing-breadcrumbs-gap-icon-to-text: 0.25rem;
2048
+ --spacing-accordion-gap-content-to-arrow: 0.75rem;
2049
+ --spacing-accordion-gap-icon-to-text: 0.5rem;
2050
+ --spacing-accordion-height-content: 0.5rem;
2051
+ --spacing-accordion-gap-content---input-to-text: 0.75rem;
2052
+ --spacing-accordion-gap-content---text-to-buttons: 0.75rem;
2053
+ --spacing-accordion-gap-button-to-button: 0.75rem;
2054
+ --spacing-accordion-height-accordion: 0.75rem;
2055
+ --spacing-accordion-side-content: 0rem;
2056
+ --spacing-accordion-side-accordion: 0.75rem;
2057
+ --spacing-accordion-gap-heading-to-content: 0.75rem;
2058
+ --spacing-pagination-button-to-button: 0.5rem;
2059
+ --spacing-pagination-item-to-item: 1rem;
2060
+ --spacing-list-side-item-right: 0.375rem;
2061
+ --spacing-input-height-xs: 0.125rem;
2062
+ --spacing-input-height-s: 0.375rem;
2063
+ --spacing-input-height-l: 0.875rem;
2064
+ --spacing-input-side-xs: 0.625rem;
2065
+ --spacing-input-side-s: 0.625rem;
2066
+ --spacing-input-side-l: 0.75rem;
2067
+ --spacing-pill-height-xs: 0rem;
2068
+ --spacing-table-cell-container-height-s: 0.25rem;
2069
+ --spacing-table-cell-container-height-m: 0.5rem;
2070
+ --spacing-table-header-cell-container-height-xs: 0.0625rem;
2071
+ --spacing-table-header-cell-container-height-s: 0.25rem;
2072
+ --shadow-1: 0 2px 10px 0 var(--shadow-6-base, rgba(0, 0, 0, 0.06));
2073
+ --shadow-2:
2074
+ 0 1px 3px 0 var(--shadow-10-base, rgba(0, 0, 0, 0.1)), 0 1px 2px 0 var(--shadow-6-base, rgba(0, 0, 0, 0.06));
2075
+ --shadow-3:
2076
+ 0 4px 6px -1px var(--shadow-10-base, rgba(0, 0, 0, 0.1)), 0 2px 4px -1px var(--shadow-6-base, rgba(0, 0, 0, 0.06));
2077
+ --shadow-4:
2078
+ 0 10px 15px -3px var(--shadow-10-base, rgba(0, 0, 0, 0.1)), 0 4px 6px -2px var(--shadow-6-base, rgba(0, 0, 0, 0.06));
2079
+ --shadow-5:
2080
+ 0 20px 25px -5px var(--shadow-10-base, rgba(0, 0, 0, 0.1)),
2081
+ 0 10px 10px -5px var(--shadow-4-base, rgba(0, 0, 0, 0.04));
2082
+ --shadow-6: 0 25px 50px -12px var(--shadow-25-base, rgba(0, 0, 0, 0.25));
2083
+ --shadow-inner: 0 2px 4px 0 var(--shadow-6-base, rgba(0, 0, 0, 0.06)) inset;
2084
+ --blur-0: 0px;
2085
+ --blur-1: 2px;
2086
+ --blur-2: 4px;
2087
+ --blur-3: 6px;
2088
+ --blur-4: 8px;
2089
+ --blur-5: 12px;
2090
+ --blur-6: 20px;
2091
+ --blur-7: 32px;
2092
+ --text-desktop-headline-1: 3.5rem;
2093
+ --text-desktop-headline-1--line-height: 1.2857;
2094
+ --text-desktop-headline-1--letter-spacing: 0em;
2095
+ --text-desktop-title-1: 3rem;
2096
+ --text-desktop-title-1--line-height: 1.25;
2097
+ --text-desktop-title-1--letter-spacing: 0em;
2098
+ --text-desktop-title-2: 2rem;
2099
+ --text-desktop-title-2--line-height: 1.3125;
2100
+ --text-desktop-title-2--letter-spacing: 0em;
2101
+ --text-desktop-title-3: 1.75rem;
2102
+ --text-desktop-title-3--line-height: 1.3571;
2103
+ --text-desktop-title-3--letter-spacing: 0em;
2104
+ --text-desktop-title-4: 1.375rem;
2105
+ --text-desktop-title-4--line-height: 1.2727;
2106
+ --text-desktop-title-4--letter-spacing: 0em;
2107
+ --text-desktop-title-5: 1.125rem;
2108
+ --text-desktop-title-5--line-height: 1.4444;
2109
+ --text-desktop-title-5--letter-spacing: 0em;
2110
+ --text-desktop-title-6: 1rem;
2111
+ --text-desktop-title-6--line-height: 1.5;
2112
+ --text-desktop-title-6--letter-spacing: 0em;
2113
+ --text-mobile-headline-1: 2rem;
2114
+ --text-mobile-headline-1--line-height: 1.1875;
2115
+ --text-mobile-headline-1--letter-spacing: 0em;
2116
+ --text-mobile-title-1: 1.75rem;
2117
+ --text-mobile-title-1--line-height: 1.2857;
2118
+ --text-mobile-title-1--letter-spacing: 0em;
2119
+ --text-mobile-title-2: 1.5rem;
2120
+ --text-mobile-title-2--line-height: 1.3333;
2121
+ --text-mobile-title-2--letter-spacing: 0em;
2122
+ --text-mobile-title-3: 1.125rem;
2123
+ --text-mobile-title-3--line-height: 1.4444;
2124
+ --text-mobile-title-3--letter-spacing: 0em;
2125
+ --text-mobile-title-4: 1rem;
2126
+ --text-mobile-title-4--line-height: 1.5;
2127
+ --text-mobile-title-4--letter-spacing: 0em;
2128
+ --text-mobile-title-5: 0.875rem;
2129
+ --text-mobile-title-5--line-height: 1.2857;
2130
+ --text-mobile-title-5--letter-spacing: 0em;
2131
+ --text-mobile-title-6: 0.875rem;
2132
+ --text-mobile-title-6--line-height: 1.2857;
2133
+ --text-mobile-title-6--letter-spacing: 0em;
2134
+ --text-desktop-body-1: 1.25rem;
2135
+ --text-desktop-body-1--line-height: 1.8;
2136
+ --text-desktop-body-1--letter-spacing: 0em;
2137
+ --text-desktop-body-2: 1.125rem;
2138
+ --text-desktop-body-2--line-height: 1.7778;
2139
+ --text-desktop-body-2--letter-spacing: -0.0018em;
2140
+ --text-desktop-body-3: 1rem;
2141
+ --text-desktop-body-3--line-height: 1.75;
2142
+ --text-desktop-body-3--letter-spacing: -0.0016em;
2143
+ --text-desktop-body-4: 0.875rem;
2144
+ --text-desktop-body-4--line-height: 1.7143;
2145
+ --text-desktop-body-4--letter-spacing: -0.0014em;
2146
+ --text-mobile-body-1: 1.125rem;
2147
+ --text-mobile-body-1--line-height: 1.5556;
2148
+ --text-mobile-body-1--letter-spacing: 0em;
2149
+ --text-mobile-body-2: 1rem;
2150
+ --text-mobile-body-2--line-height: 1.75;
2151
+ --text-mobile-body-2--letter-spacing: -0.0016em;
2152
+ --text-mobile-body-3: 0.9375rem;
2153
+ --text-mobile-body-3--line-height: 1.7333;
2154
+ --text-mobile-body-3--letter-spacing: -0.0015em;
2155
+ --text-mobile-body-4: 0.875rem;
2156
+ --text-mobile-body-4--line-height: 1.7143;
2157
+ --text-mobile-body-4--letter-spacing: -0.0014em;
2158
+ --text-label-1: 1rem;
2159
+ --text-label-1--line-height: 1.5;
2160
+ --text-label-1--letter-spacing: 0em;
2161
+ --text-label-2: 0.875rem;
2162
+ --text-label-2--line-height: 1.7143;
2163
+ --text-label-2--letter-spacing: 0em;
2164
+ --text-label-3: 0.75rem;
2165
+ --text-label-3--line-height: 1.3333;
2166
+ --text-label-3--letter-spacing: -0.0012em;
2167
+ --font-primary: var(--font-general_sans-base), sans-serif;
2168
+ --font-secondary: var(--font-general_sans-base), sans-serif;
2169
+ --font-general_sans: var(--font-general_sans-base), sans-serif;
2170
+ --font-weight-headings-default: 500;
2171
+ --font-weight-headings-prominent-1: 600;
2172
+ --font-weight-body-default: 400;
2173
+ --font-weight-body-prominent-1: 500;
2174
+ --font-weight-body-prominent-2: 600;
2175
+ --font-weight-labels-default: 500;
2176
+ --font-weight-labels-prominent-1: 600;
2177
+ }