@turnipxenon/pineapple 4.5.1 → 5.0.0-alpha.10

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 (523) hide show
  1. package/dist/api/GetLatestBlogs.d.ts +1 -0
  2. package/dist/api/GetLatestBlogs.d.ts.map +1 -0
  3. package/dist/api/GetLatestBlogs.js +13 -4
  4. package/dist/api/index.d.ts +1 -0
  5. package/dist/api/index.d.ts.map +1 -0
  6. package/dist/assets/icons/icon-chat.svg +1 -0
  7. package/dist/assets/icons/icon-menu.svg +1 -0
  8. package/dist/assets/icons/icon-visibility.svg +1 -0
  9. package/dist/components/dialog_manager/DialogManager.d.ts +2 -0
  10. package/dist/components/dialog_manager/DialogManager.d.ts.map +1 -0
  11. package/dist/components/dialog_manager/DialogManager.js +235 -218
  12. package/dist/components/dialog_manager/DialogManagerStore.d.ts +5 -1
  13. package/dist/components/dialog_manager/DialogManagerStore.d.ts.map +1 -0
  14. package/dist/components/dialog_manager/DialogManagerStore.js +5 -1
  15. package/dist/components/dialog_manager/DialogProcessor.d.ts +1 -0
  16. package/dist/components/dialog_manager/DialogProcessor.d.ts.map +1 -0
  17. package/dist/components/dialog_manager/DialogProcessor.js +24 -26
  18. package/dist/components/dialog_manager/DialogUtils.d.ts +1 -0
  19. package/dist/components/dialog_manager/DialogUtils.d.ts.map +1 -0
  20. package/dist/components/dialog_manager/DialogUtils.js +6 -4
  21. package/dist/components/dialog_manager/IDialogManager.d.ts +1 -0
  22. package/dist/components/dialog_manager/IDialogManager.d.ts.map +1 -0
  23. package/dist/components/dialog_manager/behavior_tree/core/BTreeUtils.d.ts +1 -0
  24. package/dist/components/dialog_manager/behavior_tree/core/BTreeUtils.d.ts.map +1 -0
  25. package/dist/components/dialog_manager/behavior_tree/core/BTreeUtils.js +32 -30
  26. package/dist/components/dialog_manager/behavior_tree/core/BaseBehaviorResult.d.ts +1 -0
  27. package/dist/components/dialog_manager/behavior_tree/core/BaseBehaviorResult.d.ts.map +1 -0
  28. package/dist/components/dialog_manager/behavior_tree/core/BehaviorNode.d.ts +1 -0
  29. package/dist/components/dialog_manager/behavior_tree/core/BehaviorNode.d.ts.map +1 -0
  30. package/dist/components/dialog_manager/behavior_tree/core/BehaviorStatus.d.ts +1 -0
  31. package/dist/components/dialog_manager/behavior_tree/core/BehaviorStatus.d.ts.map +1 -0
  32. package/dist/components/dialog_manager/behavior_tree/core/SelectorNode.d.ts +1 -0
  33. package/dist/components/dialog_manager/behavior_tree/core/SelectorNode.d.ts.map +1 -0
  34. package/dist/components/dialog_manager/behavior_tree/core/SelectorNode.js +0 -1
  35. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionArguments.d.ts +1 -0
  36. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionArguments.d.ts.map +1 -0
  37. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionBehaviorNode.d.ts +1 -0
  38. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionBehaviorNode.d.ts.map +1 -0
  39. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionEvaluator.d.ts +1 -0
  40. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionEvaluator.d.ts.map +1 -0
  41. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionEvaluator.js +188 -186
  42. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionResult.d.ts +1 -0
  43. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionResult.d.ts.map +1 -0
  44. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionSelectorNode.d.ts +1 -0
  45. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionSelectorNode.d.ts.map +1 -0
  46. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionSelectorNode.js +8 -8
  47. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionState.d.ts +1 -0
  48. package/dist/components/dialog_manager/behavior_tree/expression/ExpressionState.d.ts.map +1 -0
  49. package/dist/components/dialog_manager/behavior_tree/expression/OperandNode.d.ts +1 -0
  50. package/dist/components/dialog_manager/behavior_tree/expression/OperandNode.d.ts.map +1 -0
  51. package/dist/components/dialog_manager/behavior_tree/expression/OperatorNode.d.ts +1 -0
  52. package/dist/components/dialog_manager/behavior_tree/expression/OperatorNode.d.ts.map +1 -0
  53. package/dist/components/dialog_manager/behavior_tree/expression/commands/CommandExpressionNode.d.ts +1 -0
  54. package/dist/components/dialog_manager/behavior_tree/expression/commands/CommandExpressionNode.d.ts.map +1 -0
  55. package/dist/components/dialog_manager/behavior_tree/expression/commands/CommandLogicNode.d.ts +1 -0
  56. package/dist/components/dialog_manager/behavior_tree/expression/commands/CommandLogicNode.d.ts.map +1 -0
  57. package/dist/components/dialog_manager/behavior_tree/expression/commands/CommandMap.d.ts +1 -0
  58. package/dist/components/dialog_manager/behavior_tree/expression/commands/CommandMap.d.ts.map +1 -0
  59. package/dist/components/dialog_manager/behavior_tree/expression/commands/CommandMap.js +7 -7
  60. package/dist/components/dialog_manager/behavior_tree/expression/commands/RandomRangeCommand.d.ts +1 -0
  61. package/dist/components/dialog_manager/behavior_tree/expression/commands/RandomRangeCommand.d.ts.map +1 -0
  62. package/dist/components/dialog_manager/behavior_tree/expression/commands/RandomRangeCommand.js +20 -17
  63. package/dist/components/dialog_manager/behavior_tree/expression/commands/VisitedCommand.d.ts +1 -0
  64. package/dist/components/dialog_manager/behavior_tree/expression/commands/VisitedCommand.d.ts.map +1 -0
  65. package/dist/components/dialog_manager/behavior_tree/expression/commands/VisitedCommand.js +20 -17
  66. package/dist/components/dialog_manager/behavior_tree/expression/commands/VisitedCountCommand.d.ts +1 -0
  67. package/dist/components/dialog_manager/behavior_tree/expression/commands/VisitedCountCommand.d.ts.map +1 -0
  68. package/dist/components/dialog_manager/behavior_tree/expression/commands/VisitedCountCommand.js +18 -15
  69. package/dist/components/dialog_manager/behavior_tree/expression/operators/AndOperator.d.ts +1 -0
  70. package/dist/components/dialog_manager/behavior_tree/expression/operators/AndOperator.d.ts.map +1 -0
  71. package/dist/components/dialog_manager/behavior_tree/expression/operators/AndOperator.js +14 -11
  72. package/dist/components/dialog_manager/behavior_tree/expression/operators/EqualityOperator.d.ts +1 -0
  73. package/dist/components/dialog_manager/behavior_tree/expression/operators/EqualityOperator.d.ts.map +1 -0
  74. package/dist/components/dialog_manager/behavior_tree/expression/operators/EqualityOperator.js +14 -11
  75. package/dist/components/dialog_manager/behavior_tree/expression/operators/GreaterThanEqualOperator.d.ts +1 -0
  76. package/dist/components/dialog_manager/behavior_tree/expression/operators/GreaterThanEqualOperator.d.ts.map +1 -0
  77. package/dist/components/dialog_manager/behavior_tree/expression/operators/GreaterThanEqualOperator.js +12 -9
  78. package/dist/components/dialog_manager/behavior_tree/expression/operators/GreaterThanOperator.d.ts +1 -0
  79. package/dist/components/dialog_manager/behavior_tree/expression/operators/GreaterThanOperator.d.ts.map +1 -0
  80. package/dist/components/dialog_manager/behavior_tree/expression/operators/GreaterThanOperator.js +12 -9
  81. package/dist/components/dialog_manager/behavior_tree/expression/operators/InequalityOperator.d.ts +1 -0
  82. package/dist/components/dialog_manager/behavior_tree/expression/operators/InequalityOperator.d.ts.map +1 -0
  83. package/dist/components/dialog_manager/behavior_tree/expression/operators/InequalityOperator.js +12 -9
  84. package/dist/components/dialog_manager/behavior_tree/expression/operators/LessThanEqualOperator.d.ts +1 -0
  85. package/dist/components/dialog_manager/behavior_tree/expression/operators/LessThanEqualOperator.d.ts.map +1 -0
  86. package/dist/components/dialog_manager/behavior_tree/expression/operators/LessThanEqualOperator.js +12 -9
  87. package/dist/components/dialog_manager/behavior_tree/expression/operators/LessThanOperator.d.ts +1 -0
  88. package/dist/components/dialog_manager/behavior_tree/expression/operators/LessThanOperator.d.ts.map +1 -0
  89. package/dist/components/dialog_manager/behavior_tree/expression/operators/LessThanOperator.js +12 -9
  90. package/dist/components/dialog_manager/behavior_tree/expression/operators/NegationOperator.d.ts +1 -0
  91. package/dist/components/dialog_manager/behavior_tree/expression/operators/NegationOperator.d.ts.map +1 -0
  92. package/dist/components/dialog_manager/behavior_tree/expression/operators/NegationOperator.js +12 -9
  93. package/dist/components/dialog_manager/behavior_tree/expression/operators/OperatorLogicNode.d.ts +1 -0
  94. package/dist/components/dialog_manager/behavior_tree/expression/operators/OperatorLogicNode.d.ts.map +1 -0
  95. package/dist/components/dialog_manager/behavior_tree/expression/operators/OperatorMap.d.ts +1 -0
  96. package/dist/components/dialog_manager/behavior_tree/expression/operators/OperatorMap.d.ts.map +1 -0
  97. package/dist/components/dialog_manager/behavior_tree/expression/operators/OperatorMap.js +7 -7
  98. package/dist/components/dialog_manager/behavior_tree/expression/operators/OrOperator.d.ts +1 -0
  99. package/dist/components/dialog_manager/behavior_tree/expression/operators/OrOperator.d.ts.map +1 -0
  100. package/dist/components/dialog_manager/behavior_tree/expression/operators/OrOperator.js +12 -9
  101. package/dist/components/dialog_manager/behavior_tree/expression/operators/XorOperator.d.ts +1 -0
  102. package/dist/components/dialog_manager/behavior_tree/expression/operators/XorOperator.d.ts.map +1 -0
  103. package/dist/components/dialog_manager/behavior_tree/expression/operators/XorOperator.js +16 -13
  104. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/DivisionOperator.d.ts +1 -0
  105. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/DivisionOperator.d.ts.map +1 -0
  106. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/DivisionOperator.js +14 -11
  107. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/MinusOperator.d.ts +1 -0
  108. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/MinusOperator.d.ts.map +1 -0
  109. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/MinusOperator.js +14 -11
  110. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/MultiplicationOperator.d.ts +1 -0
  111. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/MultiplicationOperator.d.ts.map +1 -0
  112. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/MultiplicationOperator.js +12 -9
  113. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/PlusOperator.d.ts +1 -0
  114. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/PlusOperator.d.ts.map +1 -0
  115. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/PlusOperator.js +14 -11
  116. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/RemainderDivisionOperator.d.ts +1 -0
  117. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/RemainderDivisionOperator.d.ts.map +1 -0
  118. package/dist/components/dialog_manager/behavior_tree/expression/operators/arithmetic/RemainderDivisionOperator.js +14 -11
  119. package/dist/components/dialog_manager/behavior_tree/line_core/LineBehaviorNode.d.ts +1 -0
  120. package/dist/components/dialog_manager/behavior_tree/line_core/LineBehaviorNode.d.ts.map +1 -0
  121. package/dist/components/dialog_manager/behavior_tree/line_core/LineBehaviorResult.d.ts +1 -0
  122. package/dist/components/dialog_manager/behavior_tree/line_core/LineBehaviorResult.d.ts.map +1 -0
  123. package/dist/components/dialog_manager/behavior_tree/line_core/LineNodeArguments.d.ts +1 -0
  124. package/dist/components/dialog_manager/behavior_tree/line_core/LineNodeArguments.d.ts.map +1 -0
  125. package/dist/components/dialog_manager/behavior_tree/line_core/LineSelectorNode.d.ts +1 -0
  126. package/dist/components/dialog_manager/behavior_tree/line_core/LineSelectorNode.d.ts.map +1 -0
  127. package/dist/components/dialog_manager/behavior_tree/line_core/LineSelectorNode.js +7 -7
  128. package/dist/components/dialog_manager/behavior_tree/line_processors/BehaviorState.d.ts +1 -0
  129. package/dist/components/dialog_manager/behavior_tree/line_processors/BehaviorState.d.ts.map +1 -0
  130. package/dist/components/dialog_manager/behavior_tree/line_processors/BehaviorState.js +4 -2
  131. package/dist/components/dialog_manager/behavior_tree/line_processors/ElseIfNode.d.ts +1 -0
  132. package/dist/components/dialog_manager/behavior_tree/line_processors/ElseIfNode.d.ts.map +1 -0
  133. package/dist/components/dialog_manager/behavior_tree/line_processors/ElseNode.d.ts +1 -0
  134. package/dist/components/dialog_manager/behavior_tree/line_processors/ElseNode.d.ts.map +1 -0
  135. package/dist/components/dialog_manager/behavior_tree/line_processors/EndIfNode.d.ts +1 -0
  136. package/dist/components/dialog_manager/behavior_tree/line_processors/EndIfNode.d.ts.map +1 -0
  137. package/dist/components/dialog_manager/behavior_tree/line_processors/IfMode.d.ts +1 -0
  138. package/dist/components/dialog_manager/behavior_tree/line_processors/IfMode.d.ts.map +1 -0
  139. package/dist/components/dialog_manager/behavior_tree/line_processors/IfNode.d.ts +1 -0
  140. package/dist/components/dialog_manager/behavior_tree/line_processors/IfNode.d.ts.map +1 -0
  141. package/dist/components/dialog_manager/behavior_tree/line_processors/IgnoreGuardNode.d.ts +1 -0
  142. package/dist/components/dialog_manager/behavior_tree/line_processors/IgnoreGuardNode.d.ts.map +1 -0
  143. package/dist/components/dialog_manager/behavior_tree/line_processors/IgnoreJumpNode.d.ts +1 -0
  144. package/dist/components/dialog_manager/behavior_tree/line_processors/IgnoreJumpNode.d.ts.map +1 -0
  145. package/dist/components/dialog_manager/behavior_tree/line_processors/LineCommentNode.d.ts +1 -0
  146. package/dist/components/dialog_manager/behavior_tree/line_processors/LineCommentNode.d.ts.map +1 -0
  147. package/dist/components/dialog_manager/behavior_tree/line_processors/NormalLineProcessorNode.d.ts +1 -0
  148. package/dist/components/dialog_manager/behavior_tree/line_processors/NormalLineProcessorNode.d.ts.map +1 -0
  149. package/dist/components/dialog_manager/behavior_tree/line_processors/SetVariableNode.d.ts +1 -0
  150. package/dist/components/dialog_manager/behavior_tree/line_processors/SetVariableNode.d.ts.map +1 -0
  151. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/DeclareCommand.d.ts +1 -0
  152. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/DeclareCommand.d.ts.map +1 -0
  153. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/DeclareCommand.js +3 -1
  154. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/JumpCommand.d.ts +1 -0
  155. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/JumpCommand.d.ts.map +1 -0
  156. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/JumpCommand.js +1 -2
  157. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/UnvisitCommand.d.ts +1 -0
  158. package/dist/components/dialog_manager/behavior_tree/line_processors/commands/UnvisitCommand.d.ts.map +1 -0
  159. package/dist/components/reveal-info/RevealInfo.svelte +86 -0
  160. package/dist/components/reveal-info/RevealInfo.svelte.d.ts +13 -0
  161. package/dist/components/reveal-info/RevealInfo.svelte.d.ts.map +1 -0
  162. package/dist/components/reveal-info/RevealInfoCollection.d.ts +6 -0
  163. package/dist/components/reveal-info/RevealInfoCollection.d.ts.map +1 -0
  164. package/dist/components/reveal-info/RevealInfoRemoteQuery.d.ts +10 -0
  165. package/dist/components/reveal-info/RevealInfoRemoteQuery.d.ts.map +1 -0
  166. package/dist/components/reveal-info/RevealInfoRemoteQuery.js +1 -0
  167. package/dist/components/reveal-info/RevealInfoRune.svelte.d.ts +6 -0
  168. package/dist/components/reveal-info/RevealInfoRune.svelte.d.ts.map +1 -0
  169. package/dist/components/reveal-info/RevealInfoRune.svelte.js +13 -0
  170. package/dist/consts.d.ts +1 -0
  171. package/dist/consts.d.ts.map +1 -0
  172. package/dist/external/paraglide/messages/_index.d.ts +1 -0
  173. package/dist/external/paraglide/messages/_index.d.ts.map +1 -0
  174. package/dist/external/paraglide/messages/_index.js +3 -5
  175. package/dist/external/paraglide/messages/en.d.ts +1 -0
  176. package/dist/external/paraglide/messages/en.d.ts.map +1 -0
  177. package/dist/external/paraglide/messages/en.js +1 -1
  178. package/dist/external/paraglide/messages/fr.d.ts +1 -0
  179. package/dist/external/paraglide/messages/fr.d.ts.map +1 -0
  180. package/dist/external/paraglide/messages/fr.js +1 -1
  181. package/dist/external/paraglide/messages/tl.d.ts +1 -0
  182. package/dist/external/paraglide/messages/tl.d.ts.map +1 -0
  183. package/dist/external/paraglide/messages/tl.js +1 -1
  184. package/dist/external/paraglide/messages.d.ts +1 -0
  185. package/dist/external/paraglide/messages.d.ts.map +1 -0
  186. package/dist/external/paraglide/messages.js +1 -1
  187. package/dist/external/paraglide/registry.d.ts +1 -0
  188. package/dist/external/paraglide/registry.d.ts.map +1 -0
  189. package/dist/external/paraglide/registry.js +1 -1
  190. package/dist/external/paraglide/runtime.d.ts +190 -8
  191. package/dist/external/paraglide/runtime.d.ts.map +1 -0
  192. package/dist/external/paraglide/runtime.js +426 -90
  193. package/dist/external/paraglide/server.d.ts +5 -2
  194. package/dist/external/paraglide/server.d.ts.map +1 -0
  195. package/dist/external/paraglide/server.js +21 -20
  196. package/dist/index.d.ts +2 -1
  197. package/dist/index.d.ts.map +1 -0
  198. package/dist/index.js +1 -1
  199. package/dist/modules/overrideable_meta/OverridableMeta.svelte +1 -2
  200. package/dist/modules/overrideable_meta/OverridableMeta.svelte.d.ts +1 -0
  201. package/dist/modules/overrideable_meta/OverridableMeta.svelte.d.ts.map +1 -0
  202. package/dist/modules/overrideable_meta/OverridableMetaProps.d.ts +1 -0
  203. package/dist/modules/overrideable_meta/OverridableMetaProps.d.ts.map +1 -0
  204. package/dist/modules/overrideable_meta/index.d.ts +1 -0
  205. package/dist/modules/overrideable_meta/index.d.ts.map +1 -0
  206. package/dist/modules/parsnip/ParsnipBlockChildren.svelte.d.ts +1 -0
  207. package/dist/modules/parsnip/ParsnipBlockChildren.svelte.d.ts.map +1 -0
  208. package/dist/modules/parsnip/ParsnipEmbedWikilink.svelte.d.ts +1 -0
  209. package/dist/modules/parsnip/ParsnipEmbedWikilink.svelte.d.ts.map +1 -0
  210. package/dist/modules/parsnip/ParsnipEntry.d.ts +1 -0
  211. package/dist/modules/parsnip/ParsnipEntry.d.ts.map +1 -0
  212. package/dist/modules/parsnip/ParsnipHeading.svelte.d.ts +1 -0
  213. package/dist/modules/parsnip/ParsnipHeading.svelte.d.ts.map +1 -0
  214. package/dist/modules/parsnip/ParsnipList.svelte.d.ts +1 -0
  215. package/dist/modules/parsnip/ParsnipList.svelte.d.ts.map +1 -0
  216. package/dist/modules/parsnip/ParsnipOverall.d.ts +1 -0
  217. package/dist/modules/parsnip/ParsnipOverall.d.ts.map +1 -0
  218. package/dist/modules/parsnip/ParsnipParagraph.svelte +10 -10
  219. package/dist/modules/parsnip/ParsnipParagraph.svelte.d.ts +1 -0
  220. package/dist/modules/parsnip/ParsnipParagraph.svelte.d.ts.map +1 -0
  221. package/dist/modules/parsnip/ParsnipPhrasingChildren.svelte +30 -30
  222. package/dist/modules/parsnip/ParsnipPhrasingChildren.svelte.d.ts +1 -0
  223. package/dist/modules/parsnip/ParsnipPhrasingChildren.svelte.d.ts.map +1 -0
  224. package/dist/modules/parsnip/ParsnipWikilink.svelte.d.ts +1 -0
  225. package/dist/modules/parsnip/ParsnipWikilink.svelte.d.ts.map +1 -0
  226. package/dist/modules/parsnip/index.d.ts +1 -0
  227. package/dist/modules/parsnip/index.d.ts.map +1 -0
  228. package/dist/modules/parsnip/route-util/ParsnipBlog.svelte.d.ts +1 -0
  229. package/dist/modules/parsnip/route-util/ParsnipBlog.svelte.d.ts.map +1 -0
  230. package/dist/modules/parsnip/route-util/getSlugEntries.d.ts +1 -0
  231. package/dist/modules/parsnip/route-util/getSlugEntries.d.ts.map +1 -0
  232. package/dist/modules/parsnip/route-util/getSlugEntries.js +13 -7
  233. package/dist/modules/parsnip/route-util/menuPageServerLoad.d.ts +7 -0
  234. package/dist/modules/parsnip/route-util/menuPageServerLoad.d.ts.map +1 -0
  235. package/dist/modules/parsnip/route-util/menuPageServerLoad.js +39 -6
  236. package/dist/modules/parsnip/route-util/slugPageServerLoad.d.ts +2 -1
  237. package/dist/modules/parsnip/route-util/slugPageServerLoad.d.ts.map +1 -0
  238. package/dist/modules/parsnip/route-util/slugPageServerLoad.js +15 -9
  239. package/dist/scripts/pineapple_fiber/PineappleFiberParser.d.ts +1 -0
  240. package/dist/scripts/pineapple_fiber/PineappleFiberParser.d.ts.map +1 -0
  241. package/dist/scripts/pineapple_fiber/PineappleFiberParser.js +14 -5
  242. package/dist/scripts/pineapple_fiber/PineappleWeaver.d.ts +1 -0
  243. package/dist/scripts/pineapple_fiber/PineappleWeaver.d.ts.map +1 -0
  244. package/dist/scripts/pineapple_fiber/PineappleWeaver.js +12 -3
  245. package/dist/scripts/util/FileManagement.d.ts +1 -0
  246. package/dist/scripts/util/FileManagement.d.ts.map +1 -0
  247. package/dist/scripts/util/ManualCheck.d.ts +1 -0
  248. package/dist/scripts/util/ManualCheck.d.ts.map +1 -0
  249. package/dist/scripts/util/ManualCheckRun.d.ts +1 -0
  250. package/dist/scripts/util/ManualCheckRun.d.ts.map +1 -0
  251. package/dist/store.d.ts +1 -0
  252. package/dist/store.d.ts.map +1 -0
  253. package/dist/styles/app.css +41 -21
  254. package/dist/styles/color-tokens.css +23 -0
  255. package/dist/styles/surface-colors.scss +55 -0
  256. package/dist/styles/tailwind.css +3318 -0
  257. package/dist/styles/turnip-theme.css +50 -76
  258. package/dist/types/BlogBlurbMeta.d.ts +1 -0
  259. package/dist/types/BlogBlurbMeta.d.ts.map +1 -0
  260. package/dist/types/BlogBlurbMeta.js +11 -9
  261. package/dist/types/BreadcrumbData.d.ts +1 -0
  262. package/dist/types/BreadcrumbData.d.ts.map +1 -0
  263. package/dist/types/api/CreateUrl.d.ts +1 -0
  264. package/dist/types/api/CreateUrl.d.ts.map +1 -0
  265. package/dist/types/api/CreateUrl.js +4 -3
  266. package/dist/types/api/index.d.ts +1 -0
  267. package/dist/types/api/index.d.ts.map +1 -0
  268. package/dist/types/pineapple_fiber/DialogDetail.d.ts +1 -0
  269. package/dist/types/pineapple_fiber/DialogDetail.d.ts.map +1 -0
  270. package/dist/types/pineapple_fiber/DialogState.d.ts +1 -0
  271. package/dist/types/pineapple_fiber/DialogState.d.ts.map +1 -0
  272. package/dist/types/pineapple_fiber/DialogVariableStore.d.ts +1 -0
  273. package/dist/types/pineapple_fiber/DialogVariableStore.d.ts.map +1 -0
  274. package/dist/types/pineapple_fiber/PortraitType.d.ts +1 -0
  275. package/dist/types/pineapple_fiber/PortraitType.d.ts.map +1 -0
  276. package/dist/ui/components/FourPartCard.svelte +14 -5
  277. package/dist/ui/components/FourPartCard.svelte.d.ts +3 -2
  278. package/dist/ui/components/FourPartCard.svelte.d.ts.map +1 -0
  279. package/dist/ui/components/MeltToaster/MeltToaster.svelte +103 -0
  280. package/dist/ui/components/MeltToaster/MeltToaster.svelte.d.ts +54 -0
  281. package/dist/ui/components/MeltToaster/MeltToaster.svelte.d.ts.map +1 -0
  282. package/dist/ui/{templates/SeaweedLayout → components/MeltToaster}/ToastSettings.d.ts +1 -1
  283. package/dist/ui/components/MeltToaster/ToastSettings.d.ts.map +1 -0
  284. package/dist/ui/components/MeltToaster/ToastSettings.js +1 -0
  285. package/dist/ui/components/ModalBase.svelte +7 -3
  286. package/dist/ui/components/ModalBase.svelte.d.ts +4 -1
  287. package/dist/ui/components/ModalBase.svelte.d.ts.map +1 -0
  288. package/dist/ui/components/NestedNavigation.svelte +136 -0
  289. package/dist/ui/components/NestedNavigation.svelte.d.ts +12 -0
  290. package/dist/ui/components/NestedNavigation.svelte.d.ts.map +1 -0
  291. package/dist/ui/components/SocialSection.svelte +60 -27
  292. package/dist/ui/components/SocialSection.svelte.d.ts +7 -4
  293. package/dist/ui/components/SocialSection.svelte.d.ts.map +1 -0
  294. package/dist/ui/components/accordion/PinyaAccordion.svelte +63 -15
  295. package/dist/ui/components/accordion/PinyaAccordion.svelte.d.ts +3 -6
  296. package/dist/ui/components/accordion/PinyaAccordion.svelte.d.ts.map +1 -0
  297. package/dist/ui/components/accordion/PinyaAccordionItem.svelte +140 -23
  298. package/dist/ui/components/accordion/PinyaAccordionItem.svelte.d.ts +3 -7
  299. package/dist/ui/components/accordion/PinyaAccordionItem.svelte.d.ts.map +1 -0
  300. package/dist/ui/components/accordion/PinyaAccordionItemProps.d.ts +15 -0
  301. package/dist/ui/components/accordion/PinyaAccordionItemProps.d.ts.map +1 -0
  302. package/dist/ui/components/accordion/PinyaAccordionItemProps.js +1 -0
  303. package/dist/ui/components/accordion/PinyaAccordionProps.d.ts +11 -0
  304. package/dist/ui/components/accordion/PinyaAccordionProps.d.ts.map +1 -0
  305. package/dist/ui/components/accordion/PinyaAccordionProps.js +1 -0
  306. package/dist/ui/components/accordion/accordionContext.d.ts +5 -0
  307. package/dist/ui/components/accordion/accordionContext.d.ts.map +1 -0
  308. package/dist/ui/components/accordion/accordionContext.js +2 -0
  309. package/dist/ui/components/accordion/index.d.ts +1 -0
  310. package/dist/ui/components/accordion/index.d.ts.map +1 -0
  311. package/dist/ui/components/index.d.ts +1 -0
  312. package/dist/ui/components/index.d.ts.map +1 -0
  313. package/dist/ui/components/randomized-background/RandomizedBackground.svelte +5 -1
  314. package/dist/ui/components/randomized-background/RandomizedBackground.svelte.d.ts +1 -0
  315. package/dist/ui/components/randomized-background/RandomizedBackground.svelte.d.ts.map +1 -0
  316. package/dist/ui/components/randomized-background/RandomizedImage.svelte +5 -2
  317. package/dist/ui/components/randomized-background/RandomizedImage.svelte.d.ts +1 -0
  318. package/dist/ui/components/randomized-background/RandomizedImage.svelte.d.ts.map +1 -0
  319. package/dist/ui/components/randomized-background/getSocialSection.remote.d.ts +3 -0
  320. package/dist/ui/components/randomized-background/getSocialSection.remote.d.ts.map +1 -0
  321. package/dist/ui/components/randomized-background/getSocialSection.remote.js +16 -0
  322. package/dist/ui/components/socialSectionRemote.remote.d.ts +3 -0
  323. package/dist/ui/components/socialSectionRemote.remote.d.ts.map +1 -0
  324. package/dist/ui/components/socialSectionRemote.remote.js +3 -0
  325. package/dist/ui/elements/CodeBlock/CodeBlock.svelte +17 -4
  326. package/dist/ui/elements/CodeBlock/CodeBlock.svelte.d.ts +1 -0
  327. package/dist/ui/elements/CodeBlock/CodeBlock.svelte.d.ts.map +1 -0
  328. package/dist/ui/elements/CodeBlock/CodeBlockProps.d.ts +11 -1
  329. package/dist/ui/elements/CodeBlock/CodeBlockProps.d.ts.map +1 -0
  330. package/dist/ui/elements/CodeBlock/index.d.ts +1 -0
  331. package/dist/ui/elements/CodeBlock/index.d.ts.map +1 -0
  332. package/dist/ui/elements/ColorScheme.d.ts +9 -8
  333. package/dist/ui/elements/ColorScheme.d.ts.map +1 -0
  334. package/dist/ui/elements/ColorScheme.js +8 -8
  335. package/dist/ui/elements/ElementVisibilityDetector.svelte +26 -19
  336. package/dist/ui/elements/ElementVisibilityDetector.svelte.d.ts +1 -0
  337. package/dist/ui/elements/ElementVisibilityDetector.svelte.d.ts.map +1 -0
  338. package/dist/ui/elements/GeneralUIProps.d.ts +1 -0
  339. package/dist/ui/elements/GeneralUIProps.d.ts.map +1 -0
  340. package/dist/ui/elements/ImageIcon.svelte +7 -1
  341. package/dist/ui/elements/ImageIcon.svelte.d.ts +5 -0
  342. package/dist/ui/elements/ImageIcon.svelte.d.ts.map +1 -0
  343. package/dist/ui/elements/OnBackground.d.ts +1 -0
  344. package/dist/ui/elements/OnBackground.d.ts.map +1 -0
  345. package/dist/ui/elements/PineappleSwitch.svelte +78 -11
  346. package/dist/ui/elements/PineappleSwitch.svelte.d.ts +2 -1
  347. package/dist/ui/elements/PineappleSwitch.svelte.d.ts.map +1 -0
  348. package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButton.svelte +8 -2
  349. package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButton.svelte.d.ts +5 -0
  350. package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButton.svelte.d.ts.map +1 -0
  351. package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButtonProps.d.ts +1 -0
  352. package/dist/ui/elements/PinyaAnchorButton/PinyaAnchorButtonProps.d.ts.map +1 -0
  353. package/dist/ui/elements/PinyaAnchorButton/index.d.ts +1 -0
  354. package/dist/ui/elements/PinyaAnchorButton/index.d.ts.map +1 -0
  355. package/dist/ui/elements/PinyaButton/PinyaButton.svelte +49 -3
  356. package/dist/ui/elements/PinyaButton/PinyaButton.svelte.d.ts +1 -0
  357. package/dist/ui/elements/PinyaButton/PinyaButton.svelte.d.ts.map +1 -0
  358. package/dist/ui/elements/PinyaButton/PinyaButtonProps.d.ts +1 -0
  359. package/dist/ui/elements/PinyaButton/PinyaButtonProps.d.ts.map +1 -0
  360. package/dist/ui/elements/PinyaButton/index.d.ts +1 -0
  361. package/dist/ui/elements/PinyaButton/index.d.ts.map +1 -0
  362. package/dist/ui/elements/PinyaButtonCommon/ButtonVariant.d.ts +4 -3
  363. package/dist/ui/elements/PinyaButtonCommon/ButtonVariant.d.ts.map +1 -0
  364. package/dist/ui/elements/PinyaButtonCommon/ButtonVariant.js +3 -3
  365. package/dist/ui/elements/PinyaButtonCommon/PinyaButtonCommonProps.d.ts +4 -0
  366. package/dist/ui/elements/PinyaButtonCommon/PinyaButtonCommonProps.d.ts.map +1 -0
  367. package/dist/ui/elements/PinyaButtonCommon/createButtonClass.d.ts +1 -0
  368. package/dist/ui/elements/PinyaButtonCommon/createButtonClass.d.ts.map +1 -0
  369. package/dist/ui/elements/PinyaButtonCommon/createButtonClass.js +8 -26
  370. package/dist/ui/elements/PinyaButtonCommon/index.d.ts +1 -0
  371. package/dist/ui/elements/PinyaButtonCommon/index.d.ts.map +1 -0
  372. package/dist/ui/elements/PinyaCard/PinyaCard.svelte +72 -24
  373. package/dist/ui/elements/PinyaCard/PinyaCard.svelte.d.ts +3 -1
  374. package/dist/ui/elements/PinyaCard/PinyaCard.svelte.d.ts.map +1 -0
  375. package/dist/ui/elements/PinyaCard/PinyaCardProps.d.ts +12 -3
  376. package/dist/ui/elements/PinyaCard/PinyaCardProps.d.ts.map +1 -0
  377. package/dist/ui/elements/PinyaCard/index.d.ts +1 -0
  378. package/dist/ui/elements/PinyaCard/index.d.ts.map +1 -0
  379. package/dist/ui/elements/Placeholder.svelte +11 -1
  380. package/dist/ui/elements/Placeholder.svelte.d.ts +7 -1
  381. package/dist/ui/elements/Placeholder.svelte.d.ts.map +1 -0
  382. package/dist/ui/elements/TextChip/TextChip.svelte +7 -1
  383. package/dist/ui/elements/TextChip/TextChip.svelte.d.ts +5 -0
  384. package/dist/ui/elements/TextChip/TextChip.svelte.d.ts.map +1 -0
  385. package/dist/ui/elements/TextChip/TextChipProps.d.ts +1 -0
  386. package/dist/ui/elements/TextChip/TextChipProps.d.ts.map +1 -0
  387. package/dist/ui/elements/TextChip/index.d.ts +1 -0
  388. package/dist/ui/elements/TextChip/index.d.ts.map +1 -0
  389. package/dist/ui/elements/TextLink.svelte +53 -7
  390. package/dist/ui/elements/TextLink.svelte.d.ts +7 -6
  391. package/dist/ui/elements/TextLink.svelte.d.ts.map +1 -0
  392. package/dist/ui/elements/TextLinkProps.d.ts +9 -0
  393. package/dist/ui/elements/TextLinkProps.d.ts.map +1 -0
  394. package/dist/ui/elements/TextLinkProps.js +1 -0
  395. package/dist/ui/elements/WrapperProps.d.ts +1 -0
  396. package/dist/ui/elements/WrapperProps.d.ts.map +1 -0
  397. package/dist/ui/elements/index.d.ts +1 -0
  398. package/dist/ui/elements/index.d.ts.map +1 -0
  399. package/dist/ui/elements/pinya-combobox/PinyaCombobox.svelte +119 -22
  400. package/dist/ui/elements/pinya-combobox/PinyaCombobox.svelte.d.ts +6 -0
  401. package/dist/ui/elements/pinya-combobox/PinyaCombobox.svelte.d.ts.map +1 -0
  402. package/dist/ui/elements/pinya-combobox/PinyaComboboxProps.d.ts +9 -7
  403. package/dist/ui/elements/pinya-combobox/PinyaComboboxProps.d.ts.map +1 -0
  404. package/dist/ui/modules/NavigationMenu/NavigationControl.svelte +2 -0
  405. package/dist/ui/modules/NavigationMenu/NavigationControl.svelte.d.ts +1 -0
  406. package/dist/ui/modules/NavigationMenu/NavigationControl.svelte.d.ts.map +1 -0
  407. package/dist/ui/modules/NavigationMenu/NavigationMenu.svelte +6 -4
  408. package/dist/ui/modules/NavigationMenu/NavigationMenu.svelte.d.ts +1 -0
  409. package/dist/ui/modules/NavigationMenu/NavigationMenu.svelte.d.ts.map +1 -0
  410. package/dist/ui/modules/NavigationMenu/PageMeta.d.ts +16 -0
  411. package/dist/ui/modules/NavigationMenu/PageMeta.d.ts.map +1 -0
  412. package/dist/ui/modules/NavigationMenu/PageMeta.js +61 -5
  413. package/dist/ui/modules/NavigationMenu/index.d.ts +1 -0
  414. package/dist/ui/modules/NavigationMenu/index.d.ts.map +1 -0
  415. package/dist/ui/modules/index.d.ts +2 -1
  416. package/dist/ui/modules/index.d.ts.map +1 -0
  417. package/dist/ui/modules/index.js +1 -1
  418. package/dist/ui/modules/modals/general-settings/GeneralSettingsModal.svelte +20 -40
  419. package/dist/ui/modules/modals/general-settings/GeneralSettingsModal.svelte.d.ts +1 -0
  420. package/dist/ui/modules/modals/general-settings/GeneralSettingsModal.svelte.d.ts.map +1 -0
  421. package/dist/ui/modules/modals/general-settings/LanguagePicker.svelte +8 -8
  422. package/dist/ui/modules/modals/general-settings/LanguagePicker.svelte.d.ts +1 -0
  423. package/dist/ui/modules/modals/general-settings/LanguagePicker.svelte.d.ts.map +1 -0
  424. package/dist/ui/modules/modals/general-settings/NavigationModal.svelte +113 -0
  425. package/dist/ui/modules/modals/general-settings/NavigationModal.svelte.d.ts +5 -0
  426. package/dist/ui/modules/modals/general-settings/NavigationModal.svelte.d.ts.map +1 -0
  427. package/dist/ui/modules/projects/Hepcat.svelte +3 -1
  428. package/dist/ui/modules/projects/Hepcat.svelte.d.ts +1 -0
  429. package/dist/ui/modules/projects/Hepcat.svelte.d.ts.map +1 -0
  430. package/dist/ui/modules/projects/Pengi.svelte +3 -1
  431. package/dist/ui/modules/projects/Pengi.svelte.d.ts +1 -0
  432. package/dist/ui/modules/projects/Pengi.svelte.d.ts.map +1 -0
  433. package/dist/ui/modules/projects/Soulwork.svelte +2 -0
  434. package/dist/ui/modules/projects/Soulwork.svelte.d.ts +1 -0
  435. package/dist/ui/modules/projects/Soulwork.svelte.d.ts.map +1 -0
  436. package/dist/ui/modules/projects/ThisWebpage.svelte +2 -0
  437. package/dist/ui/modules/projects/ThisWebpage.svelte.d.ts +1 -0
  438. package/dist/ui/modules/projects/ThisWebpage.svelte.d.ts.map +1 -0
  439. package/dist/ui/modules/projects/index.d.ts +1 -0
  440. package/dist/ui/modules/projects/index.d.ts.map +1 -0
  441. package/dist/ui/modules/universal-overlay/DialogPanel.svelte +39 -0
  442. package/dist/ui/modules/universal-overlay/DialogPanel.svelte.d.ts +5 -0
  443. package/dist/ui/modules/universal-overlay/DialogPanel.svelte.d.ts.map +1 -0
  444. package/dist/ui/modules/universal-overlay/SettingsPanel.svelte +177 -0
  445. package/dist/ui/modules/universal-overlay/SettingsPanel.svelte.d.ts +9 -0
  446. package/dist/ui/modules/universal-overlay/SettingsPanel.svelte.d.ts.map +1 -0
  447. package/dist/ui/modules/universal-overlay/UniversalOverlay.svelte +265 -0
  448. package/dist/ui/modules/universal-overlay/UniversalOverlay.svelte.d.ts +12 -0
  449. package/dist/ui/modules/universal-overlay/UniversalOverlay.svelte.d.ts.map +1 -0
  450. package/dist/ui/templates/PinyaPageLayout/PinyaPageLayout.svelte +93 -23
  451. package/dist/ui/templates/PinyaPageLayout/PinyaPageLayout.svelte.d.ts +2 -0
  452. package/dist/ui/templates/PinyaPageLayout/PinyaPageLayout.svelte.d.ts.map +1 -0
  453. package/dist/ui/templates/PinyaPageLayout/index.d.ts +2 -1
  454. package/dist/ui/templates/PinyaPageLayout/index.d.ts.map +1 -0
  455. package/dist/ui/templates/PinyaPageLayout/index.js +1 -1
  456. package/dist/ui/templates/PinyaPageLayout/{runes.svelte.d.ts → pinyaPageLayoutRunes.svelte.d.ts} +1 -0
  457. package/dist/ui/templates/PinyaPageLayout/pinyaPageLayoutRunes.svelte.d.ts.map +1 -0
  458. package/dist/ui/templates/SeaweedLayout/ChumBucket.svelte +3 -1
  459. package/dist/ui/templates/SeaweedLayout/ChumBucket.svelte.d.ts +1 -0
  460. package/dist/ui/templates/SeaweedLayout/ChumBucket.svelte.d.ts.map +1 -0
  461. package/dist/ui/templates/SeaweedLayout/CreateUrlForm.svelte +12 -12
  462. package/dist/ui/templates/SeaweedLayout/CreateUrlForm.svelte.d.ts +2 -4
  463. package/dist/ui/templates/SeaweedLayout/CreateUrlForm.svelte.d.ts.map +1 -0
  464. package/dist/ui/templates/SeaweedLayout/EntryGroup.svelte +11 -8
  465. package/dist/ui/templates/SeaweedLayout/EntryGroup.svelte.d.ts +1 -0
  466. package/dist/ui/templates/SeaweedLayout/EntryGroup.svelte.d.ts.map +1 -0
  467. package/dist/ui/templates/SeaweedLayout/EntryOrderConfig.svelte +2 -0
  468. package/dist/ui/templates/SeaweedLayout/EntryOrderConfig.svelte.d.ts +1 -0
  469. package/dist/ui/templates/SeaweedLayout/EntryOrderConfig.svelte.d.ts.map +1 -0
  470. package/dist/ui/templates/SeaweedLayout/ProjectComponentProps.d.ts +1 -0
  471. package/dist/ui/templates/SeaweedLayout/ProjectComponentProps.d.ts.map +1 -0
  472. package/dist/ui/templates/SeaweedLayout/ProjectGroupConfig.svelte +24 -12
  473. package/dist/ui/templates/SeaweedLayout/ProjectGroupConfig.svelte.d.ts +2 -4
  474. package/dist/ui/templates/SeaweedLayout/ProjectGroupConfig.svelte.d.ts.map +1 -0
  475. package/dist/ui/templates/SeaweedLayout/SeaweedLayout.svelte +8 -1
  476. package/dist/ui/templates/SeaweedLayout/SeaweedLayout.svelte.d.ts +1 -0
  477. package/dist/ui/templates/SeaweedLayout/SeaweedLayout.svelte.d.ts.map +1 -0
  478. package/dist/ui/templates/SeaweedLayout/index.d.ts +1 -0
  479. package/dist/ui/templates/SeaweedLayout/index.d.ts.map +1 -0
  480. package/dist/ui/templates/SeaweedLayout/props.d.ts +1 -0
  481. package/dist/ui/templates/SeaweedLayout/props.d.ts.map +1 -0
  482. package/dist/ui/templates/blog_template/BlogTemplate.svelte +11 -6
  483. package/dist/ui/templates/blog_template/BlogTemplate.svelte.d.ts +1 -0
  484. package/dist/ui/templates/blog_template/BlogTemplate.svelte.d.ts.map +1 -0
  485. package/dist/ui/templates/blog_template/BlogTemplateInner.svelte +4 -2
  486. package/dist/ui/templates/blog_template/BlogTemplateInner.svelte.d.ts +1 -0
  487. package/dist/ui/templates/blog_template/BlogTemplateInner.svelte.d.ts.map +1 -0
  488. package/dist/ui/templates/confirmation-modal/component.svelte +3 -1
  489. package/dist/ui/templates/confirmation-modal/component.svelte.d.ts +1 -0
  490. package/dist/ui/templates/confirmation-modal/component.svelte.d.ts.map +1 -0
  491. package/dist/ui/templates/confirmation-modal/index.d.ts +1 -0
  492. package/dist/ui/templates/confirmation-modal/index.d.ts.map +1 -0
  493. package/dist/ui/templates/confirmation-modal/props.d.ts +1 -0
  494. package/dist/ui/templates/confirmation-modal/props.d.ts.map +1 -0
  495. package/dist/ui/templates/index.d.ts +2 -1
  496. package/dist/ui/templates/index.d.ts.map +1 -0
  497. package/dist/ui/templates/index.js +1 -1
  498. package/dist/ui/templates/{PinyaBase.svelte → pinya-base/PinyaBase.svelte} +42 -31
  499. package/dist/ui/templates/{PinyaBase.svelte.d.ts → pinya-base/PinyaBase.svelte.d.ts} +3 -2
  500. package/dist/ui/templates/pinya-base/PinyaBase.svelte.d.ts.map +1 -0
  501. package/dist/ui/templates/{runes.svelte.d.ts → pinya-base/pinyaBaseRunes.svelte.d.ts} +1 -0
  502. package/dist/ui/templates/pinya-base/pinyaBaseRunes.svelte.d.ts.map +1 -0
  503. package/dist/ui/templates/{runes.svelte.js → pinya-base/pinyaBaseRunes.svelte.js} +2 -2
  504. package/dist/util/context/PineappleBaseContext.svelte +58 -0
  505. package/dist/util/context/PineappleBaseContext.svelte.d.ts +6 -0
  506. package/dist/util/context/PineappleBaseContext.svelte.d.ts.map +1 -0
  507. package/dist/util/context/pineappleBaseContextDefinitions.svelte.d.ts +16 -0
  508. package/dist/util/context/pineappleBaseContextDefinitions.svelte.d.ts.map +1 -0
  509. package/dist/util/context/pineappleBaseContextDefinitions.svelte.js +32 -0
  510. package/dist/util/env-getter.d.ts +1 -0
  511. package/dist/util/env-getter.d.ts.map +1 -0
  512. package/dist/util/env-getter.js +6 -2
  513. package/dist/util/localStore.svelte.d.ts +10 -0
  514. package/dist/util/localStore.svelte.d.ts.map +1 -0
  515. package/dist/util/localStore.svelte.js +56 -0
  516. package/dist/util/util.d.ts +1 -0
  517. package/dist/util/util.d.ts.map +1 -0
  518. package/package.json +79 -68
  519. package/src/lib/styles/app.css +41 -21
  520. package/dist/ui/modules/dialog_overlay/DialogOverlay.svelte +0 -239
  521. package/dist/ui/modules/dialog_overlay/DialogOverlay.svelte.d.ts +0 -3
  522. /package/dist/{ui/templates/SeaweedLayout/ToastSettings.js → components/reveal-info/RevealInfoCollection.js} +0 -0
  523. /package/dist/ui/templates/PinyaPageLayout/{runes.svelte.js → pinyaPageLayoutRunes.svelte.js} +0 -0
