expo-device-hub 0.0.0 → 0.1.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 (36) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +69 -0
  3. package/dist/client/_expo/static/css/global-aa48d0d7e29c2f7b55479d33eab04823.css +2 -0
  4. package/dist/client/_expo/static/css/theme-7a8cfe60be467af24854dc1041b9406b.css +2 -0
  5. package/dist/client/_expo/static/js/web/index-e0065d74914c87f40148e5cd9896b40d.js +319 -0
  6. package/dist/client/favicon.ico +0 -0
  7. package/dist/client/index.html +39 -0
  8. package/dist/client/metadata.json +1 -0
  9. package/dist/server/index.mjs +993 -0
  10. package/expo-module.config.json +9 -0
  11. package/package.json +70 -1
  12. package/vendor/serve-emu/LICENSE +201 -0
  13. package/vendor/serve-emu/dist/accessibility.js +70 -0
  14. package/vendor/serve-emu/dist/adb.js +77 -0
  15. package/vendor/serve-emu/dist/app-info.js +121 -0
  16. package/vendor/serve-emu/dist/app-management.js +166 -0
  17. package/vendor/serve-emu/dist/cli.js +159 -0
  18. package/vendor/serve-emu/dist/devtools-plugin.js +144 -0
  19. package/vendor/serve-emu/dist/emulator.js +227 -0
  20. package/vendor/serve-emu/dist/input.js +249 -0
  21. package/vendor/serve-emu/dist/location.js +125 -0
  22. package/vendor/serve-emu/dist/middleware.js +1118 -0
  23. package/vendor/serve-emu/dist/route-playback.js +287 -0
  24. package/vendor/serve-emu/dist/scrcpy-server.js +25 -0
  25. package/vendor/serve-emu/dist/scrcpy.js +380 -0
  26. package/vendor/serve-emu/dist/server.js +84 -0
  27. package/vendor/serve-emu/dist/session-recorder.js +111 -0
  28. package/vendor/serve-emu/dist/stream-socket.js +52 -0
  29. package/vendor/serve-emu/dist/ui-mode.js +45 -0
  30. package/vendor/serve-sim/LICENSE +202 -0
  31. package/vendor/serve-sim/bin/serve-sim-bin +0 -0
  32. package/vendor/serve-sim/dist/middleware.js +80 -0
  33. package/vendor/serve-sim/dist/serve-sim.js +173 -0
  34. package/vendor/serve-sim/dist/simax/serve-sim-ax-settings +0 -0
  35. package/vendor/serve-sim/dist/simcam/libSimCameraInjector.dylib +0 -0
  36. package/vendor/serve-sim/dist/simcam/serve-sim-camera-helper +0 -0
