@tableslayer/ui 0.1.3 → 0.1.4

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 (205) hide show
  1. package/package.json +2 -13
  2. package/src/lib/components/Avatar/Avatar.svelte +82 -0
  3. package/src/lib/components/Avatar/AvatarFileInput.svelte +85 -0
  4. package/src/lib/components/Avatar/AvatarPopover.svelte +34 -0
  5. package/src/lib/components/Avatar/index.ts +4 -0
  6. package/src/lib/components/Avatar/types.ts +24 -0
  7. package/src/lib/components/BrushSizeSlider/BrushSizeSlider.svelte +174 -0
  8. package/src/lib/components/BrushSizeSlider/index.ts +1 -0
  9. package/src/lib/components/Button/Button.svelte +182 -0
  10. package/src/lib/components/Button/ConfirmActionButton.svelte +98 -0
  11. package/src/lib/components/Button/IconButton.svelte +121 -0
  12. package/src/lib/components/Button/RadioButton.svelte +93 -0
  13. package/src/lib/components/Button/index.ts +5 -0
  14. package/src/lib/components/Button/types.ts +54 -0
  15. package/src/lib/components/CardFan/CardFan.svelte +165 -0
  16. package/src/lib/components/CardFan/index.ts +2 -0
  17. package/src/lib/components/CardFan/types.ts +6 -0
  18. package/src/lib/components/CodeBlock/Code.svelte +7 -0
  19. package/src/lib/components/CodeBlock/CodeBlock.svelte +102 -0
  20. package/src/lib/components/CodeBlock/index.ts +3 -0
  21. package/src/lib/components/CodeBlock/types.ts +10 -0
  22. package/src/lib/components/ColorMode/ColorMode.svelte +8 -0
  23. package/src/lib/components/ColorMode/index.ts +2 -0
  24. package/src/lib/components/ColorMode/types.ts +12 -0
  25. package/src/lib/components/ColorPicker/ColorPicker.svelte +838 -0
  26. package/src/lib/components/ColorPicker/ColorPickerSwatch.svelte +32 -0
  27. package/src/lib/components/ColorPicker/index.ts +3 -0
  28. package/src/lib/components/ColorPicker/types.ts +51 -0
  29. package/src/lib/components/ContextMenu/ContextMenu.svelte +86 -0
  30. package/src/lib/components/ContextMenu/index.ts +2 -0
  31. package/src/lib/components/ContextMenu/types.ts +15 -0
  32. package/src/lib/components/DrawingSliders/DrawingSliders.svelte +379 -0
  33. package/src/lib/components/DrawingSliders/index.ts +1 -0
  34. package/src/lib/components/Editor/Editor.svelte +825 -0
  35. package/src/lib/components/Editor/index.ts +1 -0
  36. package/src/lib/components/FogSliders/FogSliders.svelte +33 -0
  37. package/src/lib/components/FogSliders/index.ts +1 -0
  38. package/src/lib/components/Hr/Hr.svelte +15 -0
  39. package/src/lib/components/Hr/index.ts +1 -0
  40. package/src/lib/components/Icon/Icon.svelte +6 -0
  41. package/src/lib/components/Icon/index.ts +2 -0
  42. package/src/lib/components/Icon/types.ts +20 -0
  43. package/src/lib/components/Input/DualInputSlider.svelte +126 -0
  44. package/src/lib/components/Input/FileInput.svelte +176 -0
  45. package/src/lib/components/Input/FormControl.svelte +150 -0
  46. package/src/lib/components/Input/FormError.svelte +37 -0
  47. package/src/lib/components/Input/Input.svelte +56 -0
  48. package/src/lib/components/Input/InputCheckbox.svelte +99 -0
  49. package/src/lib/components/Input/InputSlider.svelte +86 -0
  50. package/src/lib/components/Input/Label.svelte +19 -0
  51. package/src/lib/components/Input/index.ts +9 -0
  52. package/src/lib/components/Input/types.ts +39 -0
  53. package/src/lib/components/Link/Link.svelte +41 -0
  54. package/src/lib/components/Link/LinkBox.svelte +20 -0
  55. package/src/lib/components/Link/LinkOverlay.svelte +23 -0
  56. package/src/lib/components/Link/index.ts +4 -0
  57. package/src/lib/components/Link/types.ts +17 -0
  58. package/src/lib/components/Loading/Loader.svelte +60 -0
  59. package/src/lib/components/Loading/Skeleton.svelte +9 -0
  60. package/src/lib/components/Loading/index.ts +2 -0
  61. package/src/lib/components/Logo/Logo.svelte +16 -0
  62. package/src/lib/components/Logo/index.ts +1 -0
  63. package/src/lib/components/MarkerTooltip/MarkerTooltip.svelte +435 -0
  64. package/src/lib/components/MarkerTooltip/index.ts +1 -0
  65. package/src/lib/components/Menu/SelectorMenu.svelte +280 -0
  66. package/src/lib/components/Menu/index.ts +2 -0
  67. package/src/lib/components/Menu/types.ts +17 -0
  68. package/src/lib/components/MyCounterButton.svelte +11 -0
  69. package/src/lib/components/Panel/index.ts +2 -0
  70. package/src/lib/components/Panel/panel.svelte +18 -0
  71. package/src/lib/components/Panel/types.ts +8 -0
  72. package/src/lib/components/PersistButton/PersistButton.svelte +100 -0
  73. package/src/lib/components/PersistButton/index.ts +1 -0
  74. package/src/lib/components/Popover/Popover.svelte +81 -0
  75. package/src/lib/components/Popover/index.ts +2 -0
  76. package/src/lib/components/Popover/types.ts +19 -0
  77. package/src/lib/components/PropsTable/PropsTable.svelte +107 -0
  78. package/src/lib/components/RadialMenu/EffectPreview.svelte +36 -0
  79. package/src/lib/components/RadialMenu/EffectPreviewScene.svelte +194 -0
  80. package/src/lib/components/RadialMenu/RadialMenu.svelte +503 -0
  81. package/src/lib/components/RadialMenu/RadialMenuItem.svelte +176 -0
  82. package/src/lib/components/RadialMenu/index.ts +2 -0
  83. package/src/lib/components/RadialMenu/types.ts +35 -0
  84. package/src/lib/components/Select/Select.svelte +342 -0
  85. package/src/lib/components/Select/index.ts +2 -0
  86. package/src/lib/components/Select/types.ts +22 -0
  87. package/src/lib/components/Spacer/Spacer.svelte +14 -0
  88. package/src/lib/components/Spacer/index.ts +2 -0
  89. package/src/lib/components/Spacer/types.ts +5 -0
  90. package/src/lib/components/Stage/components/AnnotationLayer/AnnotationLayer.svelte +445 -0
  91. package/src/lib/components/Stage/components/AnnotationLayer/AnnotationMaterial.svelte +167 -0
  92. package/src/lib/components/Stage/components/AnnotationLayer/types.ts +196 -0
  93. package/src/lib/components/Stage/components/CursorLayer/CursorLayer.svelte +148 -0
  94. package/src/lib/components/Stage/components/CursorLayer/cursor.svg +26 -0
  95. package/src/lib/components/Stage/components/CursorLayer/index.ts +2 -0
  96. package/src/lib/components/Stage/components/CursorLayer/types.ts +23 -0
  97. package/src/lib/components/Stage/components/DrawingLayer/DrawingMaterial.svelte +364 -0
  98. package/src/lib/components/Stage/components/DrawingLayer/types.ts +65 -0
  99. package/src/lib/components/Stage/components/EdgeOverlayLayer/EdgeOverlayLayer.svelte +72 -0
  100. package/src/lib/components/Stage/components/EdgeOverlayLayer/types.ts +34 -0
  101. package/src/lib/components/Stage/components/FogLayer/FogLayer.svelte +75 -0
  102. package/src/lib/components/Stage/components/FogLayer/types.ts +51 -0
  103. package/src/lib/components/Stage/components/FogOfWarLayer/FogOfWarLayer.svelte +249 -0
  104. package/src/lib/components/Stage/components/FogOfWarLayer/FogOfWarMaterial.svelte +200 -0
  105. package/src/lib/components/Stage/components/FogOfWarLayer/types.ts +116 -0
  106. package/src/lib/components/Stage/components/GridLayer/GridLayer.svelte +20 -0
  107. package/src/lib/components/Stage/components/GridLayer/GridMaterial.svelte +69 -0
  108. package/src/lib/components/Stage/components/GridLayer/types.ts +79 -0
  109. package/src/lib/components/Stage/components/LayerInput/LayerInput.svelte +300 -0
  110. package/src/lib/components/Stage/components/MapLayer/MapLayer.svelte +196 -0
  111. package/src/lib/components/Stage/components/MapLayer/dataSources/GifDataSource.ts +265 -0
  112. package/src/lib/components/Stage/components/MapLayer/dataSources/IMapDataSource.ts +55 -0
  113. package/src/lib/components/Stage/components/MapLayer/dataSources/ImageDataSource.ts +87 -0
  114. package/src/lib/components/Stage/components/MapLayer/dataSources/VideoDataSource.ts +150 -0
  115. package/src/lib/components/Stage/components/MapLayer/dataSources/dataSourceFactory.ts +48 -0
  116. package/src/lib/components/Stage/components/MapLayer/dataSources/index.ts +16 -0
  117. package/src/lib/components/Stage/components/MapLayer/types.ts +58 -0
  118. package/src/lib/components/Stage/components/MarkerLayer/MarkerLayer.svelte +398 -0
  119. package/src/lib/components/Stage/components/MarkerLayer/MarkerToken.svelte +262 -0
  120. package/src/lib/components/Stage/components/MarkerLayer/types.ts +126 -0
  121. package/src/lib/components/Stage/components/MeasurementLayer/MeasurementLayer.svelte +364 -0
  122. package/src/lib/components/Stage/components/MeasurementLayer/MeasurementManager.svelte +473 -0
  123. package/src/lib/components/Stage/components/MeasurementLayer/measurements/BaseMeasurement.ts +427 -0
  124. package/src/lib/components/Stage/components/MeasurementLayer/measurements/BeamMeasurement.ts +105 -0
  125. package/src/lib/components/Stage/components/MeasurementLayer/measurements/CircleMeasurement.ts +98 -0
  126. package/src/lib/components/Stage/components/MeasurementLayer/measurements/ConeMeasurement.ts +163 -0
  127. package/src/lib/components/Stage/components/MeasurementLayer/measurements/LineMeasurement.ts +102 -0
  128. package/src/lib/components/Stage/components/MeasurementLayer/measurements/RectangleMeasurement.ts +120 -0
  129. package/src/lib/components/Stage/components/MeasurementLayer/measurements/index.ts +7 -0
  130. package/src/lib/components/Stage/components/MeasurementLayer/types.ts +94 -0
  131. package/src/lib/components/Stage/components/MeasurementLayer/utils/canvasDrawing.ts +357 -0
  132. package/src/lib/components/Stage/components/MeasurementLayer/utils/distanceCalculations.ts +170 -0
  133. package/src/lib/components/Stage/components/ParticleSystem/ParticleSystem.svelte +220 -0
  134. package/src/lib/components/Stage/components/ParticleSystem/particles/atlases/ash.png +0 -0
  135. package/src/lib/components/Stage/components/ParticleSystem/particles/atlases/leaves.png +0 -0
  136. package/src/lib/components/Stage/components/ParticleSystem/particles/atlases/rain.png +0 -0
  137. package/src/lib/components/Stage/components/ParticleSystem/particles/atlases/snow.png +0 -0
  138. package/src/lib/components/Stage/components/ParticleSystem/rng.js +20 -0
  139. package/src/lib/components/Stage/components/ParticleSystem/types.ts +95 -0
  140. package/src/lib/components/Stage/components/PerformanceDebugger/PerformanceDebugger.svelte +144 -0
  141. package/src/lib/components/Stage/components/PerformanceDebugger/index.ts +1 -0
  142. package/src/lib/components/Stage/components/PerformanceOverlay/PerformanceOverlay.svelte +208 -0
  143. package/src/lib/components/Stage/components/PerformanceOverlay/index.ts +1 -0
  144. package/src/lib/components/Stage/components/PointerInputManager/PointerInputManager.svelte +201 -0
  145. package/src/lib/components/Stage/components/Scene/Scene.svelte +651 -0
  146. package/src/lib/components/Stage/components/Scene/luts.ts +24 -0
  147. package/src/lib/components/Stage/components/Scene/types.ts +225 -0
  148. package/src/lib/components/Stage/components/Stage/Stage.svelte +332 -0
  149. package/src/lib/components/Stage/components/Stage/types.ts +136 -0
  150. package/src/lib/components/Stage/components/WeatherLayer/WeatherLayer.svelte +135 -0
  151. package/src/lib/components/Stage/components/WeatherLayer/presets/AshPreset.ts +71 -0
  152. package/src/lib/components/Stage/components/WeatherLayer/presets/LeavesPreset.ts +70 -0
  153. package/src/lib/components/Stage/components/WeatherLayer/presets/RainPreset.ts +68 -0
  154. package/src/lib/components/Stage/components/WeatherLayer/presets/SnowPreset.ts +70 -0
  155. package/src/lib/components/Stage/components/WeatherLayer/presets/index.ts +6 -0
  156. package/src/lib/components/Stage/components/WeatherLayer/types.ts +35 -0
  157. package/src/lib/components/Stage/helpers/clippingPlaneStore.svelte.ts +28 -0
  158. package/src/lib/components/Stage/helpers/debugState.svelte.ts +18 -0
  159. package/src/lib/components/Stage/helpers/grid.ts +548 -0
  160. package/src/lib/components/Stage/helpers/lazyBrush.ts +171 -0
  161. package/src/lib/components/Stage/helpers/performanceMetrics.svelte.ts +220 -0
  162. package/src/lib/components/Stage/helpers/utils.ts +21 -0
  163. package/src/lib/components/Stage/index.ts +49 -0
  164. package/src/lib/components/Stage/shaders/AnnotationEffects.frag +1070 -0
  165. package/src/lib/components/Stage/shaders/Annotations.frag +29 -0
  166. package/src/lib/components/Stage/shaders/Drawing.frag +83 -0
  167. package/src/lib/components/Stage/shaders/Drawing.vert +5 -0
  168. package/src/lib/components/Stage/shaders/Fog.frag +147 -0
  169. package/src/lib/components/Stage/shaders/FractalNoise.frag +96 -0
  170. package/src/lib/components/Stage/shaders/GridShader.frag +174 -0
  171. package/src/lib/components/Stage/shaders/Overlay.frag +23 -0
  172. package/src/lib/components/Stage/shaders/Overlay.vert +0 -0
  173. package/src/lib/components/Stage/shaders/Particles.frag +27 -0
  174. package/src/lib/components/Stage/shaders/Particles.vert +51 -0
  175. package/src/lib/components/Stage/shaders/ToolOutline.frag +59 -0
  176. package/src/lib/components/Stage/shaders/default.vert +8 -0
  177. package/src/lib/components/Stage/types.ts +4 -0
  178. package/src/lib/components/Table/Table.svelte +16 -0
  179. package/src/lib/components/Table/Td.svelte +17 -0
  180. package/src/lib/components/Table/Th.svelte +18 -0
  181. package/src/lib/components/Table/index.ts +4 -0
  182. package/src/lib/components/Table/types.ts +14 -0
  183. package/src/lib/components/Text/Text.svelte +23 -0
  184. package/src/lib/components/Text/index.ts +2 -0
  185. package/src/lib/components/Text/types.ts +12 -0
  186. package/src/lib/components/Title/Title.svelte +54 -0
  187. package/src/lib/components/Title/index.ts +2 -0
  188. package/src/lib/components/Title/types.ts +9 -0
  189. package/src/lib/components/Toast/Toast.svelte +155 -0
  190. package/src/lib/components/Toast/index.ts +5 -0
  191. package/src/lib/components/Toast/toastCookie.ts +24 -0
  192. package/src/lib/components/Toast/types.ts +6 -0
  193. package/src/lib/components/ToolTip/ToolTip.svelte +70 -0
  194. package/src/lib/components/ToolTip/index.ts +2 -0
  195. package/src/lib/components/ToolTip/types.ts +14 -0
  196. package/src/lib/components/index.ts +32 -0
  197. package/src/lib/components/types.ts +0 -0
  198. package/src/lib/index.ts +2 -0
  199. package/src/lib/styles/globals.css +108 -0
  200. package/src/lib/styles/normalize.css +9 -0
  201. package/src/lib/styles/reset.css +133 -0
  202. package/src/lib/styles/utilities.css +179 -0
  203. package/src/lib/styles/vars.css +1103 -0
  204. package/src/lib/types/awareness.ts +17 -0
  205. package/src/lib/utils/rle.ts +217 -0