@@ -0,0 +1,3318 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */@layer properties {
2
+ @supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {
3
+ *,
4
+ :before,
5
+ :after,
6
+ ::backdrop {
7
+ --tw-translate-x:0;
8
+ --tw-translate-y:0;
9
+ --tw-translate-z:0;
10
+ --tw-rotate-x:initial;
11
+ --tw-rotate-y:initial;
12
+ --tw-rotate-z:initial;
13
+ --tw-skew-x:initial;
14
+ --tw-skew-y:initial;
15
+ --tw-space-y-reverse:0;
16
+ --tw-space-x-reverse:0;
17
+ --tw-border-style:solid;
18
+ --tw-font-weight:initial;
19
+ --tw-shadow:0 0 #0000;
20
+ --tw-shadow-color:initial;
21
+ --tw-shadow-alpha:100%;
22
+ --tw-inset-shadow:0 0 #0000;
23
+ --tw-inset-shadow-color:initial;
24
+ --tw-inset-shadow-alpha:100%;
25
+ --tw-ring-color:initial;
26
+ --tw-ring-shadow:0 0 #0000;
27
+ --tw-inset-ring-color:initial;
28
+ --tw-inset-ring-shadow:0 0 #0000;
29
+ --tw-ring-inset:initial;
30
+ --tw-ring-offset-width:0px;
31
+ --tw-ring-offset-color:#fff;
32
+ --tw-ring-offset-shadow:0 0 #0000;
33
+ --tw-blur:initial;
34
+ --tw-brightness:initial;
35
+ --tw-contrast:initial;
36
+ --tw-grayscale:initial;
37
+ --tw-hue-rotate:initial;
38
+ --tw-invert:initial;
39
+ --tw-opacity:initial;
40
+ --tw-saturate:initial;
41
+ --tw-sepia:initial;
42
+ --tw-drop-shadow:initial;
43
+ --tw-drop-shadow-color:initial;
44
+ --tw-drop-shadow-alpha:100%;
45
+ --tw-drop-shadow-size:initial;
46
+ --tw-backdrop-blur:initial;
47
+ --tw-backdrop-brightness:initial;
48
+ --tw-backdrop-contrast:initial;
49
+ --tw-backdrop-grayscale:initial;
50
+ --tw-backdrop-hue-rotate:initial;
51
+ --tw-backdrop-invert:initial;
52
+ --tw-backdrop-opacity:initial;
53
+ --tw-backdrop-saturate:initial;
54
+ --tw-backdrop-sepia:initial;
55
+ --tw-duration:initial;
56
+ --tw-ease:initial
57
+ }
58
+ }
59
+ }
60
+ @layer theme {
61
+ :root,
62
+ :host {
63
+ --font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
64
+ --font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
65
+ --color-white:#fff;
66
+ --spacing:.25rem;
67
+ --container-xs:20rem;
68
+ --container-md:28rem;
69
+ --container-lg:32rem;
70
+ --container-xl:36rem;
71
+ --container-2xl:42rem;
72
+ --container-3xl:48rem;
73
+ --container-4xl:56rem;
74
+ --text-xs:calc(.75rem*var(--text-scaling));
75
+ --text-xs--line-height:calc(calc(1/.75)*var(--text-scaling));
76
+ --text-sm:calc(.875rem*var(--text-scaling));
77
+ --text-sm--line-height:calc(calc(1.25/.875)*var(--text-scaling));
78
+ --text-base:calc(1rem*var(--text-scaling));
79
+ --text-base--line-height:calc( 1.5 *var(--text-scaling));
80
+ --text-xl:calc(1.25rem*var(--text-scaling));
81
+ --text-xl--line-height:calc(calc(1.75/1.25)*var(--text-scaling));
82
+ --text-2xl:calc(1.5rem*var(--text-scaling));
83
+ --text-2xl--line-height:calc(calc(2/1.5)*var(--text-scaling));
84
+ --text-3xl:calc(1.875rem*var(--text-scaling));
85
+ --text-3xl--line-height:calc( 1.2 *var(--text-scaling));
86
+ --text-4xl:calc(2.25rem*var(--text-scaling));
87
+ --text-4xl--line-height:calc(calc(2.5/2.25)*var(--text-scaling));
88
+ --font-weight-medium:500;
89
+ --font-weight-bold:700;
90
+ --radius-sm:.25rem;
91
+ --radius-lg:.5rem;
92
+ --radius-xl:.75rem;
93
+ --radius-2xl:1rem;
94
+ --ease-in-out:cubic-bezier(.4,0,.2,1);
95
+ --animate-spin:spin 1s linear infinite;
96
+ --animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;
97
+ --default-transition-duration:.15s;
98
+ --default-transition-timing-function:cubic-bezier(.4,0,.2,1);
99
+ --default-font-family:var(--font-sans);
100
+ --default-mono-font-family:var(--font-mono);
101
+ --text-scaling:1;
102
+ --base-font-color:inherit;
103
+ --base-font-color-dark:inherit;
104
+ --base-font-family:inherit;
105
+ --base-font-size:inherit;
106
+ --base-line-height:inherit;
107
+ --base-font-weight:inherit;
108
+ --base-font-style:inherit;
109
+ --base-letter-spacing:inherit;
110
+ --heading-font-color:inherit;
111
+ --heading-font-color-dark:inherit;
112
+ --heading-font-family:inherit;
113
+ --heading-font-weight:inherit;
114
+ --heading-font-style:inherit;
115
+ --heading-letter-spacing:inherit;
116
+ --anchor-font-color:inherit;
117
+ --anchor-font-color-dark:inherit;
118
+ --anchor-font-family:inherit;
119
+ --anchor-font-size:inherit;
120
+ --anchor-line-height:inherit;
121
+ --anchor-font-weight:inherit;
122
+ --anchor-font-style:inherit;
123
+ --anchor-letter-spacing:inherit;
124
+ --anchor-text-decoration:inherit;
125
+ --anchor-text-decoration-hover:underline;
126
+ --anchor-text-decoration-active:inherit;
127
+ --anchor-text-decoration-focus:inherit;
128
+ --radius-base:.25rem;
129
+ --radius-container:.25rem;
130
+ --default-ring-width:1px;
131
+ --animate-progress-indeterminate:anim-progress-indeterminate 2s linear infinite;
132
+ --animate-ring-indeterminate:anim-ring-indeterminate 2s linear infinite;
133
+ --color-primary-50:oklch(98.5% 0 0);
134
+ --color-primary-100:oklch(97% 0 0);
135
+ --color-primary-200:oklch(92.2% 0 0);
136
+ --color-primary-300:oklch(87% 0 0);
137
+ --color-primary-400:oklch(70.8% 0 0);
138
+ --color-primary-500:oklch(55.6% 0 0);
139
+ --color-primary-600:oklch(43.9% 0 0);
140
+ --color-primary-700:oklch(37.1% 0 0);
141
+ --color-primary-800:oklch(26.9% 0 0);
142
+ --color-primary-900:oklch(20.5% 0 0);
143
+ --color-primary-950:oklch(14.5% 0 0);
144
+ --color-primary-contrast-dark:var(--color-primary-950);
145
+ --color-primary-contrast-light:var(--color-primary-50);
146
+ --color-primary-contrast-50:var(--color-primary-contrast-dark);
147
+ --color-primary-contrast-400:var(--color-primary-contrast-light);
148
+ --color-primary-contrast-500:var(--color-primary-contrast-light);
149
+ --color-primary-contrast-600:var(--color-primary-contrast-light);
150
+ --color-primary-contrast-950:var(--color-primary-contrast-light);
151
+ --color-secondary-50:oklch(98.5% 0 0);
152
+ --color-secondary-100:oklch(97% 0 0);
153
+ --color-secondary-200:oklch(92.2% 0 0);
154
+ --color-secondary-300:oklch(87% 0 0);
155
+ --color-secondary-400:oklch(70.8% 0 0);
156
+ --color-secondary-500:oklch(55.6% 0 0);
157
+ --color-secondary-600:oklch(43.9% 0 0);
158
+ --color-secondary-700:oklch(37.1% 0 0);
159
+ --color-secondary-800:oklch(26.9% 0 0);
160
+ --color-secondary-900:oklch(20.5% 0 0);
161
+ --color-secondary-950:oklch(14.5% 0 0);
162
+ --color-secondary-contrast-dark:var(--color-secondary-950);
163
+ --color-secondary-contrast-light:var(--color-secondary-50);
164
+ --color-secondary-contrast-500:var(--color-secondary-contrast-light);
165
+ --color-tertiary-50:oklch(98.5% 0 0);
166
+ --color-tertiary-100:oklch(97% 0 0);
167
+ --color-tertiary-200:oklch(92.2% 0 0);
168
+ --color-tertiary-300:oklch(87% 0 0);
169
+ --color-tertiary-400:oklch(70.8% 0 0);
170
+ --color-tertiary-500:oklch(55.6% 0 0);
171
+ --color-tertiary-600:oklch(43.9% 0 0);
172
+ --color-tertiary-700:oklch(37.1% 0 0);
173
+ --color-tertiary-800:oklch(26.9% 0 0);
174
+ --color-tertiary-900:oklch(20.5% 0 0);
175
+ --color-tertiary-950:oklch(14.5% 0 0);
176
+ --color-tertiary-contrast-dark:var(--color-tertiary-950);
177
+ --color-tertiary-contrast-light:var(--color-tertiary-50);
178
+ --color-success-50:oklch(98.5% 0 0);
179
+ --color-success-100:oklch(97% 0 0);
180
+ --color-success-200:oklch(92.2% 0 0);
181
+ --color-success-300:oklch(87% 0 0);
182
+ --color-success-400:oklch(70.8% 0 0);
183
+ --color-success-500:oklch(55.6% 0 0);
184
+ --color-success-600:oklch(43.9% 0 0);
185
+ --color-success-700:oklch(37.1% 0 0);
186
+ --color-success-800:oklch(26.9% 0 0);
187
+ --color-success-900:oklch(20.5% 0 0);
188
+ --color-success-950:oklch(14.5% 0 0);
189
+ --color-success-contrast-dark:var(--color-success-950);
190
+ --color-success-contrast-light:var(--color-success-50);
191
+ --color-success-contrast-500:var(--color-success-contrast-light);
192
+ --color-warning-50:oklch(98.5% 0 0);
193
+ --color-warning-100:oklch(97% 0 0);
194
+ --color-warning-200:oklch(92.2% 0 0);
195
+ --color-warning-300:oklch(87% 0 0);
196
+ --color-warning-400:oklch(70.8% 0 0);
197
+ --color-warning-500:oklch(55.6% 0 0);
198
+ --color-warning-600:oklch(43.9% 0 0);
199
+ --color-warning-700:oklch(37.1% 0 0);
200
+ --color-warning-800:oklch(26.9% 0 0);
201
+ --color-warning-900:oklch(20.5% 0 0);
202
+ --color-warning-950:oklch(14.5% 0 0);
203
+ --color-warning-contrast-dark:var(--color-warning-950);
204
+ --color-warning-contrast-light:var(--color-warning-50);
205
+ --color-warning-contrast-400:var(--color-warning-contrast-light);
206
+ --color-warning-contrast-600:var(--color-warning-contrast-light);
207
+ --color-error-50:oklch(98.5% 0 0);
208
+ --color-error-100:oklch(97% 0 0);
209
+ --color-error-200:oklch(92.2% 0 0);
210
+ --color-error-300:oklch(87% 0 0);
211
+ --color-error-400:oklch(70.8% 0 0);
212
+ --color-error-500:oklch(55.6% 0 0);
213
+ --color-error-600:oklch(43.9% 0 0);
214
+ --color-error-700:oklch(37.1% 0 0);
215
+ --color-error-800:oklch(26.9% 0 0);
216
+ --color-error-900:oklch(20.5% 0 0);
217
+ --color-error-950:oklch(14.5% 0 0);
218
+ --color-error-contrast-dark:var(--color-error-950);
219
+ --color-error-contrast-light:var(--color-error-50);
220
+ --color-error-contrast-500:var(--color-error-contrast-light);
221
+ --color-surface-50:oklch(98.5% 0 0);
222
+ --color-surface-100:oklch(97% 0 0);
223
+ --color-surface-200:oklch(92.2% 0 0);
224
+ --color-surface-300:oklch(87% 0 0);
225
+ --color-surface-400:oklch(70.8% 0 0);
226
+ --color-surface-500:oklch(55.6% 0 0);
227
+ --color-surface-600:oklch(43.9% 0 0);
228
+ --color-surface-700:oklch(37.1% 0 0);
229
+ --color-surface-800:oklch(26.9% 0 0);
230
+ --color-surface-900:oklch(20.5% 0 0);
231
+ --color-surface-950:oklch(14.5% 0 0);
232
+ --color-surface-contrast-dark:var(--color-surface-950);
233
+ --color-surface-contrast-light:var(--color-surface-50);
234
+ --color-surface-contrast-50:var(--color-surface-contrast-dark);
235
+ --color-surface-contrast-100:var(--color-surface-contrast-dark);
236
+ --color-surface-contrast-200:var(--color-surface-contrast-dark);
237
+ --color-surface-contrast-800:var(--color-surface-contrast-light);
238
+ --color-surface-contrast-900:var(--color-surface-contrast-light);
239
+ --color-surface-contrast-950:var(--color-surface-contrast-light);
240
+ --body-background-color:var(--color-surface-50);
241
+ --body-background-color-dark:var(--color-surface-950);
242
+ --color-primary-50-950:light-dark(var(--color-primary-50),var(--color-primary-950));
243
+ --color-primary-contrast-50-950:light-dark(var(--color-primary-contrast-50),var(--color-primary-contrast-950));
244
+ --color-primary-100-900:light-dark(var(--color-primary-100),var(--color-primary-900));
245
+ --color-primary-300-700:light-dark(var(--color-primary-300),var(--color-primary-700));
246
+ --color-primary-contrast-400-600:light-dark(var(--color-primary-contrast-400),var(--color-primary-contrast-600));
247
+ --color-primary-950-50:light-dark(var(--color-primary-950),var(--color-primary-50));
248
+ --color-secondary-50-950:light-dark(var(--color-secondary-50),var(--color-secondary-950));
249
+ --color-secondary-950-50:light-dark(var(--color-secondary-950),var(--color-secondary-50));
250
+ --color-warning-600-400:light-dark(var(--color-warning-600),var(--color-warning-400));
251
+ --color-warning-contrast-600-400:light-dark(var(--color-warning-contrast-600),var(--color-warning-contrast-400));
252
+ --color-surface-50-950:light-dark(var(--color-surface-50),var(--color-surface-950));
253
+ --color-surface-contrast-50-950:light-dark(var(--color-surface-contrast-50),var(--color-surface-contrast-950));
254
+ --color-surface-100-900:light-dark(var(--color-surface-100),var(--color-surface-900));
255
+ --color-surface-contrast-100-900:light-dark(var(--color-surface-contrast-100),var(--color-surface-contrast-900));
256
+ --color-surface-200-800:light-dark(var(--color-surface-200),var(--color-surface-800));
257
+ --color-surface-contrast-200-800:light-dark(var(--color-surface-contrast-200),var(--color-surface-contrast-800));
258
+ --color-surface-300-700:light-dark(var(--color-surface-300),var(--color-surface-700));
259
+ --color-surface-600-400:light-dark(var(--color-surface-600),var(--color-surface-400));
260
+ --color-surface-700-300:light-dark(var(--color-surface-700),var(--color-surface-300));
261
+ --color-surface-800-200:light-dark(var(--color-surface-800),var(--color-surface-200));
262
+ --color-surface-contrast-800-200:light-dark(var(--color-surface-contrast-800),var(--color-surface-contrast-200));
263
+ --color-surface-950-50:light-dark(var(--color-surface-950),var(--color-surface-50));
264
+ --color-secondary-0:oklch(99% .02 38.38)
265
+ }
266
+ }
267
+ @layer base {
268
+ *,
269
+ :after,
270
+ :before,
271
+ ::backdrop {
272
+ box-sizing:border-box;
273
+ border:0 solid;
274
+ margin:0;
275
+ padding:0
276
+ }
277
+ ::file-selector-button {
278
+ box-sizing:border-box;
279
+ border:0 solid;
280
+ margin:0;
281
+ padding:0
282
+ }
283
+ html,
284
+ :host {
285
+ -webkit-text-size-adjust:100%;
286
+ -moz-tab-size:4;
287
+ tab-size:4;
288
+ line-height:1.5;
289
+ font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");
290
+ font-feature-settings:var(--default-font-feature-settings,normal);
291
+ font-variation-settings:var(--default-font-variation-settings,normal);
292
+ -webkit-tap-highlight-color:transparent
293
+ }
294
+ hr {
295
+ height:0;
296
+ color:inherit;
297
+ border-top-width:1px
298
+ }
299
+ abbr:where([title]) {
300
+ -webkit-text-decoration:underline dotted;
301
+ text-decoration:underline dotted
302
+ }
303
+ h1,
304
+ h2,
305
+ h3,
306
+ h4,
307
+ h5,
308
+ h6 {
309
+ font-size:inherit;
310
+ font-weight:inherit
311
+ }
312
+ a {
313
+ color:inherit;
314
+ -webkit-text-decoration:inherit;
315
+ text-decoration:inherit
316
+ }
317
+ b,
318
+ strong {
319
+ font-weight:bolder
320
+ }
321
+ code,
322
+ kbd,
323
+ samp,
324
+ pre {
325
+ font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);
326
+ font-feature-settings:var(--default-mono-font-feature-settings,normal);
327
+ font-variation-settings:var(--default-mono-font-variation-settings,normal);
328
+ font-size:1em
329
+ }
330
+ small {
331
+ font-size:80%
332
+ }
333
+ sub,
334
+ sup {
335
+ vertical-align:baseline;
336
+ font-size:75%;
337
+ line-height:0;
338
+ position:relative
339
+ }
340
+ sub {
341
+ bottom:-.25em
342
+ }
343
+ sup {
344
+ top:-.5em
345
+ }
346
+ table {
347
+ text-indent:0;
348
+ border-color:inherit;
349
+ border-collapse:collapse
350
+ }
351
+ :-moz-focusring {
352
+ outline:auto
353
+ }
354
+ progress {
355
+ vertical-align:baseline
356
+ }
357
+ summary {
358
+ display:list-item
359
+ }
360
+ ol,
361
+ ul,
362
+ menu {
363
+ list-style:none
364
+ }
365
+ img,
366
+ svg,
367
+ video,
368
+ canvas,
369
+ audio,
370
+ iframe,
371
+ embed,
372
+ object {
373
+ vertical-align:middle;
374
+ display:block
375
+ }
376
+ img,
377
+ video {
378
+ max-width:100%;
379
+ height:auto
380
+ }
381
+ button,
382
+ input,
383
+ select,
384
+ optgroup,
385
+ textarea {
386
+ font:inherit;
387
+ font-feature-settings:inherit;
388
+ font-variation-settings:inherit;
389
+ letter-spacing:inherit;
390
+ color:inherit;
391
+ opacity:1;
392
+ background-color:#0000;
393
+ border-radius:0
394
+ }
395
+ ::file-selector-button {
396
+ font:inherit;
397
+ font-feature-settings:inherit;
398
+ font-variation-settings:inherit;
399
+ letter-spacing:inherit;
400
+ color:inherit;
401
+ opacity:1;
402
+ background-color:#0000;
403
+ border-radius:0
404
+ }
405
+ :where(select:is([multiple],
406
+ [size])) optgroup {
407
+ font-weight:bolder
408
+ }
409
+ :where(select:is([multiple],
410
+ [size])) optgroup option {
411
+ padding-inline-start:20px
412
+ }
413
+ ::file-selector-button {
414
+ margin-inline-end:4px
415
+ }
416
+ ::placeholder {
417
+ opacity:1
418
+ }
419
+ @supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px) {
420
+ ::placeholder {
421
+ color:currentColor
422
+ }
423
+ @supports (color:color-mix(in lab,red,red)) {
424
+ ::placeholder {
425
+ color:color-mix(in oklab,currentcolor 50%,transparent)
426
+ }
427
+ }
428
+ }
429
+ textarea {
430
+ resize:vertical
431
+ }
432
+ ::-webkit-search-decoration {
433
+ -webkit-appearance:none
434
+ }
435
+ ::-webkit-date-and-time-value {
436
+ min-height:1lh;
437
+ text-align:inherit
438
+ }
439
+ ::-webkit-datetime-edit {
440
+ padding-block:0
441
+ }
442
+ ::-webkit-datetime-edit-year-field {
443
+ padding-block:0
444
+ }
445
+ ::-webkit-datetime-edit-month-field {
446
+ padding-block:0
447
+ }
448
+ ::-webkit-datetime-edit-day-field {
449
+ padding-block:0
450
+ }
451
+ ::-webkit-datetime-edit-hour-field {
452
+ padding-block:0
453
+ }
454
+ ::-webkit-datetime-edit-minute-field {
455
+ padding-block:0
456
+ }
457
+ ::-webkit-datetime-edit-second-field {
458
+ padding-block:0
459
+ }
460
+ ::-webkit-datetime-edit-millisecond-field {
461
+ padding-block:0
462
+ }
463
+ ::-webkit-datetime-edit-meridiem-field {
464
+ padding-block:0
465
+ }
466
+ ::-webkit-calendar-picker-indicator {
467
+ line-height:1
468
+ }
469
+ :-moz-ui-invalid {
470
+ box-shadow:none
471
+ }
472
+ button,
473
+ input:where([type=button],
474
+ [type=reset],
475
+ [type=submit]) {
476
+ -webkit-appearance:button;
477
+ -moz-appearance:button;
478
+ appearance:button
479
+ }
480
+ ::file-selector-button {
481
+ -webkit-appearance:button;
482
+ -moz-appearance:button;
483
+ appearance:button
484
+ }
485
+ ::-webkit-inner-spin-button {
486
+ height:auto
487
+ }
488
+ ::-webkit-outer-spin-button {
489
+ height:auto
490
+ }
491
+ [hidden]:where(:not([hidden=until-found])) {
492
+ display:none!important
493
+ }
494
+ :root {
495
+ color-scheme:light
496
+ }
497
+ :root:where(.dark,
498
+ .dark *) {
499
+ color-scheme:dark
500
+ }
501
+ html {
502
+ -webkit-tap-highlight-color:#7373734d
503
+ }
504
+ @supports (color:color-mix(in lab,red,red)) {
505
+ html {
506
+ -webkit-tap-highlight-color:color-mix(in oklab,var(--color-primary-500)30%,transparent)
507
+ }
508
+ }
509
+ body {
510
+ background-color:var(--body-background-color)
511
+ }
512
+ body:where(.dark,
513
+ .dark *) {
514
+ background-color:var(--body-background-color-dark)
515
+ }
516
+ body {
517
+ color:var(--base-font-color);
518
+ font-family:var(--base-font-family);
519
+ font-size:var(--base-font-size);
520
+ line-height:var(--base-line-height);
521
+ font-weight:var(--base-font-weight);
522
+ font-style:var(--base-font-style);
523
+ letter-spacing:var(--base-letter-spacing)
524
+ }
525
+ body:where(.dark,
526
+ .dark *) {
527
+ color:var(--base-font-color-dark)
528
+ }
529
+ button:not(:disabled),
530
+ [role=button]:not(:disabled) {
531
+ cursor:pointer
532
+ }
533
+ .input::placeholder,
534
+ .textarea::placeholder,
535
+ .ig-input::placeholder,
536
+ .ig-textarea::placeholder {
537
+ color:var(--color-surface-700-300)
538
+ }
539
+ ::selection {
540
+ background-color:#73737380
541
+ }
542
+ :disabled,
543
+ .disabled {
544
+ opacity:.5
545
+ }
546
+ :is(:disabled,
547
+ .disabled)>* {
548
+ pointer-events:none
549
+ }
550
+ .game-link-section {
551
+ margin-top:calc(var(--spacing)*6);
552
+ justify-content:center;
553
+ gap:calc(var(--spacing)*2);
554
+ display:flex
555
+ }
556
+ .game-video-cover {
557
+ max-height:calc(var(--spacing)*64);
558
+ border-top-left-radius:var(--radius-lg);
559
+ border-top-right-radius:var(--radius-lg);
560
+ object-fit:cover;
561
+ width:100%
562
+ }
563
+ .text-chip-container {
564
+ flex-wrap:wrap;
565
+ gap:.5rem;
566
+ display:flex
567
+ }
568
+ .text-chip {
569
+ background-color:var(--color-secondary-50-950);
570
+ color:var(--color-secondary-950-50)
571
+ }
572
+ :scope:where([data-theme=turnip],
573
+ [data-theme=turnip] *) {
574
+ color:var(--color-secondary-0)
575
+ }
576
+ :scope:where([data-theme=turnip],
577
+ [data-theme=turnip] *):where(.dark,
578
+ .dark *) {
579
+ color:var(--color-surface-950)
580
+ }
581
+ /*todo: make sure we dont need this*/
582
+ /*[type=text],*/
583
+ /*input:where(:not([type])),*/
584
+ /*[type=email],*/
585
+ /*[type=url],*/
586
+ /*[type=password],*/
587
+ /*[type=number],*/
588
+ /*[type=date],*/
589
+ /*[type=datetime-local],*/
590
+ /*[type=month],*/
591
+ /*[type=search],*/
592
+ /*[type=tel],*/
593
+ /*[type=time],*/
594
+ /*[type=week],*/
595
+ /*[multiple],*/
596
+ /*textarea,*/
597
+ /*select {*/
598
+ /* -webkit-appearance:none;*/
599
+ /* -moz-appearance:none;*/
600
+ /* appearance:none;*/
601
+ /* --tw-shadow:0 0 #0000;*/
602
+ /* background-color:#fff;*/
603
+ /* border-width:1px;*/
604
+ /* border-color:#6a7282;*/
605
+ /* border-radius:0;*/
606
+ /* padding:.5rem .75rem;*/
607
+ /* font-size:1rem;*/
608
+ /* line-height:1.5rem*/
609
+ /*}*/
610
+ :is([type=text],
611
+ input:where(:not([type])),
612
+ [type=email],
613
+ [type=url],
614
+ [type=password],
615
+ [type=number],
616
+ [type=date],
617
+ [type=datetime-local],
618
+ [type=month],
619
+ [type=search],
620
+ [type=tel],
621
+ [type=time],
622
+ [type=week],
623
+ [multiple],
624
+ textarea,
625
+ select):focus {
626
+ outline-offset:2px;
627
+ --tw-ring-inset:var(--tw-empty, );
628
+ --tw-ring-offset-width:0px;
629
+ --tw-ring-offset-color:#fff;
630
+ --tw-ring-color:oklch(54.6% .245 262.881);
631
+ --tw-ring-offset-shadow:var(--tw-ring-inset)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);
632
+ --tw-ring-shadow:var(--tw-ring-inset)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color);
633
+ box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
634
+ border-color:#155dfc;
635
+ outline:2px solid #0000
636
+ }
637
+ input::placeholder,
638
+ textarea::placeholder {
639
+ color:#6a7282;
640
+ opacity:1
641
+ }
642
+ ::-webkit-datetime-edit-fields-wrapper {
643
+ padding:0
644
+ }
645
+ ::-webkit-date-and-time-value {
646
+ min-height:1.5em
647
+ }
648
+ ::-webkit-date-and-time-value {
649
+ text-align:inherit
650
+ }
651
+ ::-webkit-datetime-edit {
652
+ display:inline-flex
653
+ }
654
+ ::-webkit-datetime-edit {
655
+ padding-top:0;
656
+ padding-bottom:0
657
+ }
658
+ ::-webkit-datetime-edit-year-field {
659
+ padding-top:0;
660
+ padding-bottom:0
661
+ }
662
+ ::-webkit-datetime-edit-month-field {
663
+ padding-top:0;
664
+ padding-bottom:0
665
+ }
666
+ ::-webkit-datetime-edit-day-field {
667
+ padding-top:0;
668
+ padding-bottom:0
669
+ }
670
+ ::-webkit-datetime-edit-hour-field {
671
+ padding-top:0;
672
+ padding-bottom:0
673
+ }
674
+ ::-webkit-datetime-edit-minute-field {
675
+ padding-top:0;
676
+ padding-bottom:0
677
+ }
678
+ ::-webkit-datetime-edit-second-field {
679
+ padding-top:0;
680
+ padding-bottom:0
681
+ }
682
+ ::-webkit-datetime-edit-millisecond-field {
683
+ padding-top:0;
684
+ padding-bottom:0
685
+ }
686
+ ::-webkit-datetime-edit-meridiem-field {
687
+ padding-top:0;
688
+ padding-bottom:0
689
+ }
690
+ select {
691
+ -webkit-print-color-adjust:exact;
692
+ print-color-adjust:exact;
693
+ background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='oklch(55.1%25 0.027 264.364)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
694
+ background-position:right .5rem center;
695
+ background-repeat:no-repeat;
696
+ background-size:1.5em 1.5em;
697
+ padding-right:2.5rem
698
+ }
699
+ [multiple],
700
+ [size]:where(select:not([size="1"])) {
701
+ background-image:initial;
702
+ background-position:initial;
703
+ background-repeat:unset;
704
+ background-size:initial;
705
+ -webkit-print-color-adjust:unset;
706
+ print-color-adjust:unset;
707
+ padding-right:.75rem
708
+ }
709
+ [type=checkbox],
710
+ [type=radio] {
711
+ -webkit-appearance:none;
712
+ -moz-appearance:none;
713
+ appearance:none;
714
+ -webkit-print-color-adjust:exact;
715
+ print-color-adjust:exact;
716
+ vertical-align:middle;
717
+ -webkit-user-select:none;
718
+ user-select:none;
719
+ color:#155dfc;
720
+ --tw-shadow:0 0 #0000;
721
+ background-color:#fff;
722
+ background-origin:border-box;
723
+ border-width:1px;
724
+ border-color:#6a7282;
725
+ flex-shrink:0;
726
+ width:1rem;
727
+ height:1rem;
728
+ padding:0;
729
+ display:inline-block
730
+ }
731
+ [type=checkbox] {
732
+ border-radius:0
733
+ }
734
+ [type=radio] {
735
+ border-radius:100%
736
+ }
737
+ [type=checkbox]:focus,
738
+ [type=radio]:focus {
739
+ outline-offset:2px;
740
+ --tw-ring-inset:var(--tw-empty, );
741
+ --tw-ring-offset-width:2px;
742
+ --tw-ring-offset-color:#fff;
743
+ --tw-ring-color:oklch(54.6% .245 262.881);
744
+ --tw-ring-offset-shadow:var(--tw-ring-inset)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);
745
+ --tw-ring-shadow:var(--tw-ring-inset)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color);
746
+ box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
747
+ outline:2px solid #0000
748
+ }
749
+ [type=checkbox]:checked,
750
+ [type=radio]:checked {
751
+ background-color:currentColor;
752
+ background-position:50%;
753
+ background-repeat:no-repeat;
754
+ background-size:100% 100%;
755
+ border-color:#0000
756
+ }
757
+ [type=checkbox]:checked {
758
+ background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
759
+ }
760
+ @media (forced-colors:active) {
761
+ [type=checkbox]:checked {
762
+ -webkit-appearance:auto;
763
+ -moz-appearance:auto;
764
+ appearance:auto
765
+ }
766
+ }
767
+ [type=radio]:checked {
768
+ background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")
769
+ }
770
+ @media (forced-colors:active) {
771
+ [type=radio]:checked {
772
+ -webkit-appearance:auto;
773
+ -moz-appearance:auto;
774
+ appearance:auto
775
+ }
776
+ }
777
+ [type=checkbox]:checked:hover,
778
+ [type=checkbox]:checked:focus,
779
+ [type=radio]:checked:hover,
780
+ [type=radio]:checked:focus {
781
+ background-color:currentColor;
782
+ border-color:#0000
783
+ }
784
+ [type=checkbox]:indeterminate {
785
+ background-color:currentColor;
786
+ background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
787
+ background-position:50%;
788
+ background-repeat:no-repeat;
789
+ background-size:100% 100%;
790
+ border-color:#0000
791
+ }
792
+ @media (forced-colors:active) {
793
+ [type=checkbox]:indeterminate {
794
+ -webkit-appearance:auto;
795
+ -moz-appearance:auto;
796
+ appearance:auto
797
+ }
798
+ }
799
+ [type=checkbox]:indeterminate:hover,
800
+ [type=checkbox]:indeterminate:focus {
801
+ background-color:currentColor;
802
+ border-color:#0000
803
+ }
804
+ [type=file] {
805
+ background:unset;
806
+ border-color:inherit;
807
+ font-size:unset;
808
+ line-height:inherit;
809
+ border-width:0;
810
+ border-radius:0;
811
+ padding:0
812
+ }
813
+ [type=file]:focus {
814
+ outline:1px solid buttontext;
815
+ outline:1px auto -webkit-focus-ring-color
816
+ }
817
+ }
818
+ @layer components;
819
+ @layer utilities {
820
+ .\@container {
821
+ container-type:inline-size
822
+ }
823
+ .pointer-events-none {
824
+ pointer-events:none
825
+ }
826
+ .visible {
827
+ visibility:visible
828
+ }
829
+ .table {
830
+ font-size:var(--text-sm);
831
+ line-height:var(--text-sm--line-height);
832
+ width:100%;
833
+ position:relative
834
+ }
835
+ .table thead {
836
+ color:var(--color-surface-700-300);
837
+ border-bottom-width:1px;
838
+ border-color:var(--color-surface-200-800)
839
+ }
840
+ .table th {
841
+ text-align:left;
842
+ font-weight:400
843
+ }
844
+ .table tbody>:not(:last-child) {
845
+ border-color:var(--color-surface-200-800);
846
+ border-top-width:0;
847
+ border-bottom-width:1px
848
+ }
849
+ .table tfoot {
850
+ border-top-width:1px;
851
+ border-color:var(--color-surface-200-800);
852
+ background-color:var(--color-surface-100-900)
853
+ }
854
+ .table th,
855
+ .table td {
856
+ padding:calc(var(--spacing)*2)
857
+ }
858
+ .table caption {
859
+ color:var(--color-surface-600-400);
860
+ font-size:var(--text-xs);
861
+ line-height:var(--text-xs--line-height)
862
+ }
863
+ .absolute {
864
+ position:absolute
865
+ }
866
+ .fixed {
867
+ position:fixed
868
+ }
869
+ .relative {
870
+ position:relative
871
+ }
872
+ .static {
873
+ position:static
874
+ }
875
+ .top-0 {
876
+ top:calc(var(--spacing)*0)
877
+ }
878
+ .top-\[var\(--top\)\] {
879
+ top:var(--top)
880
+ }
881
+ .right-0 {
882
+ right:calc(var(--spacing)*0)
883
+ }
884
+ .bottom-0 {
885
+ bottom:calc(var(--spacing)*0)
886
+ }
887
+ .left-0 {
888
+ left:calc(var(--spacing)*0)
889
+ }
890
+ .left-\[var\(--left\)\] {
891
+ left:var(--left)
892
+ }
893
+ .isolate {
894
+ isolation:isolate
895
+ }
896
+ .z-15 {
897
+ z-index:15
898
+ }
899
+ .z-\[1\] {
900
+ z-index:1
901
+ }
902
+ .z-\[888\] {
903
+ z-index:888
904
+ }
905
+ .z-\[998\] {
906
+ z-index:998
907
+ }
908
+ .z-\[999\] {
909
+ z-index:999
910
+ }
911
+ .container {
912
+ width:100%
913
+ }
914
+ @media (min-width:40rem) {
915
+ .container {
916
+ max-width:40rem
917
+ }
918
+ }
919
+ @media (min-width:48rem) {
920
+ .container {
921
+ max-width:48rem
922
+ }
923
+ }
924
+ @media (min-width:64rem) {
925
+ .container {
926
+ max-width:64rem
927
+ }
928
+ }
929
+ @media (min-width:80rem) {
930
+ .container {
931
+ max-width:80rem
932
+ }
933
+ }
934
+ @media (min-width:96rem) {
935
+ .container {
936
+ max-width:96rem
937
+ }
938
+ }
939
+ .m-4 {
940
+ margin:calc(var(--spacing)*4)
941
+ }
942
+ .m-auto {
943
+ margin:auto
944
+ }
945
+ .my-4 {
946
+ margin-block:calc(var(--spacing)*4)
947
+ }
948
+ .label {
949
+ width:100%;
950
+ display:block
951
+ }
952
+ .label>*+* {
953
+ margin-top:calc(var(--spacing)*1)
954
+ }
955
+ .mt-2 {
956
+ margin-top:calc(var(--spacing)*2)
957
+ }
958
+ .mt-4 {
959
+ margin-top:calc(var(--spacing)*4)
960
+ }
961
+ .mt-6 {
962
+ margin-top:calc(var(--spacing)*6)
963
+ }
964
+ .mt-8 {
965
+ margin-top:calc(var(--spacing)*8)
966
+ }
967
+ .mt-16 {
968
+ margin-top:calc(var(--spacing)*16)
969
+ }
970
+ .input {
971
+ border-radius:var(--radius-base);
972
+ width:100%;
973
+ font-size:var(--text-base);
974
+ line-height:var(--text-base--line-height);
975
+ padding-block:calc(var(--spacing)*1);
976
+ padding-inline:calc(var(--spacing)*3);
977
+ --tw-ring-inset:inset;
978
+ --tw-ring-color:var(--color-surface-200-800);
979
+ --tw-ring-shadow:var(--tw-ring-inset,)0 0 0 var(--default-ring-width)var(--tw-ring-color,currentColor);
980
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
981
+ background-color:#0000;
982
+ border-width:0;
983
+ outline-color:#0000;
984
+ display:block
985
+ }
986
+ .input:active,
987
+ .input:focus,
988
+ .input:focus-within {
989
+ --tw-ring-color:var(--color-primary-500)
990
+ }
991
+ .input[type=file]::file-selector-button {
992
+ cursor:pointer;
993
+ border-radius:var(--radius-base);
994
+ background-color:var(--color-surface-950-50);
995
+ color:var(--color-surface-50-950);
996
+ transform:translateY(calc(var(--spacing)*-.5));
997
+ margin-right:calc(var(--spacing)*2);
998
+ text-transform:capitalize;
999
+ font-size:var(--text-xs);
1000
+ height:var(--text-xs--line-height);
1001
+ padding-block:calc(var(--spacing)*0);
1002
+ padding-inline:calc(var(--spacing)*3)
1003
+ }
1004
+ .input[type=range] {
1005
+ accent-color:var(--color-surface-950-50);
1006
+ box-shadow:none;
1007
+ padding-inline:initial
1008
+ }
1009
+ .input[type=color] {
1010
+ border-radius:var(--radius-base);
1011
+ width:calc(var(--spacing)*8.5);
1012
+ height:calc(var(--spacing)*8.5);
1013
+ -webkit-appearance:none;
1014
+ border:none;
1015
+ outline:none;
1016
+ padding:0
1017
+ }
1018
+ .input[type=color]::-webkit-color-swatch-wrapper {
1019
+ padding:0
1020
+ }
1021
+ .input[type=color]::-webkit-color-swatch {
1022
+ border-radius:var(--radius-base);
1023
+ border:none
1024
+ }
1025
+ .input[type=color]::-moz-color-swatch {
1026
+ border:none
1027
+ }
1028
+ .mb-2 {
1029
+ margin-bottom:calc(var(--spacing)*2)
1030
+ }
1031
+ .mb-4 {
1032
+ margin-bottom:calc(var(--spacing)*4)
1033
+ }
1034
+ .mb-6 {
1035
+ margin-bottom:calc(var(--spacing)*6)
1036
+ }
1037
+ .mb-8 {
1038
+ margin-bottom:calc(var(--spacing)*8)
1039
+ }
1040
+ .mb-32 {
1041
+ margin-bottom:calc(var(--spacing)*32)
1042
+ }
1043
+ .ml-2 {
1044
+ margin-left:calc(var(--spacing)*2)
1045
+ }
1046
+ .btn-icon {
1047
+ box-sizing:content-box;
1048
+ border-radius:var(--radius-base);
1049
+ white-space:nowrap;
1050
+ font-size:var(--text-base);
1051
+ width:var(--text-base);
1052
+ height:var(--text-base);
1053
+ padding:calc(var(--spacing)*2);
1054
+ justify-content:center;
1055
+ align-items:center;
1056
+ text-decoration-line:none;
1057
+ display:inline-flex
1058
+ }
1059
+ .btn-icon:not(:disabled):hover {
1060
+ filter:brightness(125%)
1061
+ }
1062
+ .btn-icon:not(:disabled):hover:where(.dark,
1063
+ .dark *) {
1064
+ filter:brightness(75%)
1065
+ }
1066
+ .ig-input {
1067
+ width:100%;
1068
+ font-size:var(--text-base);
1069
+ line-height:var(--text-base--line-height);
1070
+ padding-block:calc(var(--spacing)*1);
1071
+ padding-inline:calc(var(--spacing)*3);
1072
+ --tw-ring-inset:inset;
1073
+ background-color:#0000;
1074
+ border-width:0;
1075
+ outline-color:#0000;
1076
+ display:block
1077
+ }
1078
+ .ig-input:active,
1079
+ .ig-input:focus,
1080
+ .ig-input:focus-within {
1081
+ --tw-ring-color:var(--color-primary-500)
1082
+ }
1083
+ .btn {
1084
+ border-radius:var(--radius-base);
1085
+ justify-content:center;
1086
+ align-items:center;
1087
+ gap:calc(var(--spacing)*2);
1088
+ white-space:nowrap;
1089
+ font-size:var(--text-base);
1090
+ line-height:var(--text-base--line-height);
1091
+ padding-block:calc(var(--spacing)*1);
1092
+ padding-inline:calc(var(--spacing)*4);
1093
+ transition-property:all;
1094
+ transition-timing-function:var(--default-transition-timing-function);
1095
+ transition-duration:var(--default-transition-duration);
1096
+ flex-direction:row;
1097
+ text-decoration-line:none;
1098
+ display:inline-flex
1099
+ }
1100
+ .btn:not(:disabled):hover {
1101
+ filter:brightness(125%)
1102
+ }
1103
+ .btn:not(:disabled):hover:where(.dark,
1104
+ .dark *) {
1105
+ filter:brightness(75%)
1106
+ }
1107
+ .chip {
1108
+ border-radius:var(--radius-base);
1109
+ justify-content:center;
1110
+ align-items:center;
1111
+ gap:calc(var(--spacing)*2);
1112
+ white-space:nowrap;
1113
+ font-size:var(--text-xs);
1114
+ line-height:var(--text-xs--line-height);
1115
+ padding-block:calc(var(--spacing)*1);
1116
+ padding-inline:calc(var(--spacing)*3);
1117
+ transition-property:all;
1118
+ transition-timing-function:var(--default-transition-timing-function);
1119
+ transition-duration:var(--default-transition-duration);
1120
+ flex-direction:row;
1121
+ text-decoration-line:none;
1122
+ display:inline-flex
1123
+ }
1124
+ @media (hover:hover) {
1125
+ .chip:hover {
1126
+ filter:brightness(125%)
1127
+ }
1128
+ .chip:hover:where(.dark,
1129
+ .dark *) {
1130
+ filter:brightness(75%)
1131
+ }
1132
+ }
1133
+ .badge {
1134
+ border-radius:var(--radius-base);
1135
+ justify-content:center;
1136
+ align-items:center;
1137
+ gap:calc(var(--spacing)*2);
1138
+ white-space:nowrap;
1139
+ font-size:var(--text-xs);
1140
+ line-height:var(--text-xs--line-height);
1141
+ padding-block:calc(var(--spacing)*1);
1142
+ padding-inline:calc(var(--spacing)*3);
1143
+ flex-direction:row;
1144
+ text-decoration-line:none;
1145
+ display:inline-flex
1146
+ }
1147
+ .ig-btn {
1148
+ justify-content:center;
1149
+ align-items:center;
1150
+ gap:calc(var(--spacing)*2);
1151
+ white-space:nowrap;
1152
+ font-size:var(--text-base);
1153
+ line-height:var(--text-base--line-height);
1154
+ padding-block:calc(var(--spacing)*1);
1155
+ padding-inline:calc(var(--spacing)*4);
1156
+ transition-property:all;
1157
+ transition-timing-function:var(--default-transition-timing-function);
1158
+ transition-duration:var(--default-transition-duration);
1159
+ flex-direction:row;
1160
+ text-decoration-line:none;
1161
+ display:inline-flex
1162
+ }
1163
+ @media (hover:hover) {
1164
+ .ig-btn:hover {
1165
+ filter:brightness(125%)
1166
+ }
1167
+ .ig-btn:hover:where(.dark,
1168
+ .dark *) {
1169
+ filter:brightness(75%)
1170
+ }
1171
+ }
1172
+ .btn-group {
1173
+ border-radius:var(--radius-container);
1174
+ align-items:center;
1175
+ gap:calc(var(--spacing)*2);
1176
+ padding:calc(var(--spacing)*2);
1177
+ display:inline-flex;
1178
+ overflow:hidden
1179
+ }
1180
+ .input-group {
1181
+ border-radius:var(--radius-base);
1182
+ --tw-ring-inset:inset;
1183
+ --tw-ring-color:var(--color-surface-200-800);
1184
+ --tw-ring-shadow:var(--tw-ring-inset,)0 0 0 var(--default-ring-width)var(--tw-ring-color,currentColor);
1185
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
1186
+ border-width:0;
1187
+ outline-color:#0000;
1188
+ align-items:stretch;
1189
+ display:grid;
1190
+ overflow:hidden
1191
+ }
1192
+ .input-group>:first-child {
1193
+ border-top-left-radius:var(--radius-base);
1194
+ border-bottom-left-radius:var(--radius-base)
1195
+ }
1196
+ .input-group>:last-child {
1197
+ border-top-right-radius:var(--radius-base);
1198
+ border-bottom-right-radius:var(--radius-base)
1199
+ }
1200
+ .input-group>*+* {
1201
+ border-color:var(--color-surface-200-800);
1202
+ border-left-width:1px!important
1203
+ }
1204
+ .label-text {
1205
+ font-size:var(--text-xs);
1206
+ line-height:var(--text-xs--line-height);
1207
+ font-weight:var(--font-weight-medium);
1208
+ text-decoration-line:none;
1209
+ display:block
1210
+ }
1211
+ .block {
1212
+ display:block
1213
+ }
1214
+ .contents {
1215
+ display:contents
1216
+ }
1217
+ .flex {
1218
+ display:flex
1219
+ }
1220
+ .grid {
1221
+ display:grid
1222
+ }
1223
+ .hidden {
1224
+ display:none
1225
+ }
1226
+ .inline-block {
1227
+ display:inline-block
1228
+ }
1229
+ .inline-flex {
1230
+ display:inline-flex
1231
+ }
1232
+ .table {
1233
+ display:table
1234
+ }
1235
+ .placeholder-circle {
1236
+ aspect-ratio:1;
1237
+ background-color:var(--color-surface-200-800);
1238
+ min-height:calc(var(--spacing)*5);
1239
+ border-radius:100%
1240
+ }
1241
+ .aspect-square {
1242
+ aspect-ratio:1
1243
+ }
1244
+ .radio {
1245
+ --tw-ring-color:var(--color-surface-200-800);
1246
+ cursor:pointer;
1247
+ background-color:var(--color-surface-300-700);
1248
+ border-radius:var(--radius-sm);
1249
+ height:calc(var(--spacing)*5);
1250
+ width:calc(var(--spacing)*5);
1251
+ border-radius:100%
1252
+ }
1253
+ .radio:focus-within {
1254
+ --tw-ring-color:var(--color-primary-500)
1255
+ }
1256
+ @media (hover:hover) {
1257
+ .radio:hover {
1258
+ filter:brightness(105%)
1259
+ }
1260
+ }
1261
+ .radio:focus {
1262
+ filter:brightness(105%)
1263
+ }
1264
+ .radio:checked {
1265
+ background-color:var(--color-primary-500)
1266
+ }
1267
+ @media (hover:hover) {
1268
+ .radio:checked:hover {
1269
+ background-color:var(--color-primary-500)
1270
+ }
1271
+ }
1272
+ .radio:checked:focus {
1273
+ background-color:var(--color-primary-500);
1274
+ border:0
1275
+ }
1276
+ .progress {
1277
+ webkit-appearance:none;
1278
+ -webkit-appearance:none;
1279
+ -moz-appearance:none;
1280
+ appearance:none;
1281
+ border-radius:var(--radius-base);
1282
+ background-color:var(--color-surface-200-800);
1283
+ width:100%;
1284
+ height:calc(var(--spacing)*2);
1285
+ overflow:hidden
1286
+ }
1287
+ .progress::-webkit-progress-bar {
1288
+ background-color:var(--color-surface-200-800)
1289
+ }
1290
+ .progress::-webkit-progress-value {
1291
+ background-color:var(--color-surface-950-50)
1292
+ }
1293
+ .progress::-moz-progress-bar {
1294
+ background-color:var(--color-surface-950-50)
1295
+ }
1296
+ .progress:indeterminate::-moz-progress-bar {
1297
+ width:0
1298
+ }
1299
+ .btn-icon-sm {
1300
+ font-size:var(--text-xs);
1301
+ width:var(--text-xs);
1302
+ height:var(--text-xs);
1303
+ padding:calc(var(--spacing)*1.5)
1304
+ }
1305
+ .size-8 {
1306
+ width:calc(var(--spacing)*8);
1307
+ height:calc(var(--spacing)*8)
1308
+ }
1309
+ .size-16 {
1310
+ width:calc(var(--spacing)*16);
1311
+ height:calc(var(--spacing)*16)
1312
+ }
1313
+ .size-32 {
1314
+ width:calc(var(--spacing)*32);
1315
+ height:calc(var(--spacing)*32)
1316
+ }
1317
+ .size-\[2rem\] {
1318
+ width:2rem;
1319
+ height:2rem
1320
+ }
1321
+ .size-\[3rem\] {
1322
+ width:3rem;
1323
+ height:3rem
1324
+ }
1325
+ .size-full {
1326
+ width:100%;
1327
+ height:100%
1328
+ }
1329
+ .\!h-auto {
1330
+ height:auto!important
1331
+ }
1332
+ .h-1\.5 {
1333
+ height:calc(var(--spacing)*1.5)
1334
+ }
1335
+ .h-2 {
1336
+ height:calc(var(--spacing)*2)
1337
+ }
1338
+ .h-6 {
1339
+ height:calc(var(--spacing)*6)
1340
+ }
1341
+ .h-12 {
1342
+ height:calc(var(--spacing)*12)
1343
+ }
1344
+ .h-20 {
1345
+ height:calc(var(--spacing)*20)
1346
+ }
1347
+ .h-\[var\(--height\)\] {
1348
+ height:var(--height)
1349
+ }
1350
+ .h-full {
1351
+ height:100%
1352
+ }
1353
+ .max-h-64 {
1354
+ max-height:calc(var(--spacing)*64)
1355
+ }
1356
+ .placeholder {
1357
+ background-color:var(--color-surface-200-800);
1358
+ border-radius:var(--radius-base);
1359
+ min-height:calc(var(--spacing)*4)
1360
+ }
1361
+ .w-10 {
1362
+ width:calc(var(--spacing)*10)
1363
+ }
1364
+ .w-12 {
1365
+ width:calc(var(--spacing)*12)
1366
+ }
1367
+ .w-24 {
1368
+ width:calc(var(--spacing)*24)
1369
+ }
1370
+ .w-64 {
1371
+ width:calc(var(--spacing)*64)
1372
+ }
1373
+ .w-\[105vw\] {
1374
+ width:105vw
1375
+ }
1376
+ .w-\[var\(--width\)\] {
1377
+ width:var(--width)
1378
+ }
1379
+ .w-full {
1380
+ width:100%
1381
+ }
1382
+ .w-lg {
1383
+ width:var(--container-lg)
1384
+ }
1385
+ .max-w-2xl {
1386
+ max-width:var(--container-2xl)
1387
+ }
1388
+ .max-w-3xl {
1389
+ max-width:var(--container-3xl)
1390
+ }
1391
+ .max-w-4xl {
1392
+ max-width:var(--container-4xl)
1393
+ }
1394
+ .max-w-md {
1395
+ max-width:var(--container-md)
1396
+ }
1397
+ .max-w-xl {
1398
+ max-width:var(--container-xl)
1399
+ }
1400
+ .max-w-xs {
1401
+ max-width:var(--container-xs)
1402
+ }
1403
+ .min-w-\[320px\] {
1404
+ min-width:320px
1405
+ }
1406
+ .flex-1 {
1407
+ flex:1
1408
+ }
1409
+ .flex-grow,
1410
+ .grow {
1411
+ flex-grow:1
1412
+ }
1413
+ .translate-x-4 {
1414
+ --tw-translate-x:calc(var(--spacing)*4);
1415
+ translate:var(--tw-translate-x)var(--tw-translate-y)
1416
+ }
1417
+ .translate-y-\[1px\] {
1418
+ --tw-translate-y:1px;
1419
+ translate:var(--tw-translate-x)var(--tw-translate-y)
1420
+ }
1421
+ .transform {
1422
+ transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)
1423
+ }
1424
+ .animate-progress-indeterminate {
1425
+ animation:var(--animate-progress-indeterminate)
1426
+ }
1427
+ .animate-pulse {
1428
+ animation:var(--animate-pulse)
1429
+ }
1430
+ .animate-ring-indeterminate {
1431
+ animation:var(--animate-ring-indeterminate)
1432
+ }
1433
+ .animate-spin {
1434
+ animation:var(--animate-spin)
1435
+ }
1436
+ .cursor-not-allowed {
1437
+ cursor:not-allowed
1438
+ }
1439
+ .cursor-pointer {
1440
+ cursor:pointer
1441
+ }
1442
+ .grid-cols-1 {
1443
+ grid-template-columns:repeat(1,minmax(0,1fr))
1444
+ }
1445
+ .grid-cols-\[1fr_auto\] {
1446
+ grid-template-columns:1fr auto
1447
+ }
1448
+ .grid-cols-\[auto_1fr_auto\] {
1449
+ grid-template-columns:auto 1fr auto
1450
+ }
1451
+ .flex-col {
1452
+ flex-direction:column
1453
+ }
1454
+ .flex-row {
1455
+ flex-direction:row
1456
+ }
1457
+ .flex-wrap {
1458
+ flex-wrap:wrap
1459
+ }
1460
+ .items-center {
1461
+ align-items:center
1462
+ }
1463
+ .items-end {
1464
+ align-items:flex-end
1465
+ }
1466
+ .items-stretch {
1467
+ align-items:stretch
1468
+ }
1469
+ .justify-between {
1470
+ justify-content:space-between
1471
+ }
1472
+ .justify-center {
1473
+ justify-content:center
1474
+ }
1475
+ .justify-start {
1476
+ justify-content:flex-start
1477
+ }
1478
+ .gap-1 {
1479
+ gap:calc(var(--spacing)*1)
1480
+ }
1481
+ .gap-2 {
1482
+ gap:calc(var(--spacing)*2)
1483
+ }
1484
+ .gap-4 {
1485
+ gap:calc(var(--spacing)*4)
1486
+ }
1487
+ .gap-6 {
1488
+ gap:calc(var(--spacing)*6)
1489
+ }
1490
+ :where(.space-y-1>:not(:last-child)) {
1491
+ --tw-space-y-reverse:0;
1492
+ margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));
1493
+ margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))
1494
+ }
1495
+ :where(.space-y-2>:not(:last-child)) {
1496
+ --tw-space-y-reverse:0;
1497
+ margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));
1498
+ margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))
1499
+ }
1500
+ :where(.space-y-4>:not(:last-child)) {
1501
+ --tw-space-y-reverse:0;
1502
+ margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));
1503
+ margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))
1504
+ }
1505
+ :where(.space-x-4>:not(:last-child)) {
1506
+ --tw-space-x-reverse:0;
1507
+ margin-inline-start:calc(calc(var(--spacing)*4)*var(--tw-space-x-reverse));
1508
+ margin-inline-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-x-reverse)))
1509
+ }
1510
+ .overflow-hidden {
1511
+ overflow:hidden
1512
+ }
1513
+ .code:not(pre .code,
1514
+ .ec-line .code) {
1515
+ color:var(--color-primary-contrast-50-950);
1516
+ background-color:var(--color-primary-100-900);
1517
+ border-radius:var(--radius-base);
1518
+ font-family:var(--font-mono);
1519
+ font-size:var(--text-xs);
1520
+ white-space:nowrap;
1521
+ padding-inline:calc(var(--spacing)*1.5);
1522
+ padding-block:calc(var(--spacing)*.75);
1523
+ overflow-x:auto
1524
+ }
1525
+ .overflow-x-hidden {
1526
+ overflow-x:hidden
1527
+ }
1528
+ .card {
1529
+ border-radius:var(--radius-container)
1530
+ }
1531
+ a.card {
1532
+ transition-property:all;
1533
+ transition-timing-function:var(--default-transition-timing-function);
1534
+ transition-duration:var(--default-transition-duration)
1535
+ }
1536
+ @media (hover:hover) {
1537
+ a.card:hover {
1538
+ filter:brightness(95%)
1539
+ }
1540
+ a.card:hover:where(.dark,
1541
+ .dark *) {
1542
+ filter:brightness(110%)
1543
+ }
1544
+ }
1545
+ .rounded {
1546
+ border-radius:.25rem
1547
+ }
1548
+ .rounded-2xl {
1549
+ border-radius:var(--radius-2xl)
1550
+ }
1551
+ .rounded-base {
1552
+ border-radius:var(--radius-base)
1553
+ }
1554
+ .rounded-container {
1555
+ border-radius:var(--radius-container)
1556
+ }
1557
+ .rounded-full {
1558
+ border-radius:3.40282e38px
1559
+ }
1560
+ .rounded-xl {
1561
+ border-radius:var(--radius-xl)
1562
+ }
1563
+ .rounded-t-xl {
1564
+ border-top-left-radius:var(--radius-xl);
1565
+ border-top-right-radius:var(--radius-xl)
1566
+ }
1567
+ .border {
1568
+ border-style:var(--tw-border-style);
1569
+ border-width:1px
1570
+ }
1571
+ .border-0 {
1572
+ border-style:var(--tw-border-style);
1573
+ border-width:0
1574
+ }
1575
+ .border-1 {
1576
+ border-style:var(--tw-border-style);
1577
+ border-width:1px
1578
+ }
1579
+ .border-2 {
1580
+ border-style:var(--tw-border-style);
1581
+ border-width:2px
1582
+ }
1583
+ .border-\[1px\] {
1584
+ border-style:var(--tw-border-style);
1585
+ border-width:1px
1586
+ }
1587
+ .border-\[2px\] {
1588
+ border-style:var(--tw-border-style);
1589
+ border-width:2px
1590
+ }
1591
+ .preset-outlined-primary-300-700 {
1592
+ border-width:1px;
1593
+ border-color:var(--color-primary-300-700)
1594
+ }
1595
+ .preset-outlined-primary-500 {
1596
+ border-width:1px;
1597
+ border-color:var(--color-primary-500)
1598
+ }
1599
+ .preset-outlined-surface-200-800 {
1600
+ border-width:1px;
1601
+ border-color:var(--color-surface-200-800)
1602
+ }
1603
+ .border-b-\[1px\] {
1604
+ border-bottom-style:var(--tw-border-style);
1605
+ border-bottom-width:1px
1606
+ }
1607
+ .blockquote {
1608
+ border-left-width:3px;
1609
+ border-left-color:var(--color-primary-500);
1610
+ padding-left:calc(var(--spacing)*4);
1611
+ font-style:italic
1612
+ }
1613
+ .border-dashed {
1614
+ --tw-border-style:dashed;
1615
+ border-style:dashed
1616
+ }
1617
+ .input-ghost {
1618
+ --tw-ring-color:transparent;
1619
+ background-color:#0000;
1620
+ border-color:#0000;
1621
+ outline-color:#0000;
1622
+ padding:0
1623
+ }
1624
+ .input-ghost:active,
1625
+ .input-ghost:focus,
1626
+ .input-ghost:focus-within {
1627
+ border-color:#0000!important
1628
+ }
1629
+ .border-error-500 {
1630
+ border-color:var(--color-error-500)
1631
+ }
1632
+ .border-primary-500 {
1633
+ border-color:var(--color-primary-500)
1634
+ }
1635
+ .border-surface-200-800 {
1636
+ border-color:light-dark(var(--color-surface-200),var(--color-surface-800))
1637
+ }
1638
+ .border-transparent {
1639
+ border-color:#0000
1640
+ }
1641
+ .border-b-surface-950-50 {
1642
+ border-bottom-color:light-dark(var(--color-surface-950),var(--color-surface-50))
1643
+ }
1644
+ .preset-filled {
1645
+ color:var(--color-surface-50-950);
1646
+ background-color:var(--color-surface-950-50)
1647
+ }
1648
+ .preset-filled-error-500 {
1649
+ color:var(--color-error-contrast-500);
1650
+ background-color:var(--color-error-500)
1651
+ }
1652
+ .preset-filled-primary-400-600 {
1653
+ color:var(--color-primary-contrast-400-600);
1654
+ background-color:var(--color-primary-400-600)
1655
+ }
1656
+ .preset-filled-primary-500 {
1657
+ color:var(--color-primary-contrast-500);
1658
+ background-color:var(--color-primary-500)
1659
+ }
1660
+ .preset-filled-success-500 {
1661
+ color:var(--color-success-contrast-500);
1662
+ background-color:var(--color-success-500)
1663
+ }
1664
+ .preset-filled-surface-50-950 {
1665
+ color:var(--color-surface-contrast-50-950);
1666
+ background-color:var(--color-surface-50-950)
1667
+ }
1668
+ .preset-filled-surface-100-900 {
1669
+ color:var(--color-surface-contrast-100-900);
1670
+ background-color:var(--color-surface-100-900)
1671
+ }
1672
+ .preset-filled-surface-200-800 {
1673
+ color:var(--color-surface-contrast-200-800);
1674
+ background-color:var(--color-surface-200-800)
1675
+ }
1676
+ .preset-filled-surface-800-200 {
1677
+ color:var(--color-surface-contrast-800-200);
1678
+ background-color:var(--color-surface-800-200)
1679
+ }
1680
+ .preset-filled-warning-600-400 {
1681
+ color:var(--color-warning-contrast-600-400);
1682
+ background-color:var(--color-warning-600-400)
1683
+ }
1684
+ .\!bg-surface-200 {
1685
+ background-color:var(--color-surface-200)!important
1686
+ }
1687
+ .\!bg-white {
1688
+ background-color:var(--color-white)!important
1689
+ }
1690
+ .bg-primary-100 {
1691
+ background-color:var(--color-primary-100)
1692
+ }
1693
+ .bg-primary-400-600 {
1694
+ background-color:light-dark(var(--color-primary-400),var(--color-primary-600))
1695
+ }
1696
+ .bg-secondary-400 {
1697
+ background-color:var(--color-secondary-400)
1698
+ }
1699
+ .bg-secondary-400-600 {
1700
+ background-color:light-dark(var(--color-secondary-400),var(--color-secondary-600))
1701
+ }
1702
+ .bg-surface-50 {
1703
+ background-color:var(--color-surface-50)
1704
+ }
1705
+ .bg-surface-50-950 {
1706
+ background-color:light-dark(var(--color-surface-50),var(--color-surface-950))
1707
+ }
1708
+ .bg-surface-50\/75 {
1709
+ background-color:#fafafabf
1710
+ }
1711
+ @supports (color:color-mix(in lab,red,red)) {
1712
+ .bg-surface-50\/75 {
1713
+ background-color:color-mix(in oklab,var(--color-surface-50)75%,transparent)
1714
+ }
1715
+ }
1716
+ .bg-surface-100 {
1717
+ background-color:var(--color-surface-100)
1718
+ }
1719
+ .bg-surface-100-900 {
1720
+ background-color:light-dark(var(--color-surface-100),var(--color-surface-900))
1721
+ }
1722
+ .bg-surface-200 {
1723
+ background-color:var(--color-surface-200)
1724
+ }
1725
+ .bg-surface-200-800 {
1726
+ background-color:light-dark(var(--color-surface-200),var(--color-surface-800))
1727
+ }
1728
+ .bg-surface-400-600 {
1729
+ background-color:light-dark(var(--color-surface-400),var(--color-surface-600))
1730
+ }
1731
+ .bg-surface-600 {
1732
+ background-color:var(--color-surface-600)
1733
+ }
1734
+ .bg-surface-700 {
1735
+ background-color:var(--color-surface-700)
1736
+ }
1737
+ .bg-surface-950-50 {
1738
+ background-color:light-dark(var(--color-surface-950),var(--color-surface-50))
1739
+ }
1740
+ .bg-transparent {
1741
+ background-color:#0000
1742
+ }
1743
+ .bg-warning-700 {
1744
+ background-color:var(--color-warning-700)
1745
+ }
1746
+ .preset-tonal {
1747
+ background-color:light-dark(#0a0a0a0d,#fafafa0d)
1748
+ }
1749
+ @supports (color:color-mix(in lab,red,red)) {
1750
+ .preset-tonal {
1751
+ background-color:color-mix(in oklab,light-dark(var(--color-surface-950),var(--color-surface-50))5%,transparent)
1752
+ }
1753
+ }
1754
+ .fill-none {
1755
+ fill:none
1756
+ }
1757
+ .fill-surface-950-50 {
1758
+ fill:light-dark(var(--color-surface-950),var(--color-surface-50))
1759
+ }
1760
+ .stroke-primary-500 {
1761
+ stroke:var(--color-primary-500)
1762
+ }
1763
+ .stroke-surface-200-800 {
1764
+ stroke:light-dark(var(--color-surface-200),var(--color-surface-800))
1765
+ }
1766
+ .object-cover {
1767
+ object-fit:cover
1768
+ }
1769
+ .p-0\.5 {
1770
+ padding:calc(var(--spacing)*.5)
1771
+ }
1772
+ .p-1 {
1773
+ padding:calc(var(--spacing)*1)
1774
+ }
1775
+ .p-2 {
1776
+ padding:calc(var(--spacing)*2)
1777
+ }
1778
+ .p-3 {
1779
+ padding:calc(var(--spacing)*3)
1780
+ }
1781
+ .p-4 {
1782
+ padding:calc(var(--spacing)*4)
1783
+ }
1784
+ .p-12 {
1785
+ padding:calc(var(--spacing)*12)
1786
+ }
1787
+ .px-3 {
1788
+ padding-inline:calc(var(--spacing)*3)
1789
+ }
1790
+ .px-4 {
1791
+ padding-inline:calc(var(--spacing)*4)
1792
+ }
1793
+ .py-2 {
1794
+ padding-block:calc(var(--spacing)*2)
1795
+ }
1796
+ .py-3 {
1797
+ padding-block:calc(var(--spacing)*3)
1798
+ }
1799
+ .py-10 {
1800
+ padding-block:calc(var(--spacing)*10)
1801
+ }
1802
+ .pt-2 {
1803
+ padding-top:calc(var(--spacing)*2)
1804
+ }
1805
+ .pt-3 {
1806
+ padding-top:calc(var(--spacing)*3)
1807
+ }
1808
+ .pt-4 {
1809
+ padding-top:calc(var(--spacing)*4)
1810
+ }
1811
+ .pt-\[1lh\] {
1812
+ padding-top:1lh
1813
+ }
1814
+ .pr-3 {
1815
+ padding-right:calc(var(--spacing)*3)
1816
+ }
1817
+ .pr-4 {
1818
+ padding-right:calc(var(--spacing)*4)
1819
+ }
1820
+ .pr-6 {
1821
+ padding-right:calc(var(--spacing)*6)
1822
+ }
1823
+ .pr-8 {
1824
+ padding-right:calc(var(--spacing)*8)
1825
+ }
1826
+ .pr-16 {
1827
+ padding-right:calc(var(--spacing)*16)
1828
+ }
1829
+ .pb-2 {
1830
+ padding-bottom:calc(var(--spacing)*2)
1831
+ }
1832
+ .pb-3 {
1833
+ padding-bottom:calc(var(--spacing)*3)
1834
+ }
1835
+ .pb-8 {
1836
+ padding-bottom:calc(var(--spacing)*8)
1837
+ }
1838
+ .pb-\[1lh\] {
1839
+ padding-bottom:1lh
1840
+ }
1841
+ .pl-3 {
1842
+ padding-left:calc(var(--spacing)*3)
1843
+ }
1844
+ .pl-4 {
1845
+ padding-left:calc(var(--spacing)*4)
1846
+ }
1847
+ .pl-6 {
1848
+ padding-left:calc(var(--spacing)*6)
1849
+ }
1850
+ .pl-8 {
1851
+ padding-left:calc(var(--spacing)*8)
1852
+ }
1853
+ .pl-16 {
1854
+ padding-left:calc(var(--spacing)*16)
1855
+ }
1856
+ .text-center {
1857
+ text-align:center
1858
+ }
1859
+ .text-right {
1860
+ text-align:right
1861
+ }
1862
+ .text-start {
1863
+ text-align:start
1864
+ }
1865
+ .anchor {
1866
+ color:var(--anchor-font-color);
1867
+ font-family:var(--anchor-font-family);
1868
+ font-size:var(--anchor-font-size);
1869
+ line-height:var(--anchor-line-height);
1870
+ font-weight:var(--anchor-font-weight);
1871
+ font-style:var(--anchor-font-style);
1872
+ letter-spacing:var(--anchor-letter-spacing);
1873
+ -webkit-text-decoration:var(--anchor-text-decoration);
1874
+ text-decoration:var(--anchor-text-decoration)
1875
+ }
1876
+ @media (hover:hover) {
1877
+ .anchor:hover {
1878
+ -webkit-text-decoration:var(--anchor-text-decoration-hover);
1879
+ text-decoration:var(--anchor-text-decoration-hover)
1880
+ }
1881
+ }
1882
+ .anchor:active {
1883
+ -webkit-text-decoration:var(--anchor-text-decoration-active);
1884
+ text-decoration:var(--anchor-text-decoration-active)
1885
+ }
1886
+ .anchor:focus {
1887
+ -webkit-text-decoration:var(--anchor-text-decoration-focus);
1888
+ text-decoration:var(--anchor-text-decoration-focus)
1889
+ }
1890
+ .anchor:where(.dark,
1891
+ .dark *) {
1892
+ color:var(--anchor-font-color-dark)
1893
+ }
1894
+ .h2 {
1895
+ color:var(--heading-font-color);
1896
+ font-family:var(--heading-font-family);
1897
+ font-weight:var(--heading-font-weight);
1898
+ font-style:var(--heading-font-style);
1899
+ letter-spacing:var(--heading-letter-spacing);
1900
+ font-size:var(--text-3xl);
1901
+ line-height:var(--text-3xl--line-height)
1902
+ }
1903
+ @media (min-width:48rem) {
1904
+ .h2 {
1905
+ font-size:var(--text-4xl);
1906
+ line-height:var(--text-4xl--line-height)
1907
+ }
1908
+ }
1909
+ .h2:where(.dark,
1910
+ .dark *) {
1911
+ color:var(--heading-font-color-dark)
1912
+ }
1913
+ .h4 {
1914
+ color:var(--heading-font-color);
1915
+ font-family:var(--heading-font-family);
1916
+ font-weight:var(--heading-font-weight);
1917
+ font-style:var(--heading-font-style);
1918
+ letter-spacing:var(--heading-letter-spacing);
1919
+ font-size:var(--text-xl);
1920
+ line-height:var(--text-xl--line-height)
1921
+ }
1922
+ @media (min-width:48rem) {
1923
+ .h4 {
1924
+ font-size:var(--text-2xl);
1925
+ line-height:var(--text-2xl--line-height)
1926
+ }
1927
+ }
1928
+ .h4:where(.dark,
1929
+ .dark *) {
1930
+ color:var(--heading-font-color-dark)
1931
+ }
1932
+ .text-base {
1933
+ font-size:calc(1rem*var(--text-scaling));
1934
+ line-height:var(--tw-leading,calc( 1.5 *var(--text-scaling)))
1935
+ }
1936
+ .text-sm {
1937
+ font-size:calc(.875rem*var(--text-scaling));
1938
+ line-height:var(--tw-leading,calc(calc(1.25/.875)*var(--text-scaling)))
1939
+ }
1940
+ .text-xl {
1941
+ font-size:calc(1.25rem*var(--text-scaling));
1942
+ line-height:var(--tw-leading,calc(calc(1.75/1.25)*var(--text-scaling)))
1943
+ }
1944
+ .text-xs {
1945
+ font-size:calc(.75rem*var(--text-scaling));
1946
+ line-height:var(--tw-leading,calc(calc(1/.75)*var(--text-scaling)))
1947
+ }
1948
+ .text-\[10px\] {
1949
+ font-size:10px
1950
+ }
1951
+ .font-bold {
1952
+ --tw-font-weight:var(--font-weight-bold);
1953
+ font-weight:var(--font-weight-bold)
1954
+ }
1955
+ .whitespace-nowrap {
1956
+ white-space:nowrap
1957
+ }
1958
+ .text-primary-900-100 {
1959
+ color:light-dark(var(--color-primary-900),var(--color-primary-100))
1960
+ }
1961
+ .text-secondary-0 {
1962
+ color:var(--color-secondary-0)
1963
+ }
1964
+ .text-secondary-950 {
1965
+ color:var(--color-secondary-950)
1966
+ }
1967
+ .text-surface-50-950 {
1968
+ color:light-dark(var(--color-surface-50),var(--color-surface-950))
1969
+ }
1970
+ .text-surface-100 {
1971
+ color:var(--color-surface-100)
1972
+ }
1973
+ .text-surface-100-900 {
1974
+ color:light-dark(var(--color-surface-100),var(--color-surface-900))
1975
+ }
1976
+ .text-surface-contrast-50 {
1977
+ color:var(--color-surface-contrast-50)
1978
+ }
1979
+ .text-surface-contrast-950 {
1980
+ color:var(--color-surface-contrast-950)
1981
+ }
1982
+ .opacity-50 {
1983
+ opacity:.5
1984
+ }
1985
+ .opacity-60 {
1986
+ opacity:.6
1987
+ }
1988
+ .opacity-100 {
1989
+ opacity:1
1990
+ }
1991
+ .shadow {
1992
+ --tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);
1993
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)
1994
+ }
1995
+ .shadow-md {
1996
+ --tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);
1997
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)
1998
+ }
1999
+ .shadow-none {
2000
+ --tw-shadow:0 0 #0000;
2001
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)
2002
+ }
2003
+ .shadow-xl {
2004
+ --tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);
2005
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)
2006
+ }
2007
+ .ring {
2008
+ --tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
2009
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)
2010
+ }
2011
+ .ring-2 {
2012
+ --tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
2013
+ box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)
2014
+ }
2015
+ .ring-surface-950-50 {
2016
+ --tw-ring-color:light-dark(var(--color-surface-950),var(--color-surface-50))
2017
+ }
2018
+ .invert {
2019
+ --tw-invert:invert(100%);
2020
+ 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,)
2021
+ }
2022
+ .card-hover {
2023
+ transition-property:all;
2024
+ transition-timing-function:var(--default-transition-timing-function);
2025
+ transition-duration:var(--default-transition-duration)
2026
+ }
2027
+ @media (hover:hover) {
2028
+ .card-hover:hover {
2029
+ filter:brightness(95%)
2030
+ }
2031
+ .card-hover:hover:where(.dark,
2032
+ .dark *) {
2033
+ filter:brightness(110%)
2034
+ }
2035
+ }
2036
+ .filter {
2037
+ 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,)
2038
+ }
2039
+ .backdrop-filter {
2040
+ -webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);
2041
+ backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)
2042
+ }
2043
+ .transition {
2044
+ 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,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;
2045
+ transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
2046
+ transition-duration:var(--tw-duration,var(--default-transition-duration))
2047
+ }
2048
+ .transition-\[stroke-dashoffset\] {
2049
+ transition-property:stroke-dashoffset;
2050
+ transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
2051
+ transition-duration:var(--tw-duration,var(--default-transition-duration))
2052
+ }
2053
+ .transition-\[width\] {
2054
+ transition-property:width;
2055
+ transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
2056
+ transition-duration:var(--tw-duration,var(--default-transition-duration))
2057
+ }
2058
+ .transition-colors {
2059
+ transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;
2060
+ transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
2061
+ transition-duration:var(--tw-duration,var(--default-transition-duration))
2062
+ }
2063
+ .duration-100 {
2064
+ --tw-duration:.1s;
2065
+ transition-duration:.1s
2066
+ }
2067
+ .duration-200 {
2068
+ --tw-duration:.2s;
2069
+ transition-duration:.2s
2070
+ }
2071
+ .ease-in-out {
2072
+ --tw-ease:var(--ease-in-out);
2073
+ transition-timing-function:var(--ease-in-out)
2074
+ }
2075
+ .ring-inset {
2076
+ --tw-ring-inset:inset
2077
+ }
2078
+ .visited\:text-surface-950:visited {
2079
+ color:var(--color-surface-950)
2080
+ }
2081
+ @media (hover:hover) {
2082
+ .hover\:cursor-pointer:hover {
2083
+ cursor:pointer
2084
+ }
2085
+ .hover\:preset-filled:hover {
2086
+ color:var(--color-surface-50-950);
2087
+ background-color:var(--color-surface-950-50)
2088
+ }
2089
+ .hover\:preset-filled-surface-50-950:hover {
2090
+ color:var(--color-surface-contrast-50-950);
2091
+ background-color:var(--color-surface-50-950)
2092
+ }
2093
+ .hover\:preset-tonal-primary:hover {
2094
+ color:var(--color-primary-950-50);
2095
+ background-color:var(--color-primary-50-950)
2096
+ }
2097
+ .hover\:bg-primary-500:hover {
2098
+ background-color:var(--color-primary-500)
2099
+ }
2100
+ .hover\:preset-tonal:hover {
2101
+ background-color:light-dark(#0a0a0a0d,#fafafa0d)
2102
+ }
2103
+ @supports (color:color-mix(in lab,red,red)) {
2104
+ .hover\:preset-tonal:hover {
2105
+ background-color:color-mix(in oklab,light-dark(var(--color-surface-950),var(--color-surface-50))5%,transparent)
2106
+ }
2107
+ }
2108
+ .hover\:brightness-75:hover {
2109
+ --tw-brightness:brightness(75%);
2110
+ 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,)
2111
+ }
2112
+ .hover\:brightness-90:hover {
2113
+ --tw-brightness:brightness(90%);
2114
+ 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,)
2115
+ }
2116
+ .hover\:brightness-110:hover {
2117
+ --tw-brightness:brightness(110%);
2118
+ 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,)
2119
+ }
2120
+ .hover\:brightness-125:hover {
2121
+ --tw-brightness:brightness(125%);
2122
+ 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,)
2123
+ }
2124
+ }
2125
+ .aria-selected\:brightness-75[aria-selected=true] {
2126
+ --tw-brightness:brightness(75%);
2127
+ 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,)
2128
+ }
2129
+ @media (min-width:48rem) {
2130
+ .md\:size-5 {
2131
+ width:calc(var(--spacing)*5);
2132
+ height:calc(var(--spacing)*5)
2133
+ }
2134
+ .md\:flex-row {
2135
+ flex-direction:row
2136
+ }
2137
+ }
2138
+ .rtl\:-translate-x-4:where(:dir(rtl),
2139
+ [dir=rtl],
2140
+ [dir=rtl] *) {
2141
+ --tw-translate-x:calc(var(--spacing)*-4);
2142
+ translate:var(--tw-translate-x)var(--tw-translate-y)
2143
+ }
2144
+ .rtl\:grid-cols-\[1fr_auto_auto\]:where(:dir(rtl),
2145
+ [dir=rtl],
2146
+ [dir=rtl] *) {
2147
+ grid-template-columns:1fr auto auto
2148
+ }
2149
+ :where(.rtl\:space-x-reverse:where(:dir(rtl),
2150
+ [dir=rtl],
2151
+ [dir=rtl] *)>:not(:last-child)) {
2152
+ --tw-space-x-reverse:1
2153
+ }
2154
+ .dark\:border-0:where(.dark,
2155
+ .dark *) {
2156
+ border-style:var(--tw-border-style);
2157
+ border-width:0
2158
+ }
2159
+ .dark\:\!bg-surface-800:where(.dark,
2160
+ .dark *) {
2161
+ background-color:var(--color-surface-800)!important
2162
+ }
2163
+ .dark\:bg-secondary-500:where(.dark,
2164
+ .dark *) {
2165
+ background-color:var(--color-secondary-500)
2166
+ }
2167
+ .dark\:bg-secondary-800:where(.dark,
2168
+ .dark *) {
2169
+ background-color:var(--color-secondary-800)
2170
+ }
2171
+ .dark\:bg-surface-600:where(.dark,
2172
+ .dark *) {
2173
+ background-color:var(--color-surface-600)
2174
+ }
2175
+ .dark\:bg-surface-800:where(.dark,
2176
+ .dark *) {
2177
+ background-color:var(--color-surface-800)
2178
+ }
2179
+ .dark\:bg-surface-900:where(.dark,
2180
+ .dark *) {
2181
+ background-color:var(--color-surface-900)
2182
+ }
2183
+ .dark\:bg-surface-950\/75:where(.dark,
2184
+ .dark *) {
2185
+ background-color:#0a0a0abf
2186
+ }
2187
+ @supports (color:color-mix(in lab,red,red)) {
2188
+ .dark\:bg-surface-950\/75:where(.dark,
2189
+ .dark *) {
2190
+ background-color:color-mix(in oklab,var(--color-surface-950)75%,transparent)
2191
+ }
2192
+ }
2193
+ .dark\:bg-tertiary-900:where(.dark,
2194
+ .dark *) {
2195
+ background-color:var(--color-tertiary-900)
2196
+ }
2197
+ .dark\:bg-warning-400:where(.dark,
2198
+ .dark *) {
2199
+ background-color:var(--color-warning-400)
2200
+ }
2201
+ .dark\:text-secondary-0:where(.dark,
2202
+ .dark *) {
2203
+ color:var(--color-secondary-0)
2204
+ }
2205
+ .dark\:text-secondary-950:where(.dark,
2206
+ .dark *) {
2207
+ color:var(--color-secondary-950)
2208
+ }
2209
+ .dark\:text-surface-contrast-50:where(.dark,
2210
+ .dark *) {
2211
+ color:var(--color-surface-contrast-50)
2212
+ }
2213
+ .dark\:placeholder-surface-50:where(.dark,
2214
+ .dark *)::placeholder {
2215
+ color:var(--color-surface-50)
2216
+ }
2217
+ .dark\:saturate-75:where(.dark,
2218
+ .dark *) {
2219
+ --tw-saturate:saturate(75%);
2220
+ 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,)
2221
+ }
2222
+ .dark\:visited\:text-surface-400:where(.dark,
2223
+ .dark *):visited {
2224
+ color:var(--color-surface-400)
2225
+ }
2226
+ @media (hover:hover) {
2227
+ .dark\:hover\:bg-secondary-600:where(.dark,
2228
+ .dark *):hover {
2229
+ background-color:var(--color-secondary-600)
2230
+ }
2231
+ .dark\:hover\:brightness-110:where(.dark,
2232
+ .dark *):hover {
2233
+ --tw-brightness:brightness(110%);
2234
+ 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,)
2235
+ }
2236
+ .dark\:hover\:brightness-125:where(.dark,
2237
+ .dark *):hover {
2238
+ --tw-brightness:brightness(125%);
2239
+ 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,)
2240
+ }
2241
+ }
2242
+ .aria-selected\:dark\:brightness-125[aria-selected=true]:where(.dark,
2243
+ .dark *) {
2244
+ --tw-brightness:brightness(125%);
2245
+ 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,)
2246
+ }
2247
+ .prose-h2\:mt-4 :where(h2):not(:where([class~=not-prose],
2248
+ [class~=not-prose] *)) {
2249
+ margin-top:calc(var(--spacing)*4)
2250
+ }
2251
+ .\[\&\:not\(\:hover\)\]\:opacity-50:not(:hover) {
2252
+ opacity:.5
2253
+ }
2254
+ .\[\&\>pre\]\:p-4>pre {
2255
+ padding:calc(var(--spacing)*4)
2256
+ }
2257
+ }
2258
+ @keyframes anim-progress-indeterminate {
2259
+ 0% {
2260
+ transform:translate(-200%)
2261
+ }
2262
+ to {
2263
+ transform:translate(200%)
2264
+ }
2265
+ }
2266
+ @keyframes anim-ring-indeterminate {
2267
+ 0% {
2268
+ stroke-dasharray:1 400;
2269
+ stroke-dashoffset:0
2270
+ }
2271
+ to {
2272
+ stroke-dasharray:400 400;
2273
+ stroke-dashoffset:-140px
2274
+ }
2275
+ }
2276
+ [data-theme=legacy] {
2277
+ --text-scaling:1.067;
2278
+ --base-font-color:var(--color-surface-950);
2279
+ --base-font-color-dark:var(--color-surface-50);
2280
+ --base-font-family:Inter,Roboto,"Helvetica Neue","Arial Nova","Nimbus Sans",Arial,sans-serif;
2281
+ --base-font-size:inherit;
2282
+ --base-line-height:inherit;
2283
+ --base-font-weight:normal;
2284
+ --base-font-style:normal;
2285
+ --base-letter-spacing:0em;
2286
+ --heading-font-color:inherit;
2287
+ --heading-font-color-dark:inherit;
2288
+ --heading-font-family:inherit;
2289
+ --heading-font-weight:bold;
2290
+ --heading-font-style:normal;
2291
+ --heading-letter-spacing:inherit;
2292
+ --anchor-font-color:var(--color-primary-500);
2293
+ --anchor-font-color-dark:var(--color-primary-500);
2294
+ --anchor-font-family:inherit;
2295
+ --anchor-font-size:inherit;
2296
+ --anchor-line-height:inherit;
2297
+ --anchor-font-weight:inherit;
2298
+ --anchor-font-style:inherit;
2299
+ --anchor-letter-spacing:inherit;
2300
+ --anchor-text-decoration:none;
2301
+ --anchor-text-decoration-hover:underline;
2302
+ --anchor-text-decoration-active:none;
2303
+ --anchor-text-decoration-focus:none;
2304
+ --spacing:.25rem;
2305
+ --radius-base:.375rem;
2306
+ --radius-container:.75rem;
2307
+ --default-border-width:1px;
2308
+ --default-divide-width:1px;
2309
+ --default-ring-width:1px;
2310
+ --body-background-color:oklch(100% 0 0);
2311
+ --body-background-color-dark:var(--color-surface-950);
2312
+ --color-primary-50:oklch(93.76% .05 174.04);
2313
+ --color-primary-100:oklch(88.31% .07 172.12);
2314
+ --color-primary-200:oklch(83.12% .1 170.96);
2315
+ --color-primary-300:oklch(78.47% .12 168.13);
2316
+ --color-primary-400:oklch(73.96% .14 165.85);
2317
+ --color-primary-500:oklch(69.84% .15 162.21);
2318
+ --color-primary-600:oklch(63.62% .14 162.09);
2319
+ --color-primary-700:oklch(57.25% .12 161.89);
2320
+ --color-primary-800:oklch(50.43% .11 162.71);
2321
+ --color-primary-900:oklch(43.64% .09 162.59);
2322
+ --color-primary-950:oklch(36.55% .08 162.58);
2323
+ --color-primary-contrast-dark:var(--color-primary-950);
2324
+ --color-primary-contrast-light:var(--color-primary-50);
2325
+ --color-primary-contrast-50:var(--color-primary-contrast-dark);
2326
+ --color-primary-contrast-100:var(--color-primary-contrast-dark);
2327
+ --color-primary-contrast-200:var(--color-primary-contrast-dark);
2328
+ --color-primary-contrast-300:var(--color-primary-contrast-dark);
2329
+ --color-primary-contrast-400:var(--color-primary-contrast-dark);
2330
+ --color-primary-contrast-500:var(--color-primary-contrast-dark);
2331
+ --color-primary-contrast-600:var(--color-primary-contrast-dark);
2332
+ --color-primary-contrast-700:var(--color-primary-contrast-light);
2333
+ --color-primary-contrast-800:var(--color-primary-contrast-light);
2334
+ --color-primary-contrast-900:var(--color-primary-contrast-light);
2335
+ --color-primary-contrast-950:var(--color-primary-contrast-light);
2336
+ --color-secondary-50:oklch(91.85% .03 289.61);
2337
+ --color-secondary-100:oklch(83.36% .07 287.46);
2338
+ --color-secondary-200:oklch(74.94% .11 286.33);
2339
+ --color-secondary-300:oklch(66.53% .15 284.04);
2340
+ --color-secondary-400:oklch(58.49% .19 281.34);
2341
+ --color-secondary-500:oklch(51.06% .23 276.97);
2342
+ --color-secondary-600:oklch(46.04% .21 277.09);
2343
+ --color-secondary-700:oklch(41.03% .18 277.06);
2344
+ --color-secondary-800:oklch(35.81% .16 277.12);
2345
+ --color-secondary-900:oklch(30.46% .13 277.07);
2346
+ --color-secondary-950:oklch(24.69% .1 277.33);
2347
+ --color-secondary-contrast-dark:var(--color-secondary-950);
2348
+ --color-secondary-contrast-light:var(--color-secondary-50);
2349
+ --color-secondary-contrast-50:var(--color-secondary-contrast-dark);
2350
+ --color-secondary-contrast-100:var(--color-secondary-contrast-dark);
2351
+ --color-secondary-contrast-200:var(--color-secondary-contrast-dark);
2352
+ --color-secondary-contrast-300:var(--color-secondary-contrast-dark);
2353
+ --color-secondary-contrast-400:var(--color-secondary-contrast-dark);
2354
+ --color-secondary-contrast-500:var(--color-secondary-contrast-light);
2355
+ --color-secondary-contrast-600:var(--color-secondary-contrast-light);
2356
+ --color-secondary-contrast-700:var(--color-secondary-contrast-light);
2357
+ --color-secondary-contrast-800:var(--color-secondary-contrast-light);
2358
+ --color-secondary-contrast-900:var(--color-secondary-contrast-light);
2359
+ --color-secondary-contrast-950:var(--color-secondary-contrast-light);
2360
+ --color-tertiary-50:oklch(91.76% .04 225.29);
2361
+ --color-tertiary-100:oklch(86.44% .07 227.24);
2362
+ --color-tertiary-200:oklch(81.31% .09 228.59);
2363
+ --color-tertiary-300:oklch(76.77% .12 229.92);
2364
+ --color-tertiary-400:oklch(72.38% .13 232.91);
2365
+ --color-tertiary-500:oklch(68.47% .15 237.31);
2366
+ --color-tertiary-600:oklch(62.85% .13 236.83);
2367
+ --color-tertiary-700:oklch(57.1% .12 236.22);
2368
+ --color-tertiary-800:oklch(50.99% .11 236.75);
2369
+ --color-tertiary-900:oklch(44.91% .09 235.85);
2370
+ --color-tertiary-950:oklch(38.6% .08 234.47);
2371
+ --color-tertiary-contrast-dark:var(--color-tertiary-950);
2372
+ --color-tertiary-contrast-light:var(--color-tertiary-50);
2373
+ --color-tertiary-contrast-50:var(--color-tertiary-contrast-dark);
2374
+ --color-tertiary-contrast-100:var(--color-tertiary-contrast-dark);
2375
+ --color-tertiary-contrast-200:var(--color-tertiary-contrast-dark);
2376
+ --color-tertiary-contrast-300:var(--color-tertiary-contrast-dark);
2377
+ --color-tertiary-contrast-400:var(--color-tertiary-contrast-dark);
2378
+ --color-tertiary-contrast-500:var(--color-tertiary-contrast-dark);
2379
+ --color-tertiary-contrast-600:var(--color-tertiary-contrast-dark);
2380
+ --color-tertiary-contrast-700:var(--color-tertiary-contrast-light);
2381
+ --color-tertiary-contrast-800:var(--color-tertiary-contrast-light);
2382
+ --color-tertiary-contrast-900:var(--color-tertiary-contrast-light);
2383
+ --color-tertiary-contrast-950:var(--color-tertiary-contrast-light);
2384
+ --color-success-50:oklch(95.13% .04 124.07);
2385
+ --color-success-100:oklch(91.13% .08 125.02);
2386
+ --color-success-200:oklch(87.3% .12 126.12);
2387
+ --color-success-300:oklch(83.56% .16 127.53);
2388
+ --color-success-400:oklch(80.09% .19 128.96);
2389
+ --color-success-500:oklch(76.81% .2 130.85);
2390
+ --color-success-600:oklch(70.29% .19 130.77);
2391
+ --color-success-700:oklch(63.6% .17 130.68);
2392
+ --color-success-800:oklch(57.06% .15 130.45);
2393
+ --color-success-900:oklch(49.99% .13 130.26);
2394
+ --color-success-950:oklch(42.66% .11 129.96);
2395
+ --color-success-contrast-dark:var(--color-success-950);
2396
+ --color-success-contrast-light:var(--color-success-50);
2397
+ --color-success-contrast-50:var(--color-success-contrast-dark);
2398
+ --color-success-contrast-100:var(--color-success-contrast-dark);
2399
+ --color-success-contrast-200:var(--color-success-contrast-dark);
2400
+ --color-success-contrast-300:var(--color-success-contrast-dark);
2401
+ --color-success-contrast-400:var(--color-success-contrast-dark);
2402
+ --color-success-contrast-500:var(--color-success-contrast-dark);
2403
+ --color-success-contrast-600:var(--color-success-contrast-dark);
2404
+ --color-success-contrast-700:var(--color-success-contrast-light);
2405
+ --color-success-contrast-800:var(--color-success-contrast-light);
2406
+ --color-success-contrast-900:var(--color-success-contrast-light);
2407
+ --color-success-contrast-950:var(--color-success-contrast-light);
2408
+ --color-warning-50:oklch(94.62% .05 92.15);
2409
+ --color-warning-100:oklch(91.23% .08 91.79);
2410
+ --color-warning-200:oklch(88.15% .12 92.2);
2411
+ --color-warning-300:oklch(85.04% .14 91.03);
2412
+ --color-warning-400:oklch(82.3% .16 89.59);
2413
+ --color-warning-500:oklch(79.53% .16 86.04);
2414
+ --color-warning-600:oklch(73.86% .15 86.09);
2415
+ --color-warning-700:oklch(67.97% .14 86.63);
2416
+ --color-warning-800:oklch(62.27% .13 87.5);
2417
+ --color-warning-900:oklch(56.11% .11 88.37);
2418
+ --color-warning-950:oklch(49.89% .1 88.83);
2419
+ --color-warning-contrast-dark:var(--color-warning-950);
2420
+ --color-warning-contrast-light:var(--color-warning-50);
2421
+ --color-warning-contrast-50:var(--color-warning-contrast-dark);
2422
+ --color-warning-contrast-100:var(--color-warning-contrast-dark);
2423
+ --color-warning-contrast-200:var(--color-warning-contrast-dark);
2424
+ --color-warning-contrast-300:var(--color-warning-contrast-dark);
2425
+ --color-warning-contrast-400:var(--color-warning-contrast-dark);
2426
+ --color-warning-contrast-500:var(--color-warning-contrast-dark);
2427
+ --color-warning-contrast-600:var(--color-warning-contrast-dark);
2428
+ --color-warning-contrast-700:var(--color-warning-contrast-light);
2429
+ --color-warning-contrast-800:var(--color-warning-contrast-light);
2430
+ --color-warning-contrast-900:var(--color-warning-contrast-light);
2431
+ --color-warning-contrast-950:var(--color-warning-contrast-light);
2432
+ --color-error-50:oklch(92.23% .04 347.14);
2433
+ --color-error-100:oklch(83.76% .08 347.97);
2434
+ --color-error-200:oklch(75.58% .12 349.14);
2435
+ --color-error-300:oklch(68.16% .17 351.73);
2436
+ --color-error-400:oklch(61.78% .2 354.34);
2437
+ --color-error-500:oklch(57.22% .22 358.61);
2438
+ --color-error-600:oklch(52.66% .2 358.6);
2439
+ --color-error-700:oklch(47.87% .19 358.39);
2440
+ --color-error-800:oklch(43.13% .17 357.83);
2441
+ --color-error-900:oklch(38.06% .15 357.41);
2442
+ --color-error-950:oklch(32.89% .13 357);
2443
+ --color-error-contrast-dark:var(--color-error-950);
2444
+ --color-error-contrast-light:var(--color-error-50);
2445
+ --color-error-contrast-50:var(--color-error-contrast-dark);
2446
+ --color-error-contrast-100:var(--color-error-contrast-dark);
2447
+ --color-error-contrast-200:var(--color-error-contrast-dark);
2448
+ --color-error-contrast-300:var(--color-error-contrast-dark);
2449
+ --color-error-contrast-400:var(--color-error-contrast-light);
2450
+ --color-error-contrast-500:var(--color-error-contrast-light);
2451
+ --color-error-contrast-600:var(--color-error-contrast-light);
2452
+ --color-error-contrast-700:var(--color-error-contrast-light);
2453
+ --color-error-contrast-800:var(--color-error-contrast-light);
2454
+ --color-error-contrast-900:var(--color-error-contrast-light);
2455
+ --color-error-contrast-950:var(--color-error-contrast-light);
2456
+ --color-surface-50:oklch(92.32% .01 279.78);
2457
+ --color-surface-100:oklch(83.77% .02 274.72);
2458
+ --color-surface-200:oklch(75.06% .04 273.55);
2459
+ --color-surface-300:oklch(66.32% .05 270.91);
2460
+ --color-surface-400:oklch(57.19% .07 270.48);
2461
+ --color-surface-500:oklch(47.8% .09 269.38);
2462
+ --color-surface-600:oklch(44.12% .08 269.69);
2463
+ --color-surface-700:oklch(40.23% .07 268.97);
2464
+ --color-surface-800:oklch(36.14% .07 270.51);
2465
+ --color-surface-900:oklch(32.03% .06 269.71);
2466
+ --color-surface-950:oklch(27.93% .05 270.32);
2467
+ --color-surface-contrast-dark:var(--color-surface-950);
2468
+ --color-surface-contrast-light:var(--color-surface-50);
2469
+ --color-surface-contrast-50:var(--color-surface-contrast-dark);
2470
+ --color-surface-contrast-100:var(--color-surface-contrast-dark);
2471
+ --color-surface-contrast-200:var(--color-surface-contrast-dark);
2472
+ --color-surface-contrast-300:var(--color-surface-contrast-dark);
2473
+ --color-surface-contrast-400:var(--color-surface-contrast-light);
2474
+ --color-surface-contrast-500:var(--color-surface-contrast-light);
2475
+ --color-surface-contrast-600:var(--color-surface-contrast-light);
2476
+ --color-surface-contrast-700:var(--color-surface-contrast-light);
2477
+ --color-surface-contrast-800:var(--color-surface-contrast-light);
2478
+ --color-surface-contrast-900:var(--color-surface-contrast-light);
2479
+ --color-surface-contrast-950:var(--color-surface-contrast-light)
2480
+ }
2481
+ [data-theme=crimson] {
2482
+ --text-scaling:1.067;
2483
+ --base-font-color:var(--color-surface-950);
2484
+ --base-font-color-dark:var(--color-surface-50);
2485
+ --base-font-family:Avenir,Montserrat,Corbel,"URW Gothic",source-sans-pro,sans-serif;
2486
+ --base-font-size:inherit;
2487
+ --base-line-height:inherit;
2488
+ --base-font-weight:normal;
2489
+ --base-font-style:normal;
2490
+ --base-letter-spacing:0em;
2491
+ --heading-font-color:inherit;
2492
+ --heading-font-color-dark:inherit;
2493
+ --heading-font-family:Avenir,Montserrat,Corbel,"URW Gothic",source-sans-pro,sans-serif;
2494
+ --heading-font-weight:normal;
2495
+ --heading-font-style:normal;
2496
+ --heading-letter-spacing:inherit;
2497
+ --anchor-font-color:var(--color-primary-500);
2498
+ --anchor-font-color-dark:var(--color-primary-500);
2499
+ --anchor-font-family:inherit;
2500
+ --anchor-font-size:inherit;
2501
+ --anchor-line-height:inherit;
2502
+ --anchor-font-weight:inherit;
2503
+ --anchor-font-style:inherit;
2504
+ --anchor-letter-spacing:inherit;
2505
+ --anchor-text-decoration:none;
2506
+ --anchor-text-decoration-hover:underline;
2507
+ --anchor-text-decoration-active:none;
2508
+ --anchor-text-decoration-focus:none;
2509
+ --spacing:.25rem;
2510
+ --radius-base:.375rem;
2511
+ --radius-container:.75rem;
2512
+ --default-border-width:1px;
2513
+ --default-divide-width:1px;
2514
+ --default-ring-width:1px;
2515
+ --body-background-color:oklch(100% 0 0);
2516
+ --body-background-color-dark:var(--color-surface-950);
2517
+ --color-primary-50:oklch(88.86% .05 4.44);
2518
+ --color-primary-100:oklch(80.66% .09 5.94);
2519
+ --color-primary-200:oklch(72.91% .13 8.14);
2520
+ --color-primary-300:oklch(65.86% .17 10.24);
2521
+ --color-primary-400:oklch(59.91% .2 14.19);
2522
+ --color-primary-500:oklch(55.71% .21 19.55);
2523
+ --color-primary-600:oklch(50.91% .2 19.59);
2524
+ --color-primary-700:oklch(46.18% .18 19.26);
2525
+ --color-primary-800:oklch(41.14% .16 19.25);
2526
+ --color-primary-900:oklch(36.08% .14 18.61);
2527
+ --color-primary-950:oklch(30.55% .12 17.97);
2528
+ --color-primary-contrast-dark:var(--color-primary-950);
2529
+ --color-primary-contrast-light:var(--color-primary-50);
2530
+ --color-primary-contrast-50:var(--color-primary-contrast-dark);
2531
+ --color-primary-contrast-100:var(--color-primary-contrast-dark);
2532
+ --color-primary-contrast-200:var(--color-primary-contrast-dark);
2533
+ --color-primary-contrast-300:var(--color-primary-contrast-dark);
2534
+ --color-primary-contrast-400:var(--color-primary-contrast-dark);
2535
+ --color-primary-contrast-500:var(--color-primary-contrast-light);
2536
+ --color-primary-contrast-600:var(--color-primary-contrast-light);
2537
+ --color-primary-contrast-700:var(--color-primary-contrast-light);
2538
+ --color-primary-contrast-800:var(--color-primary-contrast-light);
2539
+ --color-primary-contrast-900:var(--color-primary-contrast-light);
2540
+ --color-primary-contrast-950:var(--color-primary-contrast-light);
2541
+ --color-secondary-50:oklch(92.56% .03 231.59);
2542
+ --color-secondary-100:oklch(86.02% .04 233.6);
2543
+ --color-secondary-200:oklch(79.42% .05 234.87);
2544
+ --color-secondary-300:oklch(72.61% .07 238);
2545
+ --color-secondary-400:oklch(65.93% .08 238.76);
2546
+ --color-secondary-500:oklch(59.26% .09 239.95);
2547
+ --color-secondary-600:oklch(54.31% .08 239.27);
2548
+ --color-secondary-700:oklch(49.31% .08 239.24);
2549
+ --color-secondary-800:oklch(43.86% .07 239.73);
2550
+ --color-secondary-900:oklch(38.56% .06 239.77);
2551
+ --color-secondary-950:oklch(33.02% .05 238.49);
2552
+ --color-secondary-contrast-dark:var(--color-secondary-950);
2553
+ --color-secondary-contrast-light:var(--color-secondary-50);
2554
+ --color-secondary-contrast-50:var(--color-secondary-contrast-dark);
2555
+ --color-secondary-contrast-100:var(--color-secondary-contrast-dark);
2556
+ --color-secondary-contrast-200:var(--color-secondary-contrast-dark);
2557
+ --color-secondary-contrast-300:var(--color-secondary-contrast-dark);
2558
+ --color-secondary-contrast-400:var(--color-secondary-contrast-dark);
2559
+ --color-secondary-contrast-500:var(--color-secondary-contrast-light);
2560
+ --color-secondary-contrast-600:var(--color-secondary-contrast-light);
2561
+ --color-secondary-contrast-700:var(--color-secondary-contrast-light);
2562
+ --color-secondary-contrast-800:var(--color-secondary-contrast-light);
2563
+ --color-secondary-contrast-900:var(--color-secondary-contrast-light);
2564
+ --color-secondary-contrast-950:var(--color-secondary-contrast-light);
2565
+ --color-tertiary-50:oklch(96.87% 0 18.01);
2566
+ --color-tertiary-100:oklch(95.67% 0 18);
2567
+ --color-tertiary-200:oklch(94.74% 0 49.04);
2568
+ --color-tertiary-300:oklch(91.56% 0 34.58);
2569
+ --color-tertiary-400:oklch(85.05% .01 27.4);
2570
+ --color-tertiary-500:oklch(78.4% .01 31.17);
2571
+ --color-tertiary-600:oklch(72.57% .01 32.61);
2572
+ --color-tertiary-700:oklch(63.56% .01 36.62);
2573
+ --color-tertiary-800:oklch(53.99% .01 28.97);
2574
+ --color-tertiary-900:oklch(46.84% .01 31.17);
2575
+ --color-tertiary-950:oklch(43.57% .01 31.17);
2576
+ --color-tertiary-contrast-dark:var(--color-tertiary-950);
2577
+ --color-tertiary-contrast-light:var(--color-tertiary-50);
2578
+ --color-tertiary-contrast-50:var(--color-tertiary-contrast-dark);
2579
+ --color-tertiary-contrast-100:var(--color-tertiary-contrast-dark);
2580
+ --color-tertiary-contrast-200:var(--color-tertiary-contrast-dark);
2581
+ --color-tertiary-contrast-300:var(--color-tertiary-contrast-dark);
2582
+ --color-tertiary-contrast-400:var(--color-tertiary-contrast-dark);
2583
+ --color-tertiary-contrast-500:var(--color-tertiary-contrast-dark);
2584
+ --color-tertiary-contrast-600:var(--color-tertiary-contrast-dark);
2585
+ --color-tertiary-contrast-700:var(--color-tertiary-contrast-light);
2586
+ --color-tertiary-contrast-800:var(--color-tertiary-contrast-light);
2587
+ --color-tertiary-contrast-900:var(--color-tertiary-contrast-light);
2588
+ --color-tertiary-contrast-950:var(--color-tertiary-contrast-light);
2589
+ --color-success-50:oklch(97.91% .02 122.93);
2590
+ --color-success-100:oklch(97.16% .02 122.74);
2591
+ --color-success-200:oklch(96.6% .02 124.19);
2592
+ --color-success-300:oklch(94.25% .04 124.61);
2593
+ --color-success-400:oklch(90.14% .07 124.95);
2594
+ --color-success-500:oklch(86% .1 126.06);
2595
+ --color-success-600:oklch(79.54% .09 125.92);
2596
+ --color-success-700:oklch(69.53% .08 125.89);
2597
+ --color-success-800:oklch(59.17% .06 126.17);
2598
+ --color-success-900:oklch(51.08% .05 125.23);
2599
+ --color-success-950:oklch(47.93% .05 125.78);
2600
+ --color-success-contrast-dark:var(--color-success-950);
2601
+ --color-success-contrast-light:var(--color-success-50);
2602
+ --color-success-contrast-50:var(--color-success-contrast-dark);
2603
+ --color-success-contrast-100:var(--color-success-contrast-dark);
2604
+ --color-success-contrast-200:var(--color-success-contrast-dark);
2605
+ --color-success-contrast-300:var(--color-success-contrast-dark);
2606
+ --color-success-contrast-400:var(--color-success-contrast-dark);
2607
+ --color-success-contrast-500:var(--color-success-contrast-dark);
2608
+ --color-success-contrast-600:var(--color-success-contrast-dark);
2609
+ --color-success-contrast-700:var(--color-success-contrast-light);
2610
+ --color-success-contrast-800:var(--color-success-contrast-light);
2611
+ --color-success-contrast-900:var(--color-success-contrast-light);
2612
+ --color-success-contrast-950:var(--color-success-contrast-light);
2613
+ --color-warning-50:oklch(97.3% .02 91.54);
2614
+ --color-warning-100:oklch(96.43% .03 90.88);
2615
+ --color-warning-200:oklch(95.48% .03 92.24);
2616
+ --color-warning-300:oklch(92.83% .05 92.14);
2617
+ --color-warning-400:oklch(87.41% .09 91.27);
2618
+ --color-warning-500:oklch(82.4% .13 90.68);
2619
+ --color-warning-600:oklch(76.24% .11 91.06);
2620
+ --color-warning-700:oklch(66.71% .1 91.1);
2621
+ --color-warning-800:oklch(56.58% .08 90.28);
2622
+ --color-warning-900:oklch(49.1% .07 90.52);
2623
+ --color-warning-950:oklch(45.94% .07 89.94);
2624
+ --color-warning-contrast-dark:var(--color-warning-950);
2625
+ --color-warning-contrast-light:var(--color-warning-50);
2626
+ --color-warning-contrast-50:var(--color-warning-contrast-dark);
2627
+ --color-warning-contrast-100:var(--color-warning-contrast-dark);
2628
+ --color-warning-contrast-200:var(--color-warning-contrast-dark);
2629
+ --color-warning-contrast-300:var(--color-warning-contrast-dark);
2630
+ --color-warning-contrast-400:var(--color-warning-contrast-dark);
2631
+ --color-warning-contrast-500:var(--color-warning-contrast-dark);
2632
+ --color-warning-contrast-600:var(--color-warning-contrast-dark);
2633
+ --color-warning-contrast-700:var(--color-warning-contrast-light);
2634
+ --color-warning-contrast-800:var(--color-warning-contrast-light);
2635
+ --color-warning-contrast-900:var(--color-warning-contrast-light);
2636
+ --color-warning-contrast-950:var(--color-warning-contrast-light);
2637
+ --color-error-50:oklch(95.25% .01 17.52);
2638
+ --color-error-100:oklch(93.57% .02 13.48);
2639
+ --color-error-200:oklch(92.09% .02 14.35);
2640
+ --color-error-300:oklch(87.34% .04 15.86);
2641
+ --color-error-400:oklch(77.78% .07 16.56);
2642
+ --color-error-500:oklch(68.53% .1 18.56);
2643
+ --color-error-600:oklch(63.39% .1 18.38);
2644
+ --color-error-700:oklch(55.64% .08 18.02);
2645
+ --color-error-800:oklch(47.45% .07 18.65);
2646
+ --color-error-900:oklch(41.28% .06 18.29);
2647
+ --color-error-950:oklch(38.24% .06 18.5);
2648
+ --color-error-contrast-dark:var(--color-error-950);
2649
+ --color-error-contrast-light:var(--color-error-50);
2650
+ --color-error-contrast-50:var(--color-error-contrast-dark);
2651
+ --color-error-contrast-100:var(--color-error-contrast-dark);
2652
+ --color-error-contrast-200:var(--color-error-contrast-dark);
2653
+ --color-error-contrast-300:var(--color-error-contrast-dark);
2654
+ --color-error-contrast-400:var(--color-error-contrast-dark);
2655
+ --color-error-contrast-500:var(--color-error-contrast-dark);
2656
+ --color-error-contrast-600:var(--color-error-contrast-light);
2657
+ --color-error-contrast-700:var(--color-error-contrast-light);
2658
+ --color-error-contrast-800:var(--color-error-contrast-light);
2659
+ --color-error-contrast-900:var(--color-error-contrast-light);
2660
+ --color-error-contrast-950:var(--color-error-contrast-light);
2661
+ --color-surface-50:oklch(90.65% 0 264.68);
2662
+ --color-surface-100:oklch(80.46% .01 268.6);
2663
+ --color-surface-200:oklch(69.96% .01 271.26);
2664
+ --color-surface-300:oklch(58.9% .02 278.84);
2665
+ --color-surface-400:oklch(47.48% .03 277.42);
2666
+ --color-surface-500:oklch(35.33% .04 275.68);
2667
+ --color-surface-600:oklch(31.82% .03 277.05);
2668
+ --color-surface-700:oklch(28.12% .03 276.09);
2669
+ --color-surface-800:oklch(24.72% .03 274.9);
2670
+ --color-surface-900:oklch(20.75% .02 273.29);
2671
+ --color-surface-950:oklch(16.69% .02 275.16);
2672
+ --color-surface-contrast-dark:var(--color-surface-950);
2673
+ --color-surface-contrast-light:var(--color-surface-50);
2674
+ --color-surface-contrast-50:var(--color-surface-contrast-dark);
2675
+ --color-surface-contrast-100:var(--color-surface-contrast-dark);
2676
+ --color-surface-contrast-200:var(--color-surface-contrast-dark);
2677
+ --color-surface-contrast-300:var(--color-surface-contrast-dark);
2678
+ --color-surface-contrast-400:var(--color-surface-contrast-light);
2679
+ --color-surface-contrast-500:var(--color-surface-contrast-light);
2680
+ --color-surface-contrast-600:var(--color-surface-contrast-light);
2681
+ --color-surface-contrast-700:var(--color-surface-contrast-light);
2682
+ --color-surface-contrast-800:var(--color-surface-contrast-light);
2683
+ --color-surface-contrast-900:var(--color-surface-contrast-light);
2684
+ --color-surface-contrast-950:var(--color-surface-contrast-light)
2685
+ }
2686
+ html {
2687
+ --dialog-start-pad:clamp(0em,5vw,2em);
2688
+ --dialog-box-height:clamp(15em,50vw,18em);
2689
+ --fab-margin:1rem
2690
+ }
2691
+ .footer-space {
2692
+ width:100%;
2693
+ height:calc(var(--dialog-box-height) + 4em)
2694
+ }
2695
+ .main-dialog-box-container a,
2696
+ .main-dialog-box-container b,
2697
+ .main-dialog-box-container i {
2698
+ font-size:inherit
2699
+ }
2700
+ a.dialog-choice {
2701
+ cursor:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20height='48'%20viewBox='0%20-960%20960%20960'%20width='48'%20version='1.1'%20id='svg384'%20sodipodi:docname='chat_FILL0_wght400_GRAD0_opsz48.svg'%20inkscape:version='1.2.2%20(732a01da63,%202022-12-09)'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs%20id='defs388'%20/%3e%3csodipodi:namedview%20id='namedview386'%20pagecolor='%23ffffff'%20bordercolor='%23000000'%20borderopacity='0.25'%20inkscape:showpageshadow='2'%20inkscape:pageopacity='0.0'%20inkscape:pagecheckerboard='0'%20inkscape:deskcolor='%23d1d1d1'%20showgrid='true'%20inkscape:zoom='6.1650873'%20inkscape:cx='12.084176'%20inkscape:cy='16.220371'%20inkscape:window-width='1920'%20inkscape:window-height='1017'%20inkscape:window-x='-8'%20inkscape:window-y='-8'%20inkscape:window-maximized='1'%20inkscape:current-layer='svg384'%3e%3cinkscape:grid%20type='xygrid'%20id='grid390'%20/%3e%3c/sodipodi:namedview%3e%3cpath%20d='m%20288.1745,-415.25889%20h%20250.17242%20v%20-47.95638%20H%20288.1745%20Z%20m%200,-103.90548%20h%20383.651%20v%20-47.95638%20h%20-383.651%20z%20m%200,-103.90548%20h%20383.651%20v%20-47.95638%20h%20-383.651%20z%20m%20-127.88367,462.77902%20v%20-591.46196%20q%200,-19.18255%2014.38692,-33.56946%2014.38691,-14.38692%2033.56946,-14.38692%20h%20543.50558%20q%2019.18255,0%2033.56946,14.38692%2014.38692,14.38691%2014.38692,33.56946%20v%20415.62191%20q%200,19.18255%20-14.38692,33.56947%20-14.38691,14.38691%20-33.56946,14.38691%20H%20288.1745%20Z%20M%20267.3934,-336.13088%20H%20751.75279%20V%20-751.75279%20H%20208.24721%20v%20479.56375%20z%20m%20-59.14619,0%20v%20-415.62191%20z'%20id='path382'%20style='stroke-width:0.799273'%20/%3e%3cpath%20style='fill:%23000000;stroke-width:20'%20d='m%2099.34977,-880.52018%20v%20140.71172%20l%20140.71171,-140.71172%20z'%20id='path394'%20/%3e%3c/svg%3e"),auto
2702
+ }
2703
+ a.external-link {
2704
+ cursor:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20height='48'%20viewBox='0%20-960%20960%20960'%20width='48'%20version='1.1'%20id='svg12'%20sodipodi:docname='external_link.svg'%20inkscape:version='1.2.2%20(732a01da63,%202022-12-09)'%20xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape'%20xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs%20id='defs16'%20/%3e%3csodipodi:namedview%20id='namedview14'%20pagecolor='%23ffffff'%20bordercolor='%23000000'%20borderopacity='0.25'%20inkscape:showpageshadow='2'%20inkscape:pageopacity='0.0'%20inkscape:pagecheckerboard='0'%20inkscape:deskcolor='%23d1d1d1'%20showgrid='true'%20inkscape:zoom='4.359375'%20inkscape:cx='-21.677419'%20inkscape:cy='73.175627'%20inkscape:window-width='1920'%20inkscape:window-height='1017'%20inkscape:window-x='1912'%20inkscape:window-y='-8'%20inkscape:window-maximized='1'%20inkscape:current-layer='svg12'%3e%3cinkscape:grid%20type='xygrid'%20id='grid362'%20/%3e%3c/sodipodi:namedview%3e%3cpath%20d='m%20595.00431,-626.20279%20128.00001,-128.00001%20-103.00001,-10e-6%2010e-6,-59.99998%20h%20205.99999%20l%202e-5,205.99999%20-60.00002,-10e-6%20V%20-712.2028%20l%20-127.99999,128%20z'%20id='path301'%20/%3e%3cpath%20id='path10'%20d='m%20394,-789%20q%20-26,40%20-43,82.5%20-17,42.5%20-28,96.5%20H%20172%20q%2035,-70%2091,-115%2056,-45%20131,-64%20z%20m%20-242,239%20h%20160%20q%20-3,24%20-4,43.5%20-1,19.5%20-1,44.5%200,21%200.5,42.5%200.5,21.5%203.5,48.5%20H%20152%20q%20-7,-24%20-9.5,-44.5%20-2.5,-20.5%20-2.5,-46.5%200,-26%202.5,-45%202.5,-19%209.5,-43%20z%20m%2020,239%20h%20150%20q%2012,55%2030,99%2018,44%2043,82%20-85,-29%20-135,-69.5%20Q%20210,-240%20172,-311%20Z%20m%20212,0%20h%20193%20q%20-15,64%20-38.5,110.5%20Q%20515,-154%20480,-118%20445,-155%20421.5,-203%20398,-251%20384,-311%20Z%20m%20255,0%20h%20149%20q%20-35,65%20-92.5,111%20-57.5,46%20-129.5,69%2025,-38%2042.5,-82%2017.5,-44%2030.5,-98%20z%20M%20480,-860%20q%20-84,0%20-157,30.5%20-73,30.5%20-127,84.5%20-54,54%20-85,126.5%20-31,72.5%20-31,156.5%200,84%2031,157.5%2031,73.5%2085,127.5%2054,54%20127,85.5%2073,31.5%20157,31.5%2084,0%20157,-31.5%2073,-31.5%20127,-85.5%2054,-54%2085,-127.5%2031,-73.5%2031,-157.5%200,-17%20-1,-34%20-1,-17%20-4,-34%20h%20-62%20q%204,17%205.5,32.5%201.5,15.5%201.5,35.5%200,26%20-2.5,46.5%20Q%20815,-395%20808,-371%20H%20648%20q%203,-30%204.5,-49.5%201.5,-19.5%201.5,-41.5%200,-14%20-0.5,-28.5%20Q%20653,-505%20651,-530%20h%20-61%20q%202,21%203,36%201,15%201,32%200,21%20-1,40.5%20-1,19.5%20-5,50.5%20H%20373%20q%20-4,-31%20-5,-50.5%20-1,-19.5%20-1,-40.5%200,-20%201,-38.5%201,-18.5%205,-49.5%20h%20177%20v%20-60%20H%20384%20q%2020,-75%2042,-119%2022,-44%2054,-71%2021,22%2038.5,49%2017.5,27%2031.5,56%20v%20-159%20q%20-17,-3%20-34.5,-4.5%20Q%20498,-860%20480,-860%20Z'%20style='display:inline'%20/%3e%3cpath%20style='display:inline;fill:%23000000;stroke-width:26.5796'%20d='m%2080.286738,-860.28674%20v%20161.55451%20L%20239.7891,-859.71249%20Z'%20id='path364'%20/%3e%3c/svg%3e"),auto
2705
+ }
2706
+ #toast-progress {
2707
+ background:0 0;
2708
+ border-radius:8px;
2709
+ width:calc(100% - 12px);
2710
+ height:10px;
2711
+ position:relative;
2712
+ top:5px;
2713
+ left:6px
2714
+ }
2715
+ #toast-progress::-moz-progress-bar {
2716
+ background:rgba(var(--color-secondary-500))
2717
+ }
2718
+ html.dark .shiki,
2719
+ html.dark .shiki span {
2720
+ color:var(--shiki-dark)!important;
2721
+ background-color:var(--shiki-dark-bg)!important;
2722
+ font-style:var(--shiki-dark-font-style)!important;
2723
+ font-weight:var(--shiki-dark-font-weight)!important;
2724
+ -webkit-text-decoration:var(--shiki-dark-text-decoration)!important;
2725
+ text-decoration:var(--shiki-dark-text-decoration)!important
2726
+ }
2727
+ .inline-code {
2728
+ background-color:#f0f8ff;
2729
+ border-radius:.2rem;
2730
+ padding:.2rem
2731
+ }
2732
+ html.dark .inline-code {
2733
+ background-color:#303446
2734
+ }
2735
+ .shiki span {
2736
+ white-space:pre-wrap;
2737
+ word-wrap:break-word
2738
+ }
2739
+ pre:has(code) {
2740
+ position:relative
2741
+ }
2742
+ pre button.copy {
2743
+ width:28px;
2744
+ height:28px;
2745
+ padding:0;
2746
+ display:flex;
2747
+ position:absolute;
2748
+ top:16px;
2749
+ right:16px
2750
+ }
2751
+ pre button.copy span {
2752
+ aspect-ratio:1;
2753
+ background-position:50%;
2754
+ background-repeat:no-repeat;
2755
+ background-size:cover;
2756
+ width:100%
2757
+ }
2758
+ pre button.copy .ready {
2759
+ background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24px'%20viewBox='0%20-960%20960%20960'%20width='24px'%20fill='%234C473B'%3e%3cpath%20d='M360-240q-33%200-56.5-23.5T280-320v-480q0-33%2023.5-56.5T360-880h360q33%200%2056.5%2023.5T800-800v480q0%2033-23.5%2056.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33%200-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480%20480Z'/%3e%3c/svg%3e")
2760
+ }
2761
+ pre button.copy .ready:where(.dark,
2762
+ .dark *) {
2763
+ background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24px'%20viewBox='0%20-960%20960%20960'%20width='24px'%20fill='%23FFFDF6'%3e%3cpath%20d='M360-240q-33%200-56.5-23.5T280-320v-480q0-33%2023.5-56.5T360-880h360q33%200%2056.5%2023.5T800-800v480q0%2033-23.5%2056.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33%200-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480%20480Z'/%3e%3c/svg%3e")
2764
+ }
2765
+ pre button.copy .success {
2766
+ background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24px'%20viewBox='0%20-960%20960%20960'%20width='24px'%20fill='%234C473B'%3e%3cpath%20d='M382-240%20154-468l57-57%20171%20171%20367-367%2057%2057-424%20424Z'/%3e%3c/svg%3e");
2767
+ display:none
2768
+ }
2769
+ pre button.copy .success:where(.dark,
2770
+ .dark *) {
2771
+ background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24px'%20viewBox='0%20-960%20960%20960'%20width='24px'%20fill='%23FFFDF6'%3e%3cpath%20d='M382-240%20154-468l57-57%20171%20171%20367-367%2057%2057-424%20424Z'/%3e%3c/svg%3e")
2772
+ }
2773
+ pre button.copy.copied .success {
2774
+ display:block
2775
+ }
2776
+ pre button.copy.copied .ready {
2777
+ display:none
2778
+ }
2779
+ [data-theme=turnip] {
2780
+ --text-scaling:1.067;
2781
+ --base-font-color:var(--color-surface-950);
2782
+ --base-font-color-dark:var(--color-surface-50);
2783
+ --base-font-family:Avenir,Montserrat,Corbel,"URW Gothic",source-sans-pro,sans-serif;
2784
+ --base-font-size:inherit;
2785
+ --base-line-height:inherit;
2786
+ --base-font-weight:normal;
2787
+ --base-font-style:normal;
2788
+ --base-letter-spacing:0em;
2789
+ --heading-font-color:inherit;
2790
+ --heading-font-color-dark:inherit;
2791
+ --heading-font-family:inherit;
2792
+ --heading-font-weight:bold;
2793
+ --heading-font-style:normal;
2794
+ --heading-letter-spacing:inherit;
2795
+ --anchor-font-color:var(--color-primary-500);
2796
+ --anchor-font-color-dark:var(--color-primary-400);
2797
+ --anchor-font-family:inherit;
2798
+ --anchor-font-size:inherit;
2799
+ --anchor-line-height:inherit;
2800
+ --anchor-font-weight:inherit;
2801
+ --anchor-font-style:inherit;
2802
+ --anchor-letter-spacing:inherit;
2803
+ --anchor-text-decoration:none;
2804
+ --anchor-text-decoration-hover:underline;
2805
+ --anchor-text-decoration-active:none;
2806
+ --anchor-text-decoration-focus:none;
2807
+ --spacing:.25rem;
2808
+ --radius-base:.25rem;
2809
+ --radius-container:.25rem;
2810
+ --default-border-width:1px;
2811
+ --default-divide-width:1px;
2812
+ --default-ring-width:1px;
2813
+ --body-background-color:var(--color-surface-100);
2814
+ --body-background-color-dark:var(--color-surface-800);
2815
+ --color-primary-50:oklch(94.42% .01 84.55);
2816
+ --color-primary-100:oklch(89.99% .03 84.57);
2817
+ --color-primary-200:oklch(85.51% .04 84.56);
2818
+ --color-primary-300:oklch(81.11% .05 88.06);
2819
+ --color-primary-400:oklch(76.57% .06 87.33);
2820
+ --color-primary-500:oklch(72.02% .07 86.67);
2821
+ --color-primary-600:oklch(66.44% .07 86.05);
2822
+ --color-primary-700:oklch(60.95% .06 86.85);
2823
+ --color-primary-800:oklch(55.2% .06 85.36);
2824
+ --color-primary-900:oklch(49.44% .05 86.3);
2825
+ --color-primary-950:oklch(43.27% .04 85.08);
2826
+ --color-primary-contrast-dark:var(--color-primary-950);
2827
+ --color-primary-contrast-light:var(--color-primary-50);
2828
+ --color-primary-contrast-50:var(--color-primary-contrast-dark);
2829
+ --color-primary-contrast-100:var(--color-primary-contrast-dark);
2830
+ --color-primary-contrast-200:var(--color-primary-contrast-dark);
2831
+ --color-primary-contrast-300:var(--color-primary-contrast-dark);
2832
+ --color-primary-contrast-400:var(--color-primary-contrast-dark);
2833
+ --color-primary-contrast-500:var(--color-primary-contrast-dark);
2834
+ --color-primary-contrast-600:var(--color-primary-contrast-dark);
2835
+ --color-primary-contrast-700:var(--color-primary-contrast-light);
2836
+ --color-primary-contrast-800:var(--color-primary-contrast-light);
2837
+ --color-primary-contrast-900:var(--color-primary-contrast-light);
2838
+ --color-primary-contrast-950:var(--color-primary-contrast-light);
2839
+ --color-secondary-50:oklch(91.12% .02 38.38);
2840
+ --color-secondary-100:oklch(84.03% .04 38.74);
2841
+ --color-secondary-200:oklch(76.95% .06 37.71);
2842
+ --color-secondary-300:oklch(70.01% .09 37.84);
2843
+ --color-secondary-400:oklch(63.13% .11 37.5);
2844
+ --color-secondary-500:oklch(56.53% .13 37.64);
2845
+ --color-secondary-600:oklch(52.36% .12 37.52);
2846
+ --color-secondary-700:oklch(47.95% .11 37.55);
2847
+ --color-secondary-800:oklch(43.78% .1 37.59);
2848
+ --color-secondary-900:oklch(39.16% .08 37.63);
2849
+ --color-secondary-950:oklch(34.57% .07 37.38);
2850
+ --color-secondary-contrast-dark:var(--color-secondary-950);
2851
+ --color-secondary-contrast-light:var(--color-secondary-50);
2852
+ --color-secondary-contrast-50:var(--color-secondary-contrast-dark);
2853
+ --color-secondary-contrast-100:var(--color-secondary-contrast-dark);
2854
+ --color-secondary-contrast-200:var(--color-secondary-contrast-dark);
2855
+ --color-secondary-contrast-300:var(--color-secondary-contrast-dark);
2856
+ --color-secondary-contrast-400:var(--color-secondary-contrast-dark);
2857
+ --color-secondary-contrast-500:var(--color-secondary-contrast-light);
2858
+ --color-secondary-contrast-600:var(--color-secondary-contrast-light);
2859
+ --color-secondary-contrast-700:var(--color-secondary-contrast-light);
2860
+ --color-secondary-contrast-800:var(--color-secondary-contrast-light);
2861
+ --color-secondary-contrast-900:var(--color-secondary-contrast-light);
2862
+ --color-secondary-contrast-950:var(--color-secondary-contrast-light);
2863
+ --color-tertiary-50:oklch(93% .02 49.95);
2864
+ --color-tertiary-100:oklch(87.52% .04 51.43);
2865
+ --color-tertiary-200:oklch(81.87% .06 50.12);
2866
+ --color-tertiary-300:oklch(76.44% .08 51.19);
2867
+ --color-tertiary-400:oklch(70.95% .1 49.89);
2868
+ --color-tertiary-500:oklch(65.81% .12 49.2);
2869
+ --color-tertiary-600:oklch(60.89% .11 49.35);
2870
+ --color-tertiary-700:oklch(55.69% .1 49.13);
2871
+ --color-tertiary-800:oklch(50.55% .09 49.31);
2872
+ --color-tertiary-900:oklch(45.08% .08 49);
2873
+ --color-tertiary-950:oklch(39.66% .07 49.2);
2874
+ --color-tertiary-contrast-dark:var(--color-tertiary-950);
2875
+ --color-tertiary-contrast-light:var(--color-tertiary-50);
2876
+ --color-tertiary-contrast-50:var(--color-tertiary-contrast-dark);
2877
+ --color-tertiary-contrast-100:var(--color-tertiary-contrast-dark);
2878
+ --color-tertiary-contrast-200:var(--color-tertiary-contrast-dark);
2879
+ --color-tertiary-contrast-300:var(--color-tertiary-contrast-dark);
2880
+ --color-tertiary-contrast-400:var(--color-tertiary-contrast-dark);
2881
+ --color-tertiary-contrast-500:var(--color-tertiary-contrast-dark);
2882
+ --color-tertiary-contrast-600:var(--color-tertiary-contrast-light);
2883
+ --color-tertiary-contrast-700:var(--color-tertiary-contrast-light);
2884
+ --color-tertiary-contrast-800:var(--color-tertiary-contrast-light);
2885
+ --color-tertiary-contrast-900:var(--color-tertiary-contrast-light);
2886
+ --color-tertiary-contrast-950:var(--color-tertiary-contrast-light);
2887
+ --color-success-50:oklch(97.96% .1 109.92);
2888
+ --color-success-100:oklch(92.06% .11 115.01);
2889
+ --color-success-200:oklch(86.18% .12 118.84);
2890
+ --color-success-300:oklch(80.4% .13 122.85);
2891
+ --color-success-400:oklch(74.46% .14 125.73);
2892
+ --color-success-500:oklch(68.42% .15 128.76);
2893
+ --color-success-600:oklch(61.2% .14 130.26);
2894
+ --color-success-700:oklch(53.77% .13 132.05);
2895
+ --color-success-800:oklch(46.4% .12 134.52);
2896
+ --color-success-900:oklch(38.5% .11 137.08);
2897
+ --color-success-950:oklch(30.28% .1 139.27);
2898
+ --color-success-contrast-dark:var(--color-success-950);
2899
+ --color-success-contrast-light:var(--color-success-50);
2900
+ --color-success-contrast-50:var(--color-success-contrast-dark);
2901
+ --color-success-contrast-100:var(--color-success-contrast-dark);
2902
+ --color-success-contrast-200:var(--color-success-contrast-dark);
2903
+ --color-success-contrast-300:var(--color-success-contrast-dark);
2904
+ --color-success-contrast-400:var(--color-success-contrast-dark);
2905
+ --color-success-contrast-500:var(--color-success-contrast-dark);
2906
+ --color-success-contrast-600:var(--color-success-contrast-dark);
2907
+ --color-success-contrast-700:var(--color-success-contrast-light);
2908
+ --color-success-contrast-800:var(--color-success-contrast-light);
2909
+ --color-success-contrast-900:var(--color-success-contrast-light);
2910
+ --color-success-contrast-950:var(--color-success-contrast-light);
2911
+ --color-warning-50:oklch(95.79% .05 88.07);
2912
+ --color-warning-100:oklch(92.94% .07 85.27);
2913
+ --color-warning-200:oklch(90.05% .09 81.8);
2914
+ --color-warning-300:oklch(87.31% .11 80.89);
2915
+ --color-warning-400:oklch(84.57% .13 78.29);
2916
+ --color-warning-500:oklch(82.02% .14 76.71);
2917
+ --color-warning-600:oklch(76.11% .14 72.37);
2918
+ --color-warning-700:oklch(70.14% .13 67.8);
2919
+ --color-warning-800:oklch(64% .13 62.98);
2920
+ --color-warning-900:oklch(57.93% .13 57.46);
2921
+ --color-warning-950:oklch(51.87% .13 51.28);
2922
+ --color-warning-contrast-dark:var(--color-warning-950);
2923
+ --color-warning-contrast-light:var(--color-warning-50);
2924
+ --color-warning-contrast-50:var(--color-warning-contrast-dark);
2925
+ --color-warning-contrast-100:var(--color-warning-contrast-dark);
2926
+ --color-warning-contrast-200:var(--color-warning-contrast-dark);
2927
+ --color-warning-contrast-300:var(--color-warning-contrast-dark);
2928
+ --color-warning-contrast-400:var(--color-warning-contrast-dark);
2929
+ --color-warning-contrast-500:var(--color-warning-contrast-dark);
2930
+ --color-warning-contrast-600:var(--color-warning-contrast-dark);
2931
+ --color-warning-contrast-700:var(--color-warning-contrast-light);
2932
+ --color-warning-contrast-800:var(--color-warning-contrast-light);
2933
+ --color-warning-contrast-900:var(--color-warning-contrast-light);
2934
+ --color-warning-contrast-950:var(--color-warning-contrast-light);
2935
+ --color-error-50:oklch(89.99% .04 14.04);
2936
+ --color-error-100:oklch(83.6% .08 19.82);
2937
+ --color-error-200:oklch(77.52% .11 21.99);
2938
+ --color-error-300:oklch(72.26% .15 24.9);
2939
+ --color-error-400:oklch(67.55% .19 26.72);
2940
+ --color-error-500:oklch(64.06% .22 28.71);
2941
+ --color-error-600:oklch(59.71% .21 28.7);
2942
+ --color-error-700:oklch(55.17% .2 28.73);
2943
+ --color-error-800:oklch(50.88% .19 28.77);
2944
+ --color-error-900:oklch(46.35% .18 28.89);
2945
+ --color-error-950:oklch(42.03% .17 29.27);
2946
+ --color-error-contrast-dark:var(--color-error-950);
2947
+ --color-error-contrast-light:var(--color-error-50);
2948
+ --color-error-contrast-50:var(--color-error-contrast-dark);
2949
+ --color-error-contrast-100:var(--color-error-contrast-dark);
2950
+ --color-error-contrast-200:var(--color-error-contrast-dark);
2951
+ --color-error-contrast-300:var(--color-error-contrast-dark);
2952
+ --color-error-contrast-400:var(--color-error-contrast-dark);
2953
+ --color-error-contrast-500:var(--color-error-contrast-light);
2954
+ --color-error-contrast-600:var(--color-error-contrast-light);
2955
+ --color-error-contrast-700:var(--color-error-contrast-light);
2956
+ --color-error-contrast-800:var(--color-error-contrast-light);
2957
+ --color-error-contrast-900:var(--color-error-contrast-light);
2958
+ --color-error-contrast-950:var(--color-error-contrast-light);
2959
+ --color-surface-50:oklch(99.7% 0 91.27);
2960
+ --color-surface-100:oklch(99.37% .01 93.48);
2961
+ --color-surface-200:oklch(98.84% .01 88.63);
2962
+ --color-surface-300:oklch(98.54% .02 89.32);
2963
+ --color-surface-400:oklch(98.03% .02 87.12);
2964
+ --color-surface-500:oklch(97.71% .03 88.72);
2965
+ --color-surface-600:oklch(87.07% .03 89.2);
2966
+ --color-surface-700:oklch(76.09% .02 89.81);
2967
+ --color-surface-800:oklch(64.48% .02 86.15);
2968
+ --color-surface-900:oklch(52.55% .02 86.44);
2969
+ --color-surface-950:oklch(39.89% .02 86.87);
2970
+ --color-surface-contrast-dark:var(--color-surface-950);
2971
+ --color-surface-contrast-light:var(--color-surface-50);
2972
+ --color-surface-contrast-50:var(--color-surface-contrast-dark);
2973
+ --color-surface-contrast-100:var(--color-surface-contrast-dark);
2974
+ --color-surface-contrast-200:var(--color-surface-contrast-dark);
2975
+ --color-surface-contrast-300:var(--color-surface-contrast-dark);
2976
+ --color-surface-contrast-400:var(--color-surface-contrast-dark);
2977
+ --color-surface-contrast-500:var(--color-surface-contrast-dark);
2978
+ --color-surface-contrast-600:var(--color-surface-contrast-dark);
2979
+ --color-surface-contrast-700:var(--color-surface-contrast-dark);
2980
+ --color-surface-contrast-800:var(--color-surface-contrast-light);
2981
+ --color-surface-contrast-900:var(--color-surface-contrast-light);
2982
+ --color-surface-contrast-950:var(--color-surface-contrast-light);
2983
+ --shadow-color:oklch(60% 0 89.876/.4);
2984
+ --border-card:2px;
2985
+ --filter-randomized-image:none;
2986
+ --filter-ares-logo:none;
2987
+ --filter-button-image:brightness(0)saturate(100%)invert(21%)sepia(75%)saturate(397%)hue-rotate(338deg)brightness(99%)contrast(93%)
2988
+ }
2989
+ html.dark:where([data-theme=turnip],
2990
+ [data-theme=turnip] *) {
2991
+ --border-card:0;
2992
+ --filter-randomized-image:brightness(50%);
2993
+ --filter-ares-logo:brightness(0)saturate(100%)invert(72%)sepia(8%)saturate(1524%)hue-rotate(3deg)brightness(90%)contrast(88%);
2994
+ --filter-button-image:brightness(0)saturate(100%)invert(72%)sepia(8%)saturate(1524%)hue-rotate(3deg)brightness(90%)contrast(88%)
2995
+ }
2996
+ .icon:where([data-theme=turnip],
2997
+ [data-theme=turnip] *) {
2998
+ filter:var(--filter-button-image);
2999
+ margin:.3rem .2rem .2rem
3000
+ }
3001
+ blockquote {
3002
+ margin-bottom:calc(var(--spacing)*4);
3003
+ text-align:center;
3004
+ filter:brightness(140%);
3005
+ border:0;
3006
+ font-style:italic
3007
+ }
3008
+ h1,
3009
+ h2,
3010
+ h3,
3011
+ h4,
3012
+ h5,
3013
+ h6,
3014
+ .fake-h1,
3015
+ .fake-h2,
3016
+ .fake-h3,
3017
+ .fake-h4 {
3018
+ text-align:start;
3019
+ color:var(--color-primary-900);
3020
+ margin-top:0;
3021
+ font-weight:bolder
3022
+ }
3023
+ :is(h1,
3024
+ h2,
3025
+ h3,
3026
+ h4,
3027
+ h5,
3028
+ h6,
3029
+ .fake-h1,
3030
+ .fake-h2,
3031
+ .fake-h3,
3032
+ .fake-h4):where(.dark,
3033
+ .dark *) {
3034
+ color:var(--color-primary-100)
3035
+ }
3036
+ h1 {
3037
+ text-align:center
3038
+ }
3039
+ h1+p,
3040
+ h2+p,
3041
+ h3+p,
3042
+ h4+p,
3043
+ h5+p,
3044
+ h6+p,
3045
+ .fake-h2+p,
3046
+ .fake-h3+p,
3047
+ .fake-h4+p {
3048
+ margin-top:.5lh
3049
+ }
3050
+ h1,
3051
+ .fake-h1 {
3052
+ font-size:calc(2.25rem*var(--text-scaling));
3053
+ line-height:var(--tw-leading,calc(calc(2.5/2.25)*var(--text-scaling)))
3054
+ }
3055
+ h2,
3056
+ .fake-h2 {
3057
+ font-size:calc(1.875rem*var(--text-scaling));
3058
+ line-height:var(--tw-leading,calc( 1.2 *var(--text-scaling)))
3059
+ }
3060
+ h3,
3061
+ .fake-h3 {
3062
+ font-size:calc(1.5rem*var(--text-scaling));
3063
+ line-height:var(--tw-leading,calc(calc(2/1.5)*var(--text-scaling)))
3064
+ }
3065
+ h4,
3066
+ .fake-h4 {
3067
+ font-size:calc(1.25rem*var(--text-scaling));
3068
+ line-height:var(--tw-leading,calc(calc(1.75/1.25)*var(--text-scaling)))
3069
+ }
3070
+ h5 {
3071
+ font-size:calc(1.125rem*var(--text-scaling));
3072
+ line-height:var(--tw-leading,calc(calc(1.75/1.125)*var(--text-scaling)))
3073
+ }
3074
+ h6 {
3075
+ text-decoration:underline
3076
+ }
3077
+ a.a-as-btn {
3078
+ text-decoration:none
3079
+ }
3080
+ ul {
3081
+ list-style:inside
3082
+ }
3083
+ ol {
3084
+ list-style:inside decimal
3085
+ }
3086
+ li>ul,
3087
+ li>ol {
3088
+ margin-inline-start:2em
3089
+ }
3090
+ p {
3091
+ margin-bottom:calc(var(--spacing)*3)
3092
+ }
3093
+ @property --tw-translate-x {
3094
+ syntax:"*";
3095
+ inherits:false;
3096
+ initial-value:0
3097
+ }
3098
+ @property --tw-translate-y {
3099
+ syntax:"*";
3100
+ inherits:false;
3101
+ initial-value:0
3102
+ }
3103
+ @property --tw-translate-z {
3104
+ syntax:"*";
3105
+ inherits:false;
3106
+ initial-value:0
3107
+ }
3108
+ @property --tw-rotate-x {
3109
+ syntax:"*";
3110
+ inherits:false
3111
+ }
3112
+ @property --tw-rotate-y {
3113
+ syntax:"*";
3114
+ inherits:false
3115
+ }
3116
+ @property --tw-rotate-z {
3117
+ syntax:"*";
3118
+ inherits:false
3119
+ }
3120
+ @property --tw-skew-x {
3121
+ syntax:"*";
3122
+ inherits:false
3123
+ }
3124
+ @property --tw-skew-y {
3125
+ syntax:"*";
3126
+ inherits:false
3127
+ }
3128
+ @property --tw-space-y-reverse {
3129
+ syntax:"*";
3130
+ inherits:false;
3131
+ initial-value:0
3132
+ }
3133
+ @property --tw-space-x-reverse {
3134
+ syntax:"*";
3135
+ inherits:false;
3136
+ initial-value:0
3137
+ }
3138
+ @property --tw-border-style {
3139
+ syntax:"*";
3140
+ inherits:false;
3141
+ initial-value:solid
3142
+ }
3143
+ @property --tw-font-weight {
3144
+ syntax:"*";
3145
+ inherits:false
3146
+ }
3147
+ @property --tw-shadow {
3148
+ syntax:"*";
3149
+ inherits:false;
3150
+ initial-value:0 0 #0000
3151
+ }
3152
+ @property --tw-shadow-color {
3153
+ syntax:"*";
3154
+ inherits:false
3155
+ }
3156
+ @property --tw-shadow-alpha {
3157
+ syntax:"<percentage>";
3158
+ inherits:false;
3159
+ initial-value:100%
3160
+ }
3161
+ @property --tw-inset-shadow {
3162
+ syntax:"*";
3163
+ inherits:false;
3164
+ initial-value:0 0 #0000
3165
+ }
3166
+ @property --tw-inset-shadow-color {
3167
+ syntax:"*";
3168
+ inherits:false
3169
+ }
3170
+ @property --tw-inset-shadow-alpha {
3171
+ syntax:"<percentage>";
3172
+ inherits:false;
3173
+ initial-value:100%
3174
+ }
3175
+ @property --tw-ring-color {
3176
+ syntax:"*";
3177
+ inherits:false
3178
+ }
3179
+ @property --tw-ring-shadow {
3180
+ syntax:"*";
3181
+ inherits:false;
3182
+ initial-value:0 0 #0000
3183
+ }
3184
+ @property --tw-inset-ring-color {
3185
+ syntax:"*";
3186
+ inherits:false
3187
+ }
3188
+ @property --tw-inset-ring-shadow {
3189
+ syntax:"*";
3190
+ inherits:false;
3191
+ initial-value:0 0 #0000
3192
+ }
3193
+ @property --tw-ring-inset {
3194
+ syntax:"*";
3195
+ inherits:false
3196
+ }
3197
+ @property --tw-ring-offset-width {
3198
+ syntax:"<length>";
3199
+ inherits:false;
3200
+ initial-value:0
3201
+ }
3202
+ @property --tw-ring-offset-color {
3203
+ syntax:"*";
3204
+ inherits:false;
3205
+ initial-value:#fff
3206
+ }
3207
+ @property --tw-ring-offset-shadow {
3208
+ syntax:"*";
3209
+ inherits:false;
3210
+ initial-value:0 0 #0000
3211
+ }
3212
+ @property --tw-blur {
3213
+ syntax:"*";
3214
+ inherits:false
3215
+ }
3216
+ @property --tw-brightness {
3217
+ syntax:"*";
3218
+ inherits:false
3219
+ }
3220
+ @property --tw-contrast {
3221
+ syntax:"*";
3222
+ inherits:false
3223
+ }
3224
+ @property --tw-grayscale {
3225
+ syntax:"*";
3226
+ inherits:false
3227
+ }
3228
+ @property --tw-hue-rotate {
3229
+ syntax:"*";
3230
+ inherits:false
3231
+ }
3232
+ @property --tw-invert {
3233
+ syntax:"*";
3234
+ inherits:false
3235
+ }
3236
+ @property --tw-opacity {
3237
+ syntax:"*";
3238
+ inherits:false
3239
+ }
3240
+ @property --tw-saturate {
3241
+ syntax:"*";
3242
+ inherits:false
3243
+ }
3244
+ @property --tw-sepia {
3245
+ syntax:"*";
3246
+ inherits:false
3247
+ }
3248
+ @property --tw-drop-shadow {
3249
+ syntax:"*";
3250
+ inherits:false
3251
+ }
3252
+ @property --tw-drop-shadow-color {
3253
+ syntax:"*";
3254
+ inherits:false
3255
+ }
3256
+ @property --tw-drop-shadow-alpha {
3257
+ syntax:"<percentage>";
3258
+ inherits:false;
3259
+ initial-value:100%
3260
+ }
3261
+ @property --tw-drop-shadow-size {
3262
+ syntax:"*";
3263
+ inherits:false
3264
+ }
3265
+ @property --tw-backdrop-blur {
3266
+ syntax:"*";
3267
+ inherits:false
3268
+ }
3269
+ @property --tw-backdrop-brightness {
3270
+ syntax:"*";
3271
+ inherits:false
3272
+ }
3273
+ @property --tw-backdrop-contrast {
3274
+ syntax:"*";
3275
+ inherits:false
3276
+ }
3277
+ @property --tw-backdrop-grayscale {
3278
+ syntax:"*";
3279
+ inherits:false
3280
+ }
3281
+ @property --tw-backdrop-hue-rotate {
3282
+ syntax:"*";
3283
+ inherits:false
3284
+ }
3285
+ @property --tw-backdrop-invert {
3286
+ syntax:"*";
3287
+ inherits:false
3288
+ }
3289
+ @property --tw-backdrop-opacity {
3290
+ syntax:"*";
3291
+ inherits:false
3292
+ }
3293
+ @property --tw-backdrop-saturate {
3294
+ syntax:"*";
3295
+ inherits:false
3296
+ }
3297
+ @property --tw-backdrop-sepia {
3298
+ syntax:"*";
3299
+ inherits:false
3300
+ }
3301
+ @property --tw-duration {
3302
+ syntax:"*";
3303
+ inherits:false
3304
+ }
3305
+ @property --tw-ease {
3306
+ syntax:"*";
3307
+ inherits:false
3308
+ }
3309
+ @keyframes spin {
3310
+ to {
3311
+ transform:rotate(360deg)
3312
+ }
3313
+ }
3314
+ @keyframes pulse {
3315
+ 50% {
3316
+ opacity:.5
3317
+ }
3318
+ }