package/LICENSE ADDED
@@ -0,0 +1,29 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015-present 650 Industries, Inc. (aka Expo)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ This package bundles third-party code that is licensed separately. See the
26
+ vendored licenses:
27
+
28
+ - serve-sim — Apache License 2.0: ./vendor/serve-sim/LICENSE
29
+ - serve-emu — Apache License 2.0: ./vendor/serve-emu/LICENSE
package/README.md ADDED
@@ -0,0 +1,69 @@
1
+ <p align="center">
2
+ <a href="https://github.com/expo/expo-device-hub">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/expo/expo-device-hub/main/assets/expo-device-hub-banner-dark-2x.png">
5
+ <img alt="Expo Device Hub" src="https://raw.githubusercontent.com/expo/expo-device-hub/main/assets/expo-device-hub-banner-light-2x.png" width="838">
6
+ </picture>
7
+ </a>
8
+ </p>
9
+
10
+ # expo-device-hub
11
+
12
+ **Expo Device Hub** is an [Expo DevTools plugin](https://docs.expo.dev/debugging/devtools-plugins/)
13
+ that lets you preview and control your iOS simulators and Android emulators right from
14
+ the browser — without leaving your development workflow. When you run `expo start`, the
15
+ Hub adds a device dashboard where you can watch a live stream of any device, interact
16
+ with it, and manage which devices are running from one place.
17
+
18
+ ## Features
19
+
20
+ - Live stream of iOS simulators and Android emulators in your browser.
21
+ - Interact directly — tap, swipe, scroll, and type into the device.
22
+ - Boot, shut down, and add devices without opening Xcode or Android Studio.
23
+ - Follows your system light/dark theme, and can flip the device's appearance too.
24
+
25
+ > iOS simulators require macOS with Xcode. Android emulators require the Android SDK
26
+ > (`emulator`, `adb`).
27
+
28
+ ## Installation
29
+
30
+ ```sh
31
+ npx expo install expo-device-hub
32
+ ```
33
+
34
+ ## Usage
35
+
36
+ Start your project as usual:
37
+
38
+ ```sh
39
+ npx expo start
40
+ ```
41
+
42
+ Expo Device Hub registers itself as a DevTools plugin, so a link to it appears in your
43
+ terminal when the dev server starts:
44
+
45
+ ```
46
+ › Expo Device Hub: http://localhost:8081/_expo/plugins/expo-device-hub
47
+ ```
48
+
49
+ ## Acknowledgements
50
+
51
+ Device streaming and control are powered by two vendored, Apache-2.0-licensed
52
+ dependencies, bundled from Expo's forks. Each fork's license travels with the
53
+ vendored code:
54
+
55
+ - **[`@expo/serve-sim`](https://github.com/expo/expo-device-hub/tree/main/packages/serve-sim)** —
56
+ iOS simulator streaming and input; a fork of
57
+ [EvanBacon/serve-sim](https://github.com/EvanBacon/serve-sim).
58
+ License: [`vendor/serve-sim/LICENSE`](./vendor/serve-sim/LICENSE).
59
+ - **[`@expo/serve-emu`](https://github.com/expo/expo-device-hub/tree/main/packages/serve-emu)** —
60
+ Android emulator streaming and input; a fork of
61
+ [jiunshinn/serve-emu](https://github.com/jiunshinn/serve-emu).
62
+ License: [`vendor/serve-emu/LICENSE`](./vendor/serve-emu/LICENSE).
63
+
64
+ ## License
65
+
66
+ MIT — see [LICENSE](./LICENSE).
67
+
68
+ Bundled dependencies keep their own licenses under [`vendor/`](./vendor); see
69
+ [Acknowledgements](#acknowledgements) above.
@@ -0,0 +1,2 @@
1
+ /*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
2
+ @layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--font-weight-medium:500;--radius-lg:8px;--radius-xl:16px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--animate-slideUpAndFade:slideUpAndFade .15s cubic-bezier(.16, 1, .3, 1);--animate-slideDownAndFade:slideDownAndFade .15s cubic-bezier(.16, 1, .3, 1);--animate-slideLeftAndFade:slideLeftAndFade .15s cubic-bezier(.16, 1, .3, 1);--animate-slideRightAndFade:slideRightAndFade .15s cubic-bezier(.16, 1, .3, 1);--animate-fadeIn:fadeIn .15s ease;--animate-fadeOut:fadeOut .15s ease;--animate-largeSlideUpAndFadeIn:largeSlideUpAndFadeIn .2s cubic-bezier(.16, 1, .3, 1)}}@layer base{*,:before,:after{border-style:solid;border-width:0}p{margin:0}html,body{background-color:var(--expo-theme-background-default);color:var(--expo-theme-text-default);font-family:var(--expo-font-sans);-webkit-font-smoothing:antialiased;font-optical-sizing:auto;margin:0;padding:0;font-size:16px;line-height:1.6}code,pre,.monospace{font-family:var(--expo-font-mono)}}@layer components,utilities;.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.inset-0{inset:0}.-top-1{top:calc(var(--spacing) * -1)}.top-0{top:0}.left-0{left:0}.z-40{z-index:40}.z-dialogContent-601{z-index:601}.z-dialogOverlay-600{z-index:600}.z-overDialog-605{z-index:605}.container{width:100%}@media (width>=40rem){.container{max-width:40rem}}@media (width>=48rem){.container{max-width:48rem}}@media (width>=64rem){.container{max-width:64rem}}@media (width>=80rem){.container{max-width:80rem}}@media (width>=96rem){.container{max-width:96rem}}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.size-2\.5{width:calc(var(--spacing) * 2.5);height:calc(var(--spacing) * 2.5)}.h-dvh{height:100dvh}.max-h-\[calc\(90vh-69px-53px\)\]{max-height:calc(90vh - 122px)}.w-18{width:calc(var(--spacing) * 18)}.w-\[90vw\]{width:90vw}.w-dvw{width:100dvw}.max-w-125{max-width:calc(var(--spacing) * 125)}.min-w-55{min-width:calc(var(--spacing) * 55)}.flex-1{flex:1}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-fadeIn{animation:var(--animate-fadeIn)}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.resize{resize:both}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-0\.5{gap:calc(var(--spacing) * .5)}.gap-1{gap:var(--spacing)}.gap-1\.5{gap:calc(var(--spacing) * 1.5)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-2\.5{gap:calc(var(--spacing) * 2.5)}.gap-3{gap:calc(var(--spacing) * 3)}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded-lg{border-radius:var(--radius-lg)}.rounded-xl{border-radius:var(--radius-xl)}.border{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-default{border-color:var(--expo-theme-border-default)}.border-secondary{border-color:var(--expo-theme-border-secondary)}.border-t-default{border-top-color:var(--expo-theme-border-default)}.border-b-default{border-bottom-color:var(--expo-theme-border-default)}.bg-\[\#000000\]\/50{background-color:#00000080;background-color:lab(0% 0 0/.5)}.bg-default{background-color:var(--expo-theme-background-default)}.bg-subtle{background-color:var(--expo-theme-background-subtle)}.p-2{padding:calc(var(--spacing) * 2)}.p-6{padding:calc(var(--spacing) * 6)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-6{padding-inline:calc(var(--spacing) * 6)}.py-4{padding-block:calc(var(--spacing) * 4)}.pt-4{padding-top:calc(var(--spacing) * 4)}.font-mono{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-4\.5{--tw-leading:calc(var(--spacing) * 4.5);line-height:calc(var(--spacing) * 4.5)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.text-danger{color:var(--expo-theme-text-danger)}.text-default{color:var(--expo-theme-text-default)}.text-icon-danger{color:var(--expo-theme-icon-danger)}.text-icon-default{color:var(--expo-theme-icon-default)}.text-secondary{color:var(--expo-theme-text-secondary)}.text-tertiary{color:var(--expo-theme-text-tertiary)}.uppercase{text-transform:uppercase}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)}.opacity-60{opacity:.6}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-md{--tw-shadow:var(--expo-theme-shadows-md);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.outline-0{outline-style:var(--tw-outline-style);outline-width:0}.grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.will-change-\[opacity\,transform\]{will-change:opacity,transform}.select-none{-webkit-user-select:none;user-select:none}.group-data-\[state\=closed\]\:animate-fadeOut:is(:where(.group)[data-state=closed] *){animation:var(--animate-fadeOut)}.group-data-\[state\=open\]\:animate-fadeIn:is(:where(.group)[data-state=open] *){animation:var(--animate-fadeIn)}@media (hover:hover){.hover\:outline-0:hover{outline-style:var(--tw-outline-style);outline-width:0}}.active\:scale-98:active{--tw-scale-x:98%;--tw-scale-y:98%;--tw-scale-z:98%;scale:var(--tw-scale-x) var(--tw-scale-y)}.data-\[side\=bottom\]\:animate-slideUpAndFade[data-side=bottom]{animation:var(--animate-slideUpAndFade)}.data-\[side\=left\]\:animate-slideRightAndFade[data-side=left]{animation:var(--animate-slideRightAndFade)}.data-\[side\=right\]\:animate-slideLeftAndFade[data-side=right]{animation:var(--animate-slideLeftAndFade)}.data-\[side\=top\]\:animate-slideDownAndFade[data-side=top]{animation:var(--animate-slideDownAndFade)}.data-\[state\=closed\]\:animate-fadeOut[data-state=closed]{animation:var(--animate-fadeOut)}.data-\[state\=open\]\:animate-largeSlideUpAndFadeIn[data-state=open]{animation:var(--animate-largeSlideUpAndFadeIn)}@media not all and (width>=48rem){.max-md\:py-2{padding-block:calc(var(--spacing) * 2)}}.hocus\:bg-default:is(:hover,:focus){background-color:var(--expo-theme-background-default)}.hocus\:bg-hover:is(:hover,:focus){background-color:var(--expo-theme-background-hover)}@keyframes slideUpAndFade{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}@keyframes slideDownAndFade{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}@keyframes slideLeftAndFade{0%{opacity:0;transform:translate(4px)}to{opacity:1;transform:translate(0)}}@keyframes slideRightAndFade{0%{opacity:0;transform:translate(-4px)}to{opacity:1;transform:translate(0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes largeSlideUpAndFadeIn{0%{opacity:0;transform:translateY(10px)scale(.97)}to{opacity:1;transform:translateY(0)scale(1)}}.dialog-close-button{border-radius:var(--expo-radius-md);width:30px;height:30px;color:var(--expo-theme-icon-default);cursor:pointer;background-color:#0000;justify-content:center;align-items:center;margin-right:-8px;transition:background-color .15s;display:inline-flex}.dialog-close-button:hover{background-color:var(--expo-theme-background-element)}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}
@@ -0,0 +1,2 @@
1
+ /*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
2
+ :root,.light,.light-theme{--green-1:#fbfefc;--green-2:#f4fbf6;--green-3:#e6f6eb;--green-4:#d6f1df;--green-5:#c4e8d1;--green-6:#adddc0;--green-7:#8eceaa;--green-8:#5bb98b;--green-9:#30a46c;--green-10:#2b9a66;--green-11:#218358;--green-12:#193b2d}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--green-1:color(display-p3 .986 .996 .989);--green-2:color(display-p3 .963 .983 .967);--green-3:color(display-p3 .913 .964 .925);--green-4:color(display-p3 .859 .94 .879);--green-5:color(display-p3 .796 .907 .826);--green-6:color(display-p3 .718 .863 .761);--green-7:color(display-p3 .61 .801 .675);--green-8:color(display-p3 .451 .715 .559);--green-9:color(display-p3 .332 .634 .442);--green-10:color(display-p3 .308 .595 .417);--green-11:color(display-p3 .19 .5 .32);--green-12:color(display-p3 .132 .228 .18)}}}.dark,.dark-theme{--green-1:#0e1512;--green-2:#121b17;--green-3:#132d21;--green-4:#113b29;--green-5:#174933;--green-6:#20573e;--green-7:#28684a;--green-8:#2f7c57;--green-9:#30a46c;--green-10:#33b074;--green-11:#3dd68c;--green-12:#b1f1cb}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--green-1:color(display-p3 .062 .083 .071);--green-2:color(display-p3 .079 .106 .09);--green-3:color(display-p3 .1 .173 .133);--green-4:color(display-p3 .115 .229 .166);--green-5:color(display-p3 .147 .282 .206);--green-6:color(display-p3 .185 .338 .25);--green-7:color(display-p3 .227 .403 .298);--green-8:color(display-p3 .27 .479 .351);--green-9:color(display-p3 .332 .634 .442);--green-10:color(display-p3 .357 .682 .474);--green-11:color(display-p3 .434 .828 .573);--green-12:color(display-p3 .747 .938 .807)}}}:root,.light,.light-theme{--amber-1:#fefdfb;--amber-2:#fefbe9;--amber-3:#fff7c2;--amber-4:#ffee9c;--amber-5:#fbe577;--amber-6:#f3d673;--amber-7:#e9c162;--amber-8:#e2a336;--amber-9:#ffc53d;--amber-10:#ffba18;--amber-11:#ab6400;--amber-12:#4f3422}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--amber-1:color(display-p3 .995 .992 .985);--amber-2:color(display-p3 .994 .986 .921);--amber-3:color(display-p3 .994 .969 .782);--amber-4:color(display-p3 .989 .937 .65);--amber-5:color(display-p3 .97 .902 .527);--amber-6:color(display-p3 .936 .844 .506);--amber-7:color(display-p3 .89 .762 .443);--amber-8:color(display-p3 .85 .65 .3);--amber-9:color(display-p3 1 .77 .26);--amber-10:color(display-p3 .959 .741 .274);--amber-11:color(display-p3 .64 .4 0);--amber-12:color(display-p3 .294 .208 .145)}}}.dark,.dark-theme{--amber-1:#16120c;--amber-2:#1d180f;--amber-3:#302008;--amber-4:#3f2700;--amber-5:#4d3000;--amber-6:#5c3d05;--amber-7:#714f19;--amber-8:#8f6424;--amber-9:#ffc53d;--amber-10:#ffd60a;--amber-11:#ffca16;--amber-12:#ffe7b3}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--amber-1:color(display-p3 .082 .07 .05);--amber-2:color(display-p3 .111 .094 .064);--amber-3:color(display-p3 .178 .128 .049);--amber-4:color(display-p3 .239 .156 0);--amber-5:color(display-p3 .29 .193 0);--amber-6:color(display-p3 .344 .245 .076);--amber-7:color(display-p3 .422 .314 .141);--amber-8:color(display-p3 .535 .399 .189);--amber-9:color(display-p3 1 .77 .26);--amber-10:color(display-p3 1 .87 .15);--amber-11:color(display-p3 1 .8 .29);--amber-12:color(display-p3 .984 .909 .726)}}}:root,.light,.light-theme{--red-1:#fffcfc;--red-2:#fff7f7;--red-3:#feebec;--red-4:#ffdbdc;--red-5:#ffcdce;--red-6:#fdbdbe;--red-7:#f4a9aa;--red-8:#eb8e90;--red-9:#e5484d;--red-10:#dc3e42;--red-11:#ce2c31;--red-12:#641723}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--red-1:color(display-p3 .998 .989 .988);--red-2:color(display-p3 .995 .971 .971);--red-3:color(display-p3 .985 .925 .925);--red-4:color(display-p3 .999 .866 .866);--red-5:color(display-p3 .984 .812 .811);--red-6:color(display-p3 .955 .751 .749);--red-7:color(display-p3 .915 .675 .672);--red-8:color(display-p3 .872 .575 .572);--red-9:color(display-p3 .83 .329 .324);--red-10:color(display-p3 .798 .294 .285);--red-11:color(display-p3 .744 .234 .222);--red-12:color(display-p3 .36 .115 .143)}}}.dark,.dark-theme{--red-1:#191111;--red-2:#201314;--red-3:#3b1219;--red-4:#500f1c;--red-5:#611623;--red-6:#72232d;--red-7:#8c333a;--red-8:#b54548;--red-9:#e5484d;--red-10:#ec5d5e;--red-11:#ff9592;--red-12:#ffd1d9}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--red-1:color(display-p3 .093 .068 .067);--red-2:color(display-p3 .118 .077 .079);--red-3:color(display-p3 .211 .081 .099);--red-4:color(display-p3 .287 .079 .113);--red-5:color(display-p3 .348 .11 .142);--red-6:color(display-p3 .414 .16 .183);--red-7:color(display-p3 .508 .224 .236);--red-8:color(display-p3 .659 .298 .297);--red-9:color(display-p3 .83 .329 .324);--red-10:color(display-p3 .861 .403 .387);--red-11:color(display-p3 1 .57 .55);--red-12:color(display-p3 .971 .826 .852)}}}:root,.light,.light-theme{--blue-1:#fbfdff;--blue-2:#f4faff;--blue-3:#e6f4fe;--blue-4:#d5efff;--blue-5:#c2e5ff;--blue-6:#acd8fc;--blue-7:#8ec8f6;--blue-8:#5eb1ef;--blue-9:#0090ff;--blue-10:#0588f0;--blue-11:#0d74ce;--blue-12:#113264}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--blue-1:color(display-p3 .986 .992 .999);--blue-2:color(display-p3 .96 .979 .998);--blue-3:color(display-p3 .912 .956 .991);--blue-4:color(display-p3 .853 .932 1);--blue-5:color(display-p3 .788 .894 .998);--blue-6:color(display-p3 .709 .843 .976);--blue-7:color(display-p3 .606 .777 .947);--blue-8:color(display-p3 .451 .688 .917);--blue-9:color(display-p3 .247 .556 .969);--blue-10:color(display-p3 .234 .523 .912);--blue-11:color(display-p3 .15 .44 .84);--blue-12:color(display-p3 .102 .193 .379)}}}.dark,.dark-theme{--blue-1:#0d1520;--blue-2:#111927;--blue-3:#0d2847;--blue-4:#003362;--blue-5:#004074;--blue-6:#104d87;--blue-7:#205d9e;--blue-8:#2870bd;--blue-9:#0090ff;--blue-10:#3b9eff;--blue-11:#70b8ff;--blue-12:#c2e6ff}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--blue-1:color(display-p3 .057 .081 .122);--blue-2:color(display-p3 .072 .098 .147);--blue-3:color(display-p3 .078 .154 .27);--blue-4:color(display-p3 .033 .197 .37);--blue-5:color(display-p3 .08 .245 .441);--blue-6:color(display-p3 .14 .298 .511);--blue-7:color(display-p3 .195 .361 .6);--blue-8:color(display-p3 .239 .434 .72);--blue-9:color(display-p3 .247 .556 .969);--blue-10:color(display-p3 .344 .612 .973);--blue-11:color(display-p3 .49 .72 1);--blue-12:color(display-p3 .788 .898 .99)}}}:root,.light,.light-theme{--orange-1:#fefcfb;--orange-2:#fff7ed;--orange-3:#ffefd6;--orange-4:#ffdfb5;--orange-5:#ffd19a;--orange-6:#ffc182;--orange-7:#f5ae73;--orange-8:#ec9455;--orange-9:#f76b15;--orange-10:#ef5f00;--orange-11:#cc4e00;--orange-12:#582d1d}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--orange-1:color(display-p3 .995 .988 .985);--orange-2:color(display-p3 .994 .968 .934);--orange-3:color(display-p3 .989 .938 .85);--orange-4:color(display-p3 1 .874 .687);--orange-5:color(display-p3 1 .821 .583);--orange-6:color(display-p3 .975 .767 .545);--orange-7:color(display-p3 .919 .693 .486);--orange-8:color(display-p3 .877 .597 .379);--orange-9:color(display-p3 .9 .45 .2);--orange-10:color(display-p3 .87 .409 .164);--orange-11:color(display-p3 .76 .34 0);--orange-12:color(display-p3 .323 .185 .127)}}}.dark,.dark-theme{--orange-1:#17120e;--orange-2:#1e160f;--orange-3:#331e0b;--orange-4:#462100;--orange-5:#562800;--orange-6:#66350c;--orange-7:#7e451d;--orange-8:#a35829;--orange-9:#f76b15;--orange-10:#ff801f;--orange-11:#ffa057;--orange-12:#ffe0c2}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--orange-1:color(display-p3 .088 .07 .057);--orange-2:color(display-p3 .113 .089 .061);--orange-3:color(display-p3 .189 .12 .056);--orange-4:color(display-p3 .262 .132 0);--orange-5:color(display-p3 .315 .168 .016);--orange-6:color(display-p3 .376 .219 .088);--orange-7:color(display-p3 .465 .283 .147);--orange-8:color(display-p3 .601 .359 .201);--orange-9:color(display-p3 .9 .45 .2);--orange-10:color(display-p3 .98 .51 .23);--orange-11:color(display-p3 1 .63 .38);--orange-12:color(display-p3 .98 .883 .775)}}}:root,.light,.light-theme{--purple-1:#fefcfe;--purple-2:#fbf7fe;--purple-3:#f7edfe;--purple-4:#f2e2fc;--purple-5:#ead5f9;--purple-6:#e0c4f4;--purple-7:#d1afec;--purple-8:#be93e4;--purple-9:#8e4ec6;--purple-10:#8347b9;--purple-11:#8145b5;--purple-12:#402060}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--purple-1:color(display-p3 .995 .988 .996);--purple-2:color(display-p3 .983 .971 .993);--purple-3:color(display-p3 .963 .931 .989);--purple-4:color(display-p3 .937 .888 .981);--purple-5:color(display-p3 .904 .837 .966);--purple-6:color(display-p3 .86 .774 .942);--purple-7:color(display-p3 .799 .69 .91);--purple-8:color(display-p3 .719 .583 .874);--purple-9:color(display-p3 .523 .318 .751);--purple-10:color(display-p3 .483 .289 .7);--purple-11:color(display-p3 .473 .281 .687);--purple-12:color(display-p3 .234 .132 .363)}}}.dark,.dark-theme{--purple-1:#18111b;--purple-2:#1e1523;--purple-3:#301c3b;--purple-4:#3d224e;--purple-5:#48295c;--purple-6:#54346b;--purple-7:#664282;--purple-8:#8457aa;--purple-9:#8e4ec6;--purple-10:#9a5cd0;--purple-11:#d19dff;--purple-12:#ecd9fa}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--purple-1:color(display-p3 .09 .068 .103);--purple-2:color(display-p3 .113 .082 .134);--purple-3:color(display-p3 .175 .112 .224);--purple-4:color(display-p3 .224 .137 .297);--purple-5:color(display-p3 .264 .167 .349);--purple-6:color(display-p3 .311 .208 .406);--purple-7:color(display-p3 .381 .266 .496);--purple-8:color(display-p3 .49 .349 .649);--purple-9:color(display-p3 .523 .318 .751);--purple-10:color(display-p3 .57 .373 .791);--purple-11:color(display-p3 .8 .62 1);--purple-12:color(display-p3 .913 .854 .971)}}}:root,.light,.light-theme{--pink-1:#fffcfe;--pink-2:#fef7fb;--pink-3:#fee9f5;--pink-4:#fbdcef;--pink-5:#f6cee7;--pink-6:#efbfdd;--pink-7:#e7acd0;--pink-8:#dd93c2;--pink-9:#d6409f;--pink-10:#cf3897;--pink-11:#c2298a;--pink-12:#651249}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--pink-1:color(display-p3 .998 .989 .996);--pink-2:color(display-p3 .992 .97 .985);--pink-3:color(display-p3 .981 .917 .96);--pink-4:color(display-p3 .963 .867 .932);--pink-5:color(display-p3 .939 .815 .899);--pink-6:color(display-p3 .907 .756 .859);--pink-7:color(display-p3 .869 .683 .81);--pink-8:color(display-p3 .825 .59 .751);--pink-9:color(display-p3 .775 .297 .61);--pink-10:color(display-p3 .748 .27 .581);--pink-11:color(display-p3 .698 .219 .528);--pink-12:color(display-p3 .363 .101 .279)}}}.dark,.dark-theme{--pink-1:#191117;--pink-2:#21121d;--pink-3:#37172f;--pink-4:#4b143d;--pink-5:#591c47;--pink-6:#692955;--pink-7:#833869;--pink-8:#a84885;--pink-9:#d6409f;--pink-10:#de51a8;--pink-11:#ff8dcc;--pink-12:#fdd1ea}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--pink-1:color(display-p3 .093 .068 .089);--pink-2:color(display-p3 .121 .073 .11);--pink-3:color(display-p3 .198 .098 .179);--pink-4:color(display-p3 .271 .095 .231);--pink-5:color(display-p3 .32 .127 .273);--pink-6:color(display-p3 .382 .177 .326);--pink-7:color(display-p3 .477 .238 .405);--pink-8:color(display-p3 .612 .304 .51);--pink-9:color(display-p3 .775 .297 .61);--pink-10:color(display-p3 .808 .356 .645);--pink-11:color(display-p3 1 .535 .78);--pink-12:color(display-p3 .964 .826 .912)}}}:root,.light,.light-theme{--slate-1:#fcfcfd;--slate-2:#f9f9fb;--slate-3:#f0f0f3;--slate-4:#e8e8ec;--slate-5:#e0e1e6;--slate-6:#d9d9e0;--slate-7:#cdced6;--slate-8:#b9bbc6;--slate-9:#8b8d98;--slate-10:#80838d;--slate-11:#60646c;--slate-12:#1c2024}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){:root,.light,.light-theme{--slate-1:color(display-p3 .988 .988 .992);--slate-2:color(display-p3 .976 .976 .984);--slate-3:color(display-p3 .94 .941 .953);--slate-4:color(display-p3 .908 .909 .925);--slate-5:color(display-p3 .88 .881 .901);--slate-6:color(display-p3 .85 .852 .876);--slate-7:color(display-p3 .805 .808 .838);--slate-8:color(display-p3 .727 .733 .773);--slate-9:color(display-p3 .547 .553 .592);--slate-10:color(display-p3 .503 .512 .549);--slate-11:color(display-p3 .379 .392 .421);--slate-12:color(display-p3 .113 .125 .14)}}}.dark,.dark-theme{--slate-1:#111113;--slate-2:#18191b;--slate-3:#212225;--slate-4:#272a2d;--slate-5:#2e3135;--slate-6:#363a3f;--slate-7:#43484e;--slate-8:#5a6169;--slate-9:#696e77;--slate-10:#777b84;--slate-11:#b0b4ba;--slate-12:#edeef0}@supports (color:color(display-p3 1 1 1)){@media (color-gamut:p3){.dark,.dark-theme{--slate-1:color(display-p3 .067 .067 .074);--slate-2:color(display-p3 .095 .098 .105);--slate-3:color(display-p3 .13 .135 .145);--slate-4:color(display-p3 .156 .163 .176);--slate-5:color(display-p3 .183 .191 .206);--slate-6:color(display-p3 .215 .226 .244);--slate-7:color(display-p3 .265 .28 .302);--slate-8:color(display-p3 .357 .381 .409);--slate-9:color(display-p3 .415 .431 .463);--slate-10:color(display-p3 .469 .483 .514);--slate-11:color(display-p3 .692 .704 .728);--slate-12:color(display-p3 .93 .933 .94)}}}:root{--expo-color-white:#fff;--expo-color-black:#000;--expo-color-app-cyan:#07c0cb;--expo-color-app-light-blue:#1e92c4;--expo-color-app-dark-blue:#0b67af;--expo-color-app-indigo:#4b50b2;--expo-color-app-purple:#8945a3;--expo-color-app-pink:#c04891;--expo-color-app-orange:#e96d3c;--expo-color-app-gold:#f38f2f;--expo-color-app-yellow:#eebc01;--expo-color-app-lime:#aabd04;--expo-color-app-light-green:#6aa72a;--expo-color-app-dark-green:#3a8e39;--expo-theme-background-default:var(--expo-color-white);--expo-theme-background-screen:var(--slate-1);--expo-theme-background-subtle:var(--slate-2);--expo-theme-background-element:var(--slate-3);--expo-theme-background-hover:var(--slate-4);--expo-theme-background-selected:var(--slate-5);--expo-theme-background-overlay:var(--expo-color-white);--expo-theme-background-success:var(--green-3);--expo-theme-background-warning:var(--amber-3);--expo-theme-background-danger:var(--red-3);--expo-theme-background-info:var(--blue-3);--expo-theme-background-preview:var(--purple-3);--expo-theme-icon-default:var(--slate-11);--expo-theme-icon-secondary:var(--slate-10);--expo-theme-icon-tertiary:var(--slate-9);--expo-theme-icon-quaternary:var(--slate-8);--expo-theme-icon-success:var(--green-10);--expo-theme-icon-warning:var(--amber-11);--expo-theme-icon-danger:var(--red-10);--expo-theme-icon-info:var(--blue-10);--expo-theme-icon-preview:var(--purple-10);--expo-theme-text-default:var(--slate-12);--expo-theme-text-secondary:var(--slate-11);--expo-theme-text-tertiary:var(--slate-10);--expo-theme-text-quaternary:var(--slate-9);--expo-theme-text-link:var(--blue-11);--expo-theme-text-success:var(--green-11);--expo-theme-text-warning:var(--amber-11);--expo-theme-text-danger:var(--red-11);--expo-theme-text-info:var(--blue-11);--expo-theme-text-preview:var(--purple-11);--expo-theme-border-default:var(--slate-6);--expo-theme-border-secondary:var(--slate-5);--expo-theme-border-success:var(--green-7);--expo-theme-border-warning:var(--amber-7);--expo-theme-border-danger:var(--red-7);--expo-theme-border-info:var(--blue-7);--expo-theme-border-preview:var(--purple-7);--expo-theme-button-primary-background:var(--expo-color-black);--expo-theme-button-primary-border:transparent;--expo-theme-button-primary-hover:var(--slate-11);--expo-theme-button-primary-icon:var(--expo-color-white);--expo-theme-button-primary-text:var(--expo-color-white);--expo-theme-button-primary-disabled-background:var(--slate-8);--expo-theme-button-primary-disabled-border:transparent;--expo-theme-button-primary-disabled-text:var(--expo-color-white);--expo-theme-button-secondary-background:var(--slate-3);--expo-theme-button-secondary-border:transparent;--expo-theme-button-secondary-hover:var(--slate-5);--expo-theme-button-secondary-icon:var(--slate-12);--expo-theme-button-secondary-text:var(--slate-12);--expo-theme-button-secondary-disabled-background:var(--slate-3);--expo-theme-button-secondary-disabled-border:transparent;--expo-theme-button-secondary-disabled-text:var(--slate-9);--expo-theme-button-tertiary-background:transparent;--expo-theme-button-tertiary-border:var(--slate-7);--expo-theme-button-tertiary-hover:var(--slate-3);--expo-theme-button-tertiary-icon:var(--slate-11);--expo-theme-button-tertiary-text:var(--slate-12);--expo-theme-button-tertiary-disabled-background:transparent;--expo-theme-button-tertiary-disabled-border:var(--slate-6);--expo-theme-button-tertiary-disabled-text:var(--slate-9);--expo-theme-button-quaternary-background:transparent;--expo-theme-button-quaternary-border:transparent;--expo-theme-button-quaternary-hover:var(--slate-3);--expo-theme-button-quaternary-icon:var(--slate-11);--expo-theme-button-quaternary-text:var(--slate-12);--expo-theme-button-quaternary-disabled-background:transparent;--expo-theme-button-quaternary-disabled-border:transparent;--expo-theme-button-quaternary-disabled-text:var(--slate-9);--expo-theme-button-primary-destructive-background:var(--red-10);--expo-theme-button-primary-destructive-border:transparent;--expo-theme-button-primary-destructive-hover:var(--red-11);--expo-theme-button-primary-destructive-icon:var(--red-3);--expo-theme-button-primary-destructive-text:var(--expo-color-white);--expo-theme-button-primary-destructive-disabled-background:var(--red-7);--expo-theme-button-primary-destructive-disabled-border:transparent;--expo-theme-button-primary-destructive-disabled-text:var(--expo-color-white);--expo-theme-button-secondary-destructive-background:var(--expo-color-white);--expo-theme-button-secondary-destructive-border:var(--red-7);--expo-theme-button-secondary-destructive-hover:var(--red-3);--expo-theme-button-secondary-destructive-icon:var(--red-9);--expo-theme-button-secondary-destructive-text:var(--red-11);--expo-theme-button-secondary-destructive-disabled-background:var(--expo-color-white);--expo-theme-button-secondary-destructive-disabled-border:var(--red-5);--expo-theme-button-secondary-destructive-disabled-text:var(--red-8);--expo-theme-button-tertiary-destructive-background:transparent;--expo-theme-button-tertiary-destructive-border:transparent;--expo-theme-button-tertiary-destructive-hover:var(--red-3);--expo-theme-button-tertiary-destructive-icon:var(--red-9);--expo-theme-button-tertiary-destructive-text:var(--red-10);--expo-theme-button-tertiary-destructive-disabled-background:transparent;--expo-theme-button-tertiary-destructive-disabled-border:transparent;--expo-theme-button-tertiary-destructive-disabled-text:var(--red-8);--expo-theme-shadows-none:0 0 transparent;--expo-theme-shadows-xs:0 1px 3px #00000006, 0 1px 2px #0000000d;--expo-theme-shadows-sm:0 3px 6px #00000014, 0 2px 4px #00000012;--expo-theme-shadows-md:0 10px 20px #0000001a, 0 3px 6px #0000000d;--expo-theme-shadows-lg:0 15px 25px #0000001f, 0 5px 10px #0000000d;--expo-theme-shadows-xl:0 20px 40px #00000026}.dark-theme{--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark;--expo-theme-background-default:var(--slate-1);--expo-theme-background-screen:#0c0d0e;--expo-theme-background-subtle:var(--slate-2);--expo-theme-background-element:var(--slate-3);--expo-theme-background-hover:var(--slate-4);--expo-theme-background-selected:var(--slate-5);--expo-theme-background-overlay:var(--slate-2);--expo-theme-background-success:var(--green-3);--expo-theme-background-warning:var(--amber-3);--expo-theme-background-danger:var(--red-3);--expo-theme-background-info:var(--blue-3);--expo-theme-background-preview:var(--purple-3);--expo-theme-icon-default:var(--slate-11);--expo-theme-icon-secondary:var(--slate-10);--expo-theme-icon-tertiary:var(--slate-9);--expo-theme-icon-quaternary:var(--slate-8);--expo-theme-icon-success:var(--green-10);--expo-theme-icon-warning:var(--amber-11);--expo-theme-icon-danger:var(--red-10);--expo-theme-icon-info:var(--blue-10);--expo-theme-icon-preview:var(--purple-10);--expo-theme-text-default:var(--slate-12);--expo-theme-text-secondary:var(--slate-11);--expo-theme-text-tertiary:var(--slate-10);--expo-theme-text-quaternary:var(--slate-9);--expo-theme-text-link:var(--blue-11);--expo-theme-text-success:var(--green-11);--expo-theme-text-warning:var(--amber-11);--expo-theme-text-danger:var(--red-11);--expo-theme-text-info:var(--blue-11);--expo-theme-text-preview:var(--purple-11);--expo-theme-border-default:var(--slate-6);--expo-theme-border-secondary:var(--slate-5);--expo-theme-border-success:var(--green-7);--expo-theme-border-warning:var(--amber-7);--expo-theme-border-danger:var(--red-7);--expo-theme-border-info:var(--blue-7);--expo-theme-border-preview:var(--purple-7);--expo-theme-button-primary-background:var(--expo-color-white);--expo-theme-button-primary-border:transparent;--expo-theme-button-primary-hover:hsl(from var(--expo-color-white) h s calc(l - 20));--expo-theme-button-primary-icon:var(--slate-1);--expo-theme-button-primary-text:var(--slate-1);--expo-theme-button-primary-disabled-background:var(--slate-11);--expo-theme-button-primary-disabled-border:transparent;--expo-theme-button-primary-disabled-text:var(--slate-1);--expo-theme-button-secondary-background:var(--slate-3);--expo-theme-button-secondary-border:transparent;--expo-theme-button-secondary-hover:var(--slate-5);--expo-theme-button-secondary-icon:var(--slate-12);--expo-theme-button-secondary-text:var(--expo-color-white);--expo-theme-button-secondary-disabled-background:var(--slate-2);--expo-theme-button-secondary-disabled-border:transparent;--expo-theme-button-secondary-disabled-text:var(--slate-11);--expo-theme-button-tertiary-background:transparent;--expo-theme-button-tertiary-border:var(--slate-5);--expo-theme-button-tertiary-hover:var(--slate-4);--expo-theme-button-tertiary-icon:var(--slate-12);--expo-theme-button-tertiary-text:var(--expo-color-white);--expo-theme-button-tertiary-disabled-background:transparent;--expo-theme-button-tertiary-disabled-border:var(--slate-7);--expo-theme-button-tertiary-disabled-text:var(--slate-11);--expo-theme-button-quaternary-background:transparent;--expo-theme-button-quaternary-border:transparent;--expo-theme-button-quaternary-hover:var(--slate-3);--expo-theme-button-quaternary-icon:var(--slate-12);--expo-theme-button-quaternary-text:var(--expo-color-white);--expo-theme-button-quaternary-disabled-background:transparent;--expo-theme-button-quaternary-disabled-border:transparent;--expo-theme-button-quaternary-disabled-text:var(--slate-11);--expo-theme-button-primary-destructive-background:hsl(from var(--red-8) h calc(s + 15) calc(l - 10));--expo-theme-button-primary-destructive-border:transparent;--expo-theme-button-primary-destructive-hover:hsl(from var(--red-7) h calc(s + 15) calc(l - 10));--expo-theme-button-primary-destructive-icon:var(--red-12);--expo-theme-button-primary-destructive-text:var(--expo-color-white);--expo-theme-button-primary-destructive-disabled-background:var(--red-6);--expo-theme-button-primary-destructive-disabled-border:transparent;--expo-theme-button-primary-destructive-disabled-text:var(--red-12);--expo-theme-button-secondary-destructive-background:var(--red-3);--expo-theme-button-secondary-destructive-border:var(--red-7);--expo-theme-button-secondary-destructive-hover:hsl(from var(--red-2) h calc(s + 15) l);--expo-theme-button-secondary-destructive-icon:var(--red-9);--expo-theme-button-secondary-destructive-text:var(--red-11);--expo-theme-button-secondary-destructive-disabled-background:var(--red-2);--expo-theme-button-secondary-destructive-disabled-border:var(--red-6);--expo-theme-button-secondary-destructive-disabled-text:var(--red-10);--expo-theme-button-tertiary-destructive-background:transparent;--expo-theme-button-tertiary-destructive-border:transparent;--expo-theme-button-tertiary-destructive-hover:var(--red-3);--expo-theme-button-tertiary-destructive-icon:var(--red-10);--expo-theme-button-tertiary-destructive-text:var(--red-11);--expo-theme-button-tertiary-destructive-disabled-background:transparent;--expo-theme-button-tertiary-destructive-disabled-border:transparent;--expo-theme-button-tertiary-destructive-disabled-text:var(--red-9);--expo-theme-shadows-none:0 0 transparent;--expo-theme-shadows-xs:0 1px 3px #0000004d, 0 1px 2px #0000004d;--expo-theme-shadows-sm:0 3px 6px #0006, 0 2px 4px #00000040;--expo-theme-shadows-md:0 10px 20px #00000040, 0 3px 6px #00000040;--expo-theme-shadows-lg:0 15px 25px #00000080, 0 5px 10px #00000040;--expo-theme-shadows-xl:0 20px 40px #00000080}:root{--expo-font-sans:"Inter", -apple-system, "system-ui", sans-serif;--expo-font-mono:"JetBrains Mono", ui-monospace, monospace;--expo-radius-xs:2px;--expo-radius-sm:4px;--expo-radius-md:6px;--expo-radius-lg:8px;--expo-radius-xl:16px;--expo-radius-2xl:20px;--expo-radius-3xl:24px;--expo-radius-full:9999px}