@@ -0,0 +1,1103 @@
1
+ :where(html) {
2
+ font-size: 14px;
3
+ --font-sans: 'Inter';
4
+ --font-serif: 'Raven Hell';
5
+ --font-mono:
6
+ Dank Mono, Operator Mono, Inconsolata, Fira Mono, ui-monospace, SF Mono, Monaco, Droid Sans Mono, Source Code Pro,
7
+ monospace;
8
+ --font-weight-1: 100;
9
+ --font-weight-2: 200;
10
+ --font-weight-3: 300;
11
+ --font-weight-4: 400;
12
+ --font-weight-5: 500;
13
+ --font-weight-6: 600;
14
+ --font-weight-7: 700;
15
+ --font-weight-8: 800;
16
+ --font-weight-9: 900;
17
+ --font-lineheight-00: 0.95;
18
+ --font-lineheight-0: 1.1;
19
+ --font-lineheight-1: 1.25;
20
+ --font-lineheight-2: 1.375;
21
+ --font-lineheight-3: 1.5;
22
+ --font-lineheight-4: 1.75;
23
+ --font-lineheight-5: 2;
24
+ --font-letterspacing-0: -0.05em;
25
+ --font-letterspacing-1: 0.025em;
26
+ --font-letterspacing-2: 0.05em;
27
+ --font-letterspacing-3: 0.075em;
28
+ --font-letterspacing-4: 0.15em;
29
+ --font-letterspacing-5: 0.5em;
30
+ --font-letterspacing-6: 0.75em;
31
+ --font-letterspacing-7: 1em;
32
+ --font-size-00: 0.5rem;
33
+ --font-size-0: 0.75rem;
34
+ --font-size-1: 1rem;
35
+ --font-size-2: 1.1rem;
36
+ --font-size-3: 1.25rem;
37
+ --font-size-4: 1.5rem;
38
+ --font-size-5: 2rem;
39
+ --font-size-6: 2.5rem;
40
+ --font-size-7: 3rem;
41
+ --font-size-8: 3.5rem;
42
+ --font-size-9: 4rem;
43
+ --font-size-10: 4.5rem;
44
+ --font-size-fluid-0: clamp(0.75rem, 2vw, 1rem);
45
+ --font-size-fluid-1: clamp(1rem, 4vw, 1.5rem);
46
+ --font-size-fluid-2: clamp(1.5rem, 6vw, 2.5rem);
47
+ --font-size-fluid-3: clamp(2rem, 9vw, 3.5rem);
48
+ --size-1: 0.25rem;
49
+ --size-2: 0.5rem;
50
+ --size-3: 0.75rem;
51
+ --size-4: 1rem;
52
+ --size-5: 1.25rem;
53
+ --size-6: 1.5rem;
54
+ --size-7: 1.75rem;
55
+ --size-8: 2rem;
56
+ --size-9: 2.25rem;
57
+ --size-10: 2.5rem;
58
+ --size-11: 2.75rem;
59
+ --size-12: 3rem;
60
+ --size-fluid-1: clamp(0.5rem, 1vw, 1rem);
61
+ --size-fluid-2: clamp(1rem, 2vw, 1.5rem);
62
+ --size-fluid-3: clamp(1.5rem, 3vw, 2rem);
63
+ --size-fluid-4: clamp(2rem, 4vw, 3rem);
64
+ --size-fluid-5: clamp(4rem, 5vw, 5rem);
65
+ --size-fluid-6: clamp(5rem, 7vw, 7.5rem);
66
+ --size-fluid-7: clamp(7.5rem, 10vw, 10rem);
67
+ --size-fluid-8: clamp(10rem, 20vw, 15rem);
68
+ --size-fluid-9: clamp(15rem, 30vw, 20rem);
69
+ --size-fluid-10: clamp(20rem, 40vw, 30rem);
70
+ --size-content-1: 20ch;
71
+ --size-content-2: 45ch;
72
+ --size-content-3: 60ch;
73
+ --size-header-1: 20ch;
74
+ --size-header-2: 25ch;
75
+ --size-header-3: 35ch;
76
+ --contain-smallForm: 450px;
77
+ --contain-mobile: 480px;
78
+ --contain-tablet: 1024px;
79
+ --contain-desktop: 1200px;
80
+ --contain-wide-desktop: 1440px;
81
+ --size-relative-000: -0.5ch;
82
+ --size-relative-00: -0.25ch;
83
+ --size-relative-1: 0.25ch;
84
+ --size-relative-2: 0.5ch;
85
+ --size-relative-3: 1ch;
86
+ --size-relative-4: 1.25ch;
87
+ --size-relative-5: 1.5ch;
88
+ --size-relative-6: 1.75ch;
89
+ --size-relative-7: 2ch;
90
+ --size-relative-8: 3ch;
91
+ --size-relative-9: 4ch;
92
+ --size-relative-10: 5ch;
93
+ --size-relative-11: 7.5ch;
94
+ --size-relative-12: 10ch;
95
+ --size-relative-13: 15ch;
96
+ --size-relative-14: 20ch;
97
+ --size-relative-15: 30ch;
98
+ --ease-1: cubic-bezier(0.25, 0, 0.5, 1);
99
+ --ease-2: cubic-bezier(0.25, 0, 0.4, 1);
100
+ --ease-3: cubic-bezier(0.25, 0, 0.3, 1);
101
+ --ease-4: cubic-bezier(0.25, 0, 0.2, 1);
102
+ --ease-5: cubic-bezier(0.25, 0, 0.1, 1);
103
+ --ease-in-1: cubic-bezier(0.25, 0, 1, 1);
104
+ --ease-in-2: cubic-bezier(0.5, 0, 1, 1);
105
+ --ease-in-3: cubic-bezier(0.7, 0, 1, 1);
106
+ --ease-in-4: cubic-bezier(0.9, 0, 1, 1);
107
+ --ease-in-5: cubic-bezier(1, 0, 1, 1);
108
+ --ease-out-1: cubic-bezier(0, 0, 0.75, 1);
109
+ --ease-out-2: cubic-bezier(0, 0, 0.5, 1);
110
+ --ease-out-3: cubic-bezier(0, 0, 0.3, 1);
111
+ --ease-out-4: cubic-bezier(0, 0, 0.1, 1);
112
+ --ease-out-5: cubic-bezier(0, 0, 0, 1);
113
+ --ease-in-out-1: cubic-bezier(0.1, 0, 0.9, 1);
114
+ --ease-in-out-2: cubic-bezier(0.3, 0, 0.7, 1);
115
+ --ease-in-out-3: cubic-bezier(0.5, 0, 0.5, 1);
116
+ --ease-in-out-4: cubic-bezier(0.7, 0, 0.3, 1);
117
+ --ease-in-out-5: cubic-bezier(0.9, 0, 0.1, 1);
118
+ --ease-elastic-out-1: cubic-bezier(0.5, 0.75, 0.75, 1.25);
119
+ --ease-elastic-out-2: cubic-bezier(0.5, 1, 0.75, 1.25);
120
+ --ease-elastic-out-3: cubic-bezier(0.5, 1.25, 0.75, 1.25);
121
+ --ease-elastic-out-4: cubic-bezier(0.5, 1.5, 0.75, 1.25);
122
+ --ease-elastic-out-5: cubic-bezier(0.5, 1.75, 0.75, 1.25);
123
+ --ease-elastic-in-1: cubic-bezier(0.5, -0.25, 0.75, 1);
124
+ --ease-elastic-in-2: cubic-bezier(0.5, -0.5, 0.75, 1);
125
+ --ease-elastic-in-3: cubic-bezier(0.5, -0.75, 0.75, 1);
126
+ --ease-elastic-in-4: cubic-bezier(0.5, -1, 0.75, 1);
127
+ --ease-elastic-in-5: cubic-bezier(0.5, -1.25, 0.75, 1);
128
+ --ease-elastic-in-out-1: cubic-bezier(0.5, -0.1, 0.1, 1.5);
129
+ --ease-elastic-in-out-2: cubic-bezier(0.5, -0.3, 0.1, 1.5);
130
+ --ease-elastic-in-out-3: cubic-bezier(0.5, -0.5, 0.1, 1.5);
131
+ --ease-elastic-in-out-4: cubic-bezier(0.5, -0.7, 0.1, 1.5);
132
+ --ease-elastic-in-out-5: cubic-bezier(0.5, -0.9, 0.1, 1.5);
133
+ --ease-step-1: steps(2);
134
+ --ease-step-2: steps(3);
135
+ --ease-step-3: steps(4);
136
+ --ease-step-4: steps(7);
137
+ --ease-step-5: steps(10);
138
+ --ease-elastic-1: var(--ease-elastic-out-1);
139
+ --ease-elastic-2: var(--ease-elastic-out-2);
140
+ --ease-elastic-3: var(--ease-elastic-out-3);
141
+ --ease-elastic-4: var(--ease-elastic-out-4);
142
+ --ease-elastic-5: var(--ease-elastic-out-5);
143
+ --ease-squish-1: var(--ease-elastic-in-out-1);
144
+ --ease-squish-2: var(--ease-elastic-in-out-2);
145
+ --ease-squish-3: var(--ease-elastic-in-out-3);
146
+ --ease-squish-4: var(--ease-elastic-in-out-4);
147
+ --ease-squish-5: var(--ease-elastic-in-out-5);
148
+ --ease-spring-1: linear(
149
+ 0,
150
+ 0.006,
151
+ 0.025 2.8%,
152
+ 0.101 6.1%,
153
+ 0.539 18.9%,
154
+ 0.721 25.3%,
155
+ 0.849 31.5%,
156
+ 0.937 38.1%,
157
+ 0.968 41.8%,
158
+ 0.991 45.7%,
159
+ 1.006 50.1%,
160
+ 1.015 55%,
161
+ 1.017 63.9%,
162
+ 1.001
163
+ );
164
+ --ease-spring-2: linear(
165
+ 0,
166
+ 0.007,
167
+ 0.029 2.2%,
168
+ 0.118 4.7%,
169
+ 0.625 14.4%,
170
+ 0.826 19%,
171
+ 0.902,
172
+ 0.962,
173
+ 1.008 26.1%,
174
+ 1.041 28.7%,
175
+ 1.064 32.1%,
176
+ 1.07 36%,
177
+ 1.061 40.5%,
178
+ 1.015 53.4%,
179
+ 0.999 61.6%,
180
+ 0.995 71.2%,
181
+ 1
182
+ );
183
+ --ease-spring-3: linear(
184
+ 0,
185
+ 0.009,
186
+ 0.035 2.1%,
187
+ 0.141 4.4%,
188
+ 0.723 12.9%,
189
+ 0.938 16.7%,
190
+ 1.017,
191
+ 1.077,
192
+ 1.121,
193
+ 1.149 24.3%,
194
+ 1.159,
195
+ 1.163,
196
+ 1.161,
197
+ 1.154 29.9%,
198
+ 1.129 32.8%,
199
+ 1.051 39.6%,
200
+ 1.017 43.1%,
201
+ 0.991,
202
+ 0.977 51%,
203
+ 0.974 53.8%,
204
+ 0.975 57.1%,
205
+ 0.997 69.8%,
206
+ 1.003 76.9%,
207
+ 1
208
+ );
209
+ --ease-spring-4: linear(
210
+ 0,
211
+ 0.009,
212
+ 0.037 1.7%,
213
+ 0.153 3.6%,
214
+ 0.776 10.3%,
215
+ 1.001,
216
+ 1.142 16%,
217
+ 1.185,
218
+ 1.209 19%,
219
+ 1.215 19.9% 20.8%,
220
+ 1.199,
221
+ 1.165 25%,
222
+ 1.056 30.3%,
223
+ 1.008 33%,
224
+ 0.973,
225
+ 0.955 39.2%,
226
+ 0.953 41.1%,
227
+ 0.957 43.3%,
228
+ 0.998 53.3%,
229
+ 1.009 59.1% 63.7%,
230
+ 0.998 78.9%,
231
+ 1
232
+ );
233
+ --ease-spring-5: linear(
234
+ 0,
235
+ 0.01,
236
+ 0.04 1.6%,
237
+ 0.161 3.3%,
238
+ 0.816 9.4%,
239
+ 1.046,
240
+ 1.189 14.4%,
241
+ 1.231,
242
+ 1.254 17%,
243
+ 1.259,
244
+ 1.257 18.6%,
245
+ 1.236,
246
+ 1.194 22.3%,
247
+ 1.057 27%,
248
+ 0.999 29.4%,
249
+ 0.955 32.1%,
250
+ 0.942,
251
+ 0.935 34.9%,
252
+ 0.933,
253
+ 0.939 38.4%,
254
+ 1 47.3%,
255
+ 1.011,
256
+ 1.017 52.6%,
257
+ 1.016 56.4%,
258
+ 1 65.2%,
259
+ 0.996 70.2%,
260
+ 1.001 87.2%,
261
+ 1
262
+ );
263
+ --ease-bounce-1: linear(
264
+ 0,
265
+ 0.004,
266
+ 0.016,
267
+ 0.035,
268
+ 0.063,
269
+ 0.098,
270
+ 0.141,
271
+ 0.191,
272
+ 0.25,
273
+ 0.316,
274
+ 0.391 36.8%,
275
+ 0.563,
276
+ 0.766,
277
+ 1 58.8%,
278
+ 0.946,
279
+ 0.908 69.1%,
280
+ 0.895,
281
+ 0.885,
282
+ 0.879,
283
+ 0.878,
284
+ 0.879,
285
+ 0.885,
286
+ 0.895,
287
+ 0.908 89.7%,
288
+ 0.946,
289
+ 1
290
+ );
291
+ --ease-bounce-2: linear(
292
+ 0,
293
+ 0.004,
294
+ 0.016,
295
+ 0.035,
296
+ 0.063,
297
+ 0.098,
298
+ 0.141 15.1%,
299
+ 0.25,
300
+ 0.391,
301
+ 0.562,
302
+ 0.765,
303
+ 1,
304
+ 0.892 45.2%,
305
+ 0.849,
306
+ 0.815,
307
+ 0.788,
308
+ 0.769,
309
+ 0.757,
310
+ 0.753,
311
+ 0.757,
312
+ 0.769,
313
+ 0.788,
314
+ 0.815,
315
+ 0.85,
316
+ 0.892 75.2%,
317
+ 1 80.2%,
318
+ 0.973,
319
+ 0.954,
320
+ 0.943,
321
+ 0.939,
322
+ 0.943,
323
+ 0.954,
324
+ 0.973,
325
+ 1
326
+ );
327
+ --ease-bounce-3: linear(
328
+ 0,
329
+ 0.004,
330
+ 0.016,
331
+ 0.035,
332
+ 0.062,
333
+ 0.098,
334
+ 0.141 11.4%,
335
+ 0.25,
336
+ 0.39,
337
+ 0.562,
338
+ 0.764,
339
+ 1 30.3%,
340
+ 0.847 34.8%,
341
+ 0.787,
342
+ 0.737,
343
+ 0.699,
344
+ 0.672,
345
+ 0.655,
346
+ 0.65,
347
+ 0.656,
348
+ 0.672,
349
+ 0.699,
350
+ 0.738,
351
+ 0.787,
352
+ 0.847 61.7%,
353
+ 1 66.2%,
354
+ 0.946,
355
+ 0.908,
356
+ 0.885 74.2%,
357
+ 0.879,
358
+ 0.878,
359
+ 0.879,
360
+ 0.885 79.5%,
361
+ 0.908,
362
+ 0.946,
363
+ 1 87.4%,
364
+ 0.981,
365
+ 0.968,
366
+ 0.96,
367
+ 0.957,
368
+ 0.96,
369
+ 0.968,
370
+ 0.981,
371
+ 1
372
+ );
373
+ --ease-bounce-4: linear(
374
+ 0,
375
+ 0.004,
376
+ 0.016 3%,
377
+ 0.062,
378
+ 0.141,
379
+ 0.25,
380
+ 0.391,
381
+ 0.562 18.2%,
382
+ 1 24.3%,
383
+ 0.81,
384
+ 0.676 32.3%,
385
+ 0.629,
386
+ 0.595,
387
+ 0.575,
388
+ 0.568,
389
+ 0.575,
390
+ 0.595,
391
+ 0.629,
392
+ 0.676 48.2%,
393
+ 0.811,
394
+ 1 56.2%,
395
+ 0.918,
396
+ 0.86,
397
+ 0.825,
398
+ 0.814,
399
+ 0.825,
400
+ 0.86,
401
+ 0.918,
402
+ 1 77.2%,
403
+ 0.94 80.6%,
404
+ 0.925,
405
+ 0.92,
406
+ 0.925,
407
+ 0.94 87.5%,
408
+ 1 90.9%,
409
+ 0.974,
410
+ 0.965,
411
+ 0.974,
412
+ 1
413
+ );
414
+ --ease-bounce-5: linear(
415
+ 0,
416
+ 0.004,
417
+ 0.016 2.5%,
418
+ 0.063,
419
+ 0.141,
420
+ 0.25 10.1%,
421
+ 0.562,
422
+ 1 20.2%,
423
+ 0.783,
424
+ 0.627,
425
+ 0.534 30.9%,
426
+ 0.511,
427
+ 0.503,
428
+ 0.511,
429
+ 0.534 38%,
430
+ 0.627,
431
+ 0.782,
432
+ 1 48.7%,
433
+ 0.892,
434
+ 0.815,
435
+ 0.769 56.3%,
436
+ 0.757,
437
+ 0.753,
438
+ 0.757,
439
+ 0.769 61.3%,
440
+ 0.815,
441
+ 0.892,
442
+ 1 68.8%,
443
+ 0.908 72.4%,
444
+ 0.885,
445
+ 0.878,
446
+ 0.885,
447
+ 0.908 79.4%,
448
+ 1 83%,
449
+ 0.954 85.5%,
450
+ 0.943,
451
+ 0.939,
452
+ 0.943,
453
+ 0.954 90.5%,
454
+ 1 93%,
455
+ 0.977,
456
+ 0.97,
457
+ 0.977,
458
+ 1
459
+ );
460
+ --layer-1: 1;
461
+ --layer-2: 2;
462
+ --layer-3: 3;
463
+ --layer-4: 4;
464
+ --layer-5: 5;
465
+ --layer-important: 2147483647;
466
+ --shadow-color: 220 3% 15%;
467
+ --shadow-strength: 1%;
468
+ --inner-shadow-highlight: inset 0 -0.5px 0 0 #fff, inset 0 0.5px 0 0 rgba(0, 0, 0, 0.067);
469
+ --shadow-1: 0 1px 2px -1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
470
+ --shadow-2:
471
+ 0 3px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
472
+ 0 7px 14px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%));
473
+ --shadow-3:
474
+ 0 -1px 3px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),
475
+ 0 1px 2px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),
476
+ 0 2px 5px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
477
+ 0 4px 12px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
478
+ 0 12px 15px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
479
+ --shadow-4:
480
+ 0 -2px 5px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),
481
+ 0 1px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
482
+ 0 2px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
483
+ 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
484
+ 0 9px 9px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
485
+ 0 16px 16px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%));
486
+ --shadow-5:
487
+ 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),
488
+ 0 2px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
489
+ 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
490
+ 0 10px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
491
+ 0 20px 20px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
492
+ 0 40px 40px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
493
+ --shadow-6:
494
+ 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),
495
+ 0 3px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
496
+ 0 7px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
497
+ 0 12px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
498
+ 0 22px 18px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
499
+ 0 41px 33px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%)),
500
+ 0 100px 80px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
501
+ --inner-shadow-0: inset 0 0 0 1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
502
+ --inner-shadow-1:
503
+ inset 0 1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)), var(--inner-shadow-highlight);
504
+ --inner-shadow-2:
505
+ inset 0 1px 4px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)), var(--inner-shadow-highlight);
506
+ --inner-shadow-3:
507
+ inset 0 2px 8px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)), var(--inner-shadow-highlight);
508
+ --inner-shadow-4:
509
+ inset 0 2px 14px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)), var(--inner-shadow-highlight);
510
+ --ratio-square: 1;
511
+ --ratio-landscape: 4/3;
512
+ --ratio-portrait: 3/4;
513
+ --ratio-widescreen: 16/9;
514
+ --ratio-ultrawide: 18/5;
515
+ --ratio-golden: 1.618/1;
516
+ --gray-50: #f5f5f5;
517
+ --gray-100: #ededed;
518
+ --gray-200: #d6d6d6;
519
+ --gray-300: #bfbfbf;
520
+ --gray-400: #a1a1a1;
521
+ --gray-500: #7c7c7c;
522
+ --gray-600: #707070;
523
+ --gray-700: #616161;
524
+ --gray-800: #4f4f4f;
525
+ --gray-900: #383838;
526
+ --gray-950: #262626;
527
+ --stone-0: #f8fafb;
528
+ --stone-1: #f2f4f6;
529
+ --stone-2: #ebedef;
530
+ --stone-3: #e0e4e5;
531
+ --stone-4: #d1d6d8;
532
+ --stone-5: #b1b6b9;
533
+ --stone-6: #979b9d;
534
+ --stone-7: #7e8282;
535
+ --stone-8: #666968;
536
+ --stone-9: #50514f;
537
+ --stone-10: #3a3a37;
538
+ --stone-11: #252521;
539
+ --stone-12: #121210;
540
+ --primary-50: oklch(95.25% 0.017 21.81);
541
+ --primary-100: oklch(90.69% 0.035 26.54);
542
+ --primary-200: oklch(81.39% 0.075 26);
543
+ --primary-300: oklch(73.48% 0.111 26.91);
544
+ --primary-400: oklch(65.5% 0.154 28.65);
545
+ /*D73E2E*/
546
+ --primary-500: oklch(58.81% 0.192 29.85);
547
+ --primary-600: oklch(52.15% 0.173 30.2);
548
+ --primary-700: oklch(45.09% 0.147 30.04);
549
+ --primary-800: oklch(36.55% 0.116 29.93);
550
+ --primary-900: oklch(28.8% 0.086 29.43);
551
+ --primary-950: oklch(24.66% 0.071 29.5);
552
+ --pink-0: #fff0f6;
553
+ --pink-1: #ffdeeb;
554
+ --pink-2: #fcc2d7;
555
+ --pink-3: #faa2c1;
556
+ --pink-4: #f783ac;
557
+ --pink-5: #f06595;
558
+ --pink-6: #e64980;
559
+ --pink-7: #d6336c;
560
+ --pink-8: #c2255c;
561
+ --pink-9: #a61e4d;
562
+ --pink-10: #8c1941;
563
+ --pink-11: #731536;
564
+ --pink-12: #59102a;
565
+ --violet-0: #f3f0ff;
566
+ --violet-1: #e5dbff;
567
+ --violet-2: #d0bfff;
568
+ --violet-3: #b197fc;
569
+ --violet-4: #9775fa;
570
+ --violet-5: #845ef7;
571
+ --violet-6: #7950f2;
572
+ --violet-7: #7048e8;
573
+ --violet-8: #6741d9;
574
+ --violet-9: #5f3dc4;
575
+ --violet-10: #5235ab;
576
+ --violet-11: #462d91;
577
+ --violet-12: #3a2578;
578
+ --indigo-0: #edf2ff;
579
+ --indigo-1: #dbe4ff;
580
+ --indigo-2: #bac8ff;
581
+ --indigo-3: #91a7ff;
582
+ --indigo-4: #748ffc;
583
+ --indigo-5: #5c7cfa;
584
+ --indigo-6: #4c6ef5;
585
+ --indigo-7: #4263eb;
586
+ --indigo-8: #3b5bdb;
587
+ --indigo-9: #364fc7;
588
+ --indigo-10: #2f44ad;
589
+ --indigo-11: #283a94;
590
+ --indigo-12: #21307a;
591
+ --blue-0: #e7f5ff;
592
+ --blue-1: #d0ebff;
593
+ --blue-2: #a5d8ff;
594
+ --blue-3: #74c0fc;
595
+ --blue-4: #4dabf7;
596
+ --blue-5: #339af0;
597
+ --blue-6: #228be6;
598
+ --blue-7: #1c7ed6;
599
+ --blue-8: #1971c2;
600
+ --blue-9: #1864ab;
601
+ --blue-10: #145591;
602
+ --blue-11: #114678;
603
+ --blue-12: #0d375e;
604
+ --cyan-0: #e3fafc;
605
+ --cyan-1: #c5f6fa;
606
+ --cyan-2: #99e9f2;
607
+ --cyan-3: #66d9e8;
608
+ --cyan-4: #3bc9db;
609
+ --cyan-5: #22b8cf;
610
+ --cyan-6: #15aabf;
611
+ --cyan-7: #1098ad;
612
+ --cyan-8: #0c8599;
613
+ --cyan-9: #0b7285;
614
+ --cyan-10: #095c6b;
615
+ --cyan-11: #074652;
616
+ --cyan-12: #053038;
617
+ --green-50: #e8fdf6;
618
+ --green-100: #ccfaec;
619
+ --green-200: #86f3d2;
620
+ --green-300: #25eaaf;
621
+ --green-400: #14d198;
622
+ --green-500: #12b886;
623
+ --green-600: #10a77a;
624
+ --green-700: #0f956c;
625
+ --green-800: #0c7958;
626
+ --green-900: #08543d;
627
+ --green-950: #06412f;
628
+ --lime-0: #f4fce3;
629
+ --lime-1: #e9fac8;
630
+ --lime-2: #d8f5a2;
631
+ --lime-3: #c0eb75;
632
+ --lime-4: #a9e34b;
633
+ --lime-5: #94d82d;
634
+ --lime-6: #82c91e;
635
+ --lime-7: #74b816;
636
+ --lime-8: #66a80f;
637
+ --lime-9: #5c940d;
638
+ --lime-10: #4c7a0b;
639
+ --lime-11: #3c6109;
640
+ --lime-12: #2c4706;
641
+ --yellow-50: #fff9db;
642
+ --yellow-100: #fff3bf;
643
+ --yellow-200: #ffec99;
644
+ --yellow-300: #ffe066;
645
+ --yellow-400: #ffd43b;
646
+ --yellow-500: #fcc419;
647
+ --yellow-600: #fab005;
648
+ --yellow-700: #f59f00;
649
+ --yellow-800: #f08c00;
650
+ --yellow-900: #e67700;
651
+ --yellow-950: #b35c00;
652
+ --orange-0: #fff4e6;
653
+ --orange-1: #ffe8cc;
654
+ --orange-2: #ffd8a8;
655
+ --orange-3: #ffc078;
656
+ --orange-4: #ffa94d;
657
+ --orange-5: #ff922b;
658
+ --orange-6: #fd7e14;
659
+ --orange-7: #f76707;
660
+ --orange-8: #e8590c;
661
+ --orange-9: #d9480f;
662
+ --orange-10: #bf400d;
663
+ --orange-11: #99330b;
664
+ --orange-12: #802b09;
665
+ --choco-0: #fff8dc;
666
+ --choco-1: #fce1bc;
667
+ --choco-2: #f7ca9e;
668
+ --choco-3: #f1b280;
669
+ --choco-4: #e99b62;
670
+ --choco-5: #df8545;
671
+ --choco-6: #d46e25;
672
+ --choco-7: #bd5f1b;
673
+ --choco-8: #a45117;
674
+ --choco-9: #8a4513;
675
+ --choco-10: #703a13;
676
+ --choco-11: #572f12;
677
+ --choco-12: #3d210d;
678
+ --brown-0: #faf4eb;
679
+ --brown-1: #ede0d1;
680
+ --brown-2: #e0cab7;
681
+ --brown-3: #d3b79e;
682
+ --brown-4: #c5a285;
683
+ --brown-5: #b78f6d;
684
+ --brown-6: #a87c56;
685
+ --brown-7: #956b47;
686
+ --brown-8: #825b3a;
687
+ --brown-9: #6f4b2d;
688
+ --brown-10: #5e3a21;
689
+ --brown-11: #4e2b15;
690
+ --brown-12: #422412;
691
+ --sand-0: #f8fafb;
692
+ --sand-1: #e6e4dc;
693
+ --sand-2: #d5cfbd;
694
+ --sand-3: #c2b9a0;
695
+ --sand-4: #aea58c;
696
+ --sand-5: #9a9178;
697
+ --sand-6: #867c65;
698
+ --sand-7: #736a53;
699
+ --sand-8: #5f5746;
700
+ --sand-9: #4b4639;
701
+ --sand-10: #38352d;
702
+ --sand-11: #252521;
703
+ --sand-12: #121210;
704
+ --camo-0: #f9fbe7;
705
+ --camo-1: #e8ed9c;
706
+ --camo-2: #d2df4e;
707
+ --camo-3: #c2ce34;
708
+ --camo-4: #b5bb2e;
709
+ --camo-5: #a7a827;
710
+ --camo-6: #999621;
711
+ --camo-7: #8c851c;
712
+ --camo-8: #7e7416;
713
+ --camo-9: #6d6414;
714
+ --camo-10: #5d5411;
715
+ --camo-11: #4d460e;
716
+ --camo-12: #36300a;
717
+ --jungle-0: #ecfeb0;
718
+ --jungle-1: #def39a;
719
+ --jungle-2: #d0e884;
720
+ --jungle-3: #c2dd6e;
721
+ --jungle-4: #b5d15b;
722
+ --jungle-5: #a8c648;
723
+ --jungle-6: #9bbb36;
724
+ --jungle-7: #8fb024;
725
+ --jungle-8: #84a513;
726
+ --jungle-9: #7a9908;
727
+ --jungle-10: #658006;
728
+ --jungle-11: #516605;
729
+ --jungle-12: #3d4d04;
730
+ --gradient-1: linear-gradient(
731
+ to bottom right,
732
+ #1f005c,
733
+ #5b0060,
734
+ #870160,
735
+ #ac255e,
736
+ #ca485c,
737
+ #e16b5c,
738
+ #f39060,
739
+ #ffb56b
740
+ );
741
+ --gradient-2: linear-gradient(to bottom right, #48005c, #8300e2, #a269ff);
742
+ --gradient-3:
743
+ radial-gradient(circle at top right, #0ff, rgba(0, 255, 255, 0)),
744
+ radial-gradient(circle at bottom left, #ff1492, rgba(255, 20, 146, 0));
745
+ --gradient-4: linear-gradient(to bottom right, #00f5a0, #00d9f5);
746
+ --gradient-5: conic-gradient(from -270deg at 75% 110%, #f0f, #fffaf0);
747
+ --gradient-6: conic-gradient(from -90deg at top left, #000, #fff);
748
+ --gradient-7: linear-gradient(to bottom right, #72c6ef, #004e8f);
749
+ --gradient-8: conic-gradient(from 90deg at 50% 0%, #111, 50%, #222, #111);
750
+ --gradient-9: conic-gradient(from 0.5turn at bottom center, #add8e6, #fff);
751
+ --gradient-10: conic-gradient(
752
+ from 90deg at 40% -25%,
753
+ gold,
754
+ #f79d03,
755
+ #ee6907,
756
+ #e6390a,
757
+ #de0d0d,
758
+ #d61039,
759
+ #cf1261,
760
+ #c71585,
761
+ #cf1261,
762
+ #d61039,
763
+ #de0d0d,
764
+ #ee6907,
765
+ #f79d03,
766
+ gold,
767
+ gold,
768
+ gold
769
+ );
770
+ --gradient-11: conic-gradient(at bottom left, #ff1493, cyan);
771
+ --gradient-12: conic-gradient(from 90deg at 25% -10%, #ff4500, #d3f340, #7bee85, #afeeee, #7bee85);
772
+ --gradient-13: radial-gradient(circle at 50% 200%, #000142, #3b0083, #b300c3, #ff059f, #ff4661, #ffad86, #fff3c7);
773
+ --gradient-14: conic-gradient(at top right, lime, cyan);
774
+ --gradient-15: linear-gradient(to bottom right, #c7d2fe, #fecaca, #fef3c7);
775
+ --gradient-16: radial-gradient(circle at 50% -250%, #374151, #111827, #000);
776
+ --gradient-17: conic-gradient(from -90deg at 50% -25%, blue, #8a2be2);
777
+ --gradient-18:
778
+ linear-gradient(0deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0) 75%),
779
+ linear-gradient(60deg, rgba(255, 255, 0, 0.8), rgba(255, 255, 0, 0) 75%),
780
+ linear-gradient(120deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0) 75%),
781
+ linear-gradient(180deg, rgba(0, 255, 255, 0.8), rgba(0, 255, 255, 0) 75%),
782
+ linear-gradient(240deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 75%),
783
+ linear-gradient(300deg, rgba(255, 0, 255, 0.8), rgba(255, 0, 255, 0) 75%);
784
+ --gradient-19: linear-gradient(to bottom right, #ffe259, #ffa751);
785
+ --gradient-20: conic-gradient(from -135deg at -10% center, red, #ff7715, #ff522a, #ff3f47, #ff5482, #ff69b4);
786
+ --gradient-21: conic-gradient(from -90deg at 25% 115%, red, #f06, #f0c, #c0f, #60f, #00f, #00f, #00f, #00f);
787
+ --gradient-22: linear-gradient(to bottom right, #acb6e5, #86fde8);
788
+ --gradient-23: linear-gradient(to bottom right, #536976, #292e49);
789
+ --gradient-24: conic-gradient(from 0.5turn at 0% 0%, #00c476, 10%, #82b0ff, 90%, #00c476);
790
+ --gradient-25: conic-gradient(at 125% 50%, #b78cf7, #ff7c94, #ffcf0d, #ff7c94, #b78cf7);
791
+ --gradient-26: linear-gradient(to bottom right, #9796f0, #fbc7d4);
792
+ --gradient-27: conic-gradient(from 0.5turn at bottom left, #ff1493, #639);
793
+ --gradient-28: conic-gradient(from -90deg at 50% 105%, #fff, orchid);
794
+ --gradient-29:
795
+ radial-gradient(circle at top right, #bfb3ff, rgba(191, 179, 255, 0)),
796
+ radial-gradient(circle at bottom left, #86acf9, rgba(134, 172, 249, 0));
797
+ --gradient-30:
798
+ radial-gradient(circle at top right, #00ff80, rgba(0, 255, 128, 0)),
799
+ radial-gradient(circle at bottom left, #adffd6, rgba(173, 255, 214, 0));
800
+ --noise-1: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.005' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
801
+ --noise-2: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.05' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
802
+ --noise-3: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.25' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
803
+ --noise-4: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
804
+ --noise-5: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
805
+ --noise-filter-1: contrast(300%) brightness(100%);
806
+ --noise-filter-2: contrast(200%) brightness(150%);
807
+ --noise-filter-3: contrast(200%) brightness(250%);
808
+ --noise-filter-4: contrast(200%) brightness(500%);
809
+ --noise-filter-5: contrast(200%) brightness(1000%);
810
+ --animation-fade-in: fade-in 0.5s var(--ease-3);
811
+ --animation-fade-in-bloom: fade-in-bloom 2s var(--ease-3);
812
+ --animation-fade-out: fade-out 0.5s var(--ease-3);
813
+ --animation-fade-out-bloom: fade-out-bloom 2s var(--ease-3);
814
+ --animation-scale-up: scale-up 0.5s var(--ease-3);
815
+ --animation-scale-down: scale-down 0.5s var(--ease-3);
816
+ --animation-slide-out-up: slide-out-up 0.5s var(--ease-3);
817
+ --animation-slide-out-down: slide-out-down 0.5s var(--ease-3);
818
+ --animation-slide-out-right: slide-out-right 0.5s var(--ease-3);
819
+ --animation-slide-out-left: slide-out-left 0.5s var(--ease-3);
820
+ --animation-slide-in-up: slide-in-up 0.5s var(--ease-3);
821
+ --animation-slide-in-down: slide-in-down 0.5s var(--ease-3);
822
+ --animation-slide-in-right: slide-in-right 0.5s var(--ease-3);
823
+ --animation-slide-in-left: slide-in-left 0.5s var(--ease-3);
824
+ --animation-shake-x: shake-x 0.75s var(--ease-out-5);
825
+ --animation-shake-y: shake-y 0.75s var(--ease-out-5);
826
+ --animation-spin: spin 2s linear infinite;
827
+ --animation-ping: ping 5s var(--ease-out-3) infinite;
828
+ --animation-blink: blink 1s var(--ease-out-3) infinite;
829
+ --animation-float: float 3s var(--ease-in-out-3) infinite;
830
+ --animation-bounce: bounce 2s var(--ease-squish-2) infinite;
831
+ --animation-pulse: pulse 2s var(--ease-out-3) infinite;
832
+ --borderWidthThin: 1px;
833
+ --borderWidthThick: 2px;
834
+ --radius-1: 2px;
835
+ --radius-2: 4px;
836
+ --radius-3: 1rem;
837
+ --radius-4: 2rem;
838
+ --radius-5: 4rem;
839
+ --radius-6: 8rem;
840
+ --radius-round: 1e5px;
841
+ --radius-blob-1: 30% 70% 70% 30%/53% 30% 70% 47%;
842
+ --radius-blob-2: 53% 47% 34% 66%/63% 46% 54% 37%;
843
+ --radius-blob-3: 37% 63% 56% 44%/49% 56% 44% 51%;
844
+ --radius-blob-4: 63% 37% 37% 63%/43% 37% 63% 57%;
845
+ --radius-blob-5: 49% 51% 48% 52%/57% 44% 56% 43%;
846
+ --radius-conditional-1: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-1));
847
+ --radius-conditional-2: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-2));
848
+ --radius-conditional-3: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-3));
849
+ --radius-conditional-4: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-4));
850
+ --radius-conditional-5: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-5));
851
+ --radius-conditional-6: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-6));
852
+ }
853
+
854
+ @media (prefers-color-scheme: dark) {
855
+ :where(html) {
856
+ --shadow-color: 220 40% 2%;
857
+ --shadow-strength: 25%;
858
+ --inner-shadow-highlight: inset 0 -0.5px 0 0 hsla(0, 0%, 100%, 0.067), inset 0 0.5px 0 0 rgba(0, 0, 0, 0.467);
859
+ }
860
+ }
861
+
862
+ @keyframes fade-in {
863
+ to {
864
+ opacity: 1;
865
+ }
866
+ }
867
+
868
+ @keyframes fade-in-bloom {
869
+ 0% {
870
+ filter: brightness(1) blur(20px);
871
+ opacity: 0;
872
+ }
873
+
874
+ 10% {
875
+ filter: brightness(2) blur(10px);
876
+ opacity: 1;
877
+ }
878
+
879
+ to {
880
+ filter: brightness(1) blur(0);
881
+ opacity: 1;
882
+ }
883
+ }
884
+
885
+ @keyframes fade-out {
886
+ to {
887
+ opacity: 0;
888
+ }
889
+ }
890
+
891
+ @keyframes fade-out-bloom {
892
+ to {
893
+ filter: brightness(1) blur(20px);
894
+ opacity: 0;
895
+ }
896
+
897
+ 10% {
898
+ filter: brightness(2) blur(10px);
899
+ opacity: 1;
900
+ }
901
+
902
+ 0% {
903
+ filter: brightness(1) blur(0);
904
+ opacity: 1;
905
+ }
906
+ }
907
+
908
+ @keyframes scale-up {
909
+ to {
910
+ transform: scale(1.25);
911
+ }
912
+ }
913
+
914
+ @keyframes scale-down {
915
+ to {
916
+ transform: scale(0.75);
917
+ }
918
+ }
919
+
920
+ @keyframes slide-out-up {
921
+ to {
922
+ transform: translateY(-100%);
923
+ }
924
+ }
925
+
926
+ @keyframes slide-out-down {
927
+ to {
928
+ transform: translateY(100%);
929
+ }
930
+ }
931
+
932
+ @keyframes slide-out-right {
933
+ to {
934
+ transform: translateX(100%);
935
+ }
936
+ }
937
+
938
+ @keyframes slide-out-left {
939
+ to {
940
+ transform: translateX(-100%);
941
+ }
942
+ }
943
+
944
+ @keyframes slide-in-up {
945
+ 0% {
946
+ transform: translateY(100%);
947
+ }
948
+ }
949
+
950
+ @keyframes slide-in-down {
951
+ 0% {
952
+ transform: translateY(-100%);
953
+ }
954
+ }
955
+
956
+ @keyframes slide-in-right {
957
+ 0% {
958
+ transform: translateX(-100%);
959
+ }
960
+ }
961
+
962
+ @keyframes slide-in-left {
963
+ 0% {
964
+ transform: translateX(100%);
965
+ }
966
+ }
967
+
968
+ @keyframes shake-x {
969
+ 0%,
970
+ to {
971
+ transform: translateX(0);
972
+ }
973
+
974
+ 20% {
975
+ transform: translateX(-5%);
976
+ }
977
+
978
+ 40% {
979
+ transform: translateX(5%);
980
+ }
981
+
982
+ 60% {
983
+ transform: translateX(-5%);
984
+ }
985
+
986
+ 80% {
987
+ transform: translateX(5%);
988
+ }
989
+ }
990
+
991
+ @keyframes shake-y {
992
+ 0%,
993
+ to {
994
+ transform: translateY(0);
995
+ }
996
+
997
+ 20% {
998
+ transform: translateY(-5%);
999
+ }
1000
+
1001
+ 40% {
1002
+ transform: translateY(5%);
1003
+ }
1004
+
1005
+ 60% {
1006
+ transform: translateY(-5%);
1007
+ }
1008
+
1009
+ 80% {
1010
+ transform: translateY(5%);
1011
+ }
1012
+ }
1013
+
1014
+ @keyframes spin {
1015
+ to {
1016
+ transform: rotate(1turn);
1017
+ }
1018
+ }
1019
+
1020
+ @keyframes ping {
1021
+ 90%,
1022
+ to {
1023
+ opacity: 0;
1024
+ transform: scale(2);
1025
+ }
1026
+ }
1027
+
1028
+ @keyframes blink {
1029
+ 0%,
1030
+ to {
1031
+ opacity: 1;
1032
+ }
1033
+
1034
+ 50% {
1035
+ opacity: 0.5;
1036
+ }
1037
+ }
1038
+
1039
+ @keyframes float {
1040
+ 50% {
1041
+ transform: translateY(-25%);
1042
+ }
1043
+ }
1044
+
1045
+ @keyframes bounce {
1046
+ 25% {
1047
+ transform: translateY(-20%);
1048
+ }
1049
+
1050
+ 40% {
1051
+ transform: translateY(-3%);
1052
+ }
1053
+
1054
+ 0%,
1055
+ 60%,
1056
+ to {
1057
+ transform: translateY(0);
1058
+ }
1059
+ }
1060
+
1061
+ @keyframes pulse {
1062
+ 50% {
1063
+ transform: scale(0.9);
1064
+ }
1065
+ }
1066
+
1067
+ @media (prefers-color-scheme: dark) {
1068
+ @keyframes fade-in-bloom {
1069
+ 0% {
1070
+ filter: brightness(1) blur(20px);
1071
+ opacity: 0;
1072
+ }
1073
+
1074
+ 10% {
1075
+ filter: brightness(0.5) blur(10px);
1076
+ opacity: 1;
1077
+ }
1078
+
1079
+ to {
1080
+ filter: brightness(1) blur(0);
1081
+ opacity: 1;
1082
+ }
1083
+ }
1084
+ }
1085
+
1086
+ @media (prefers-color-scheme: dark) {
1087
+ @keyframes fade-out-bloom {
1088
+ to {
1089
+ filter: brightness(1) blur(20px);
1090
+ opacity: 0;
1091
+ }
1092
+
1093
+ 10% {
1094
+ filter: brightness(0.5) blur(10px);
1095
+ opacity: 1;
1096
+ }
1097
+
1098
+ 0% {
1099
+ filter: brightness(1) blur(0);
1100
+ opacity: 1;
1101
+ }
1102
+ }
1103
+ }