@dxos/ui-theme 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/index.mjs +0 -62
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/index.mjs +0 -62
- package/dist/lib/node-esm/index.mjs.map +4 -4
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/plugin/node-cjs/main.css +311 -189
- package/dist/plugin/node-cjs/main.css.map +3 -3
- package/dist/plugin/node-cjs/meta.json +1 -1
- package/dist/plugin/node-cjs/plugins/ThemePlugin.cjs +2 -1
- package/dist/plugin/node-cjs/plugins/ThemePlugin.cjs.map +3 -3
- package/dist/plugin/node-esm/main.css +311 -189
- package/dist/plugin/node-esm/main.css.map +3 -3
- package/dist/plugin/node-esm/meta.json +1 -1
- package/dist/plugin/node-esm/plugins/ThemePlugin.mjs +2 -1
- package/dist/plugin/node-esm/plugins/ThemePlugin.mjs.map +3 -3
- package/dist/types/src/Theme.stories.d.ts.map +1 -1
- package/dist/types/src/defs.d.ts +0 -5
- package/dist/types/src/defs.d.ts.map +1 -1
- package/dist/types/src/fragments/hover.d.ts +0 -2
- package/dist/types/src/fragments/hover.d.ts.map +1 -1
- package/dist/types/src/fragments/index.d.ts +0 -1
- package/dist/types/src/fragments/index.d.ts.map +1 -1
- package/dist/types/src/plugins/ThemePlugin.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -6
- package/src/Theme.stories.tsx +3 -1
- package/src/css/DESIGN_SYSTEM.md +89 -51
- package/src/css/base/base.css +39 -0
- package/src/css/components/button.css +21 -16
- package/src/css/components/callout.css +140 -0
- package/src/css/components/input.css +36 -0
- package/src/css/components/state.css +1 -11
- package/src/css/components/state.md +1 -1
- package/src/css/components/surface.css +165 -58
- package/src/css/components/tag.css +13 -1
- package/src/css/integrations/codemirror.css +15 -0
- package/src/css/layout/main.css +26 -2
- package/src/css/layout/native.css +1 -0
- package/src/css/theme/roles.css +92 -0
- package/src/css/theme/spacing.css +63 -54
- package/src/css/theme/surfaces.css +215 -0
- package/src/css/theme/text.css +6 -2
- package/src/css/utilities.css +13 -9
- package/src/defs.ts +0 -25
- package/src/fragments/hover.ts +0 -3
- package/src/fragments/index.ts +0 -1
- package/src/main.css +8 -10
- package/src/plugins/ThemePlugin.ts +50 -40
- package/src/plugins/main.css +1 -1
- package/src/tokens.css +22 -0
- package/dist/types/src/fragments/density.d.ts +0 -4
- package/dist/types/src/fragments/density.d.ts.map +0 -1
- package/src/css/components/panel.css +0 -117
- package/src/css/theme/semantic.css +0 -244
- package/src/fragments/AUDIT.md +0 -55
- package/src/fragments/density.ts +0 -43
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../../src/css/theme/animation.css", "../../../src/css/theme/border.css", "../../../src/css/theme/palette.css", "../../../src/css/theme/
|
|
4
|
-
"sourcesContent": ["/**\n * Animation\n */\n\n@theme {\n /* Transition timing function */\n --ease-in-out-symmetric: cubic-bezier(0.5, 0, 0.5, 1);\n\n /** \n * Fade\n */\n @keyframes fade-in {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n }\n @keyframes fade-out {\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n }\n --animate-fade-in: fade-in 200ms ease-out;\n --animate-fade-out: fade-out 400ms ease-out;\n\n /** \n * Popper/dialog slide \n */\n @keyframes slide-down-and-fade {\n from {\n opacity: 1;\n transform: translateY(0);\n }\n to {\n opacity: 0;\n transform: translateY(16px);\n }\n }\n @keyframes slide-left-and-fade {\n from {\n opacity: 0;\n transform: translateX(-16px);\n }\n to {\n opacity: 1;\n transform: translateX(0);\n }\n }\n @keyframes slide-up-and-fade {\n from {\n opacity: 0;\n transform: translateY(16px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n @keyframes slide-right-and-fade {\n from {\n opacity: 0;\n transform: translateX(16px);\n }\n to {\n opacity: 1;\n transform: translateX(0);\n }\n }\n --animate-slide-down-and-fade: slide-down-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-slide-left-and-fade: slide-left-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-slide-up-and-fade: slide-up-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-slide-right-and-fade: slide-right-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n\n /** \n * Toast \n */\n @keyframes toast-hide {\n 0% {\n opacity: 1;\n }\n 100% {\n opacity: 0;\n }\n }\n @keyframes toast-slide-in-right {\n 0% {\n transform: translateX(calc(100% + 1rem));\n }\n 100% {\n transform: translateX(0);\n }\n }\n @keyframes toast-slide-in-bottom {\n 0% {\n transform: translateY(calc(100% + 1rem));\n }\n 100% {\n transform: translateY(0);\n }\n }\n @keyframes toast-swipe-out {\n 0% {\n transform: translateX(var(--radix-toast-swipe-end-x));\n }\n 100% {\n transform: translateX(calc(100% + 1rem));\n }\n }\n --animate-toast-hide: toast-hide 100ms ease-in forwards;\n --animate-toast-slide-in-right: toast-slide-in-right 150ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-toast-slide-in-bottom: toast-slide-in-bottom 150ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-toast-swipe-out: toast-swipe-out 100ms ease-out forwards;\n\n /** \n * Accordion \n */\n @keyframes slide-down {\n from {\n height: 0px;\n }\n to {\n height: var(--radix-accordion-content-height);\n }\n }\n @keyframes slide-up {\n from {\n height: var(--radix-accordion-content-height);\n }\n to {\n height: 0px;\n }\n }\n --animate-slide-down: slide-down 300ms cubic-bezier(0.87, 0, 0.13, 1);\n --animate-slide-up: slide-up 300ms cubic-bezier(0.87, 0, 0.13, 1);\n\n /** \n * Shimmer \n */\n @keyframes shimmer-loop {\n 100% {\n transform: translateX(100%);\n }\n }\n --animate-shimmer: shimmer-loop 2s infinite;\n\n /** \n * Halo pulse \n */\n @keyframes halo-pulse {\n 0% {\n opacity: 0.3;\n }\n 5% {\n opacity: 1;\n }\n 100% {\n opacity: 0.3;\n }\n }\n --animate-halo-pulse: halo-pulse 2s ease-out infinite;\n\n /** \n * Progress \n */\n @keyframes progress-indeterminate {\n 0% {\n left: 0;\n width: 0%;\n }\n 25% {\n left: 25%;\n width: 50%;\n }\n 75% {\n left: 50%;\n width: 100%;\n }\n 100% {\n left: 100%;\n width: 0%;\n }\n }\n --animate-progress-indeterminate: progress-indeterminate 2s ease-out infinite;\n\n /** \n * Border trail \n */\n @keyframes trail {\n to {\n offset-distance: 100%;\n }\n }\n @keyframes trail-offset {\n 0% {\n offset-distance: 50%;\n }\n 100% {\n offset-distance: 150%;\n }\n }\n --animate-trail: trail 6s linear infinite;\n --animate-trail-offset: trail-offset 6s linear infinite;\n\n /** \n * Spin \n */\n --animate-spin-slow: spin 3s linear infinite;\n\n /** \n * Blink \n */\n @keyframes blink {\n 0%,\n 50%,\n 100% {\n opacity: 1;\n }\n 25%,\n 75% {\n opacity: 0;\n }\n }\n --animate-blink: blink 1s step-start infinite;\n}\n\n/**\n * Shimmer (text)\n * Sweeps a brighter band across text via mask alpha \u2014 preserves the consumer's color.\n * Translates exactly one tile period (2\u00D7 element width) per cycle so the loop seam is invisible.\n */\n@keyframes shimmer-text {\n from {\n mask-position-x: 100%;\n -webkit-mask-position-x: 100%;\n }\n to {\n mask-position-x: -100%;\n -webkit-mask-position-x: -100%;\n }\n}\n\n/**\n * Honor user reduced-motion preference for decorative animations.\n * Functional transitions (fade/slide/toast/blink) are intentionally excluded \u2014\n * suppressing them would hide UI state changes.\n */\n@media (prefers-reduced-motion: reduce) {\n .animate-halo-pulse,\n .animate-spin-slow,\n .animate-trail,\n .animate-trail-offset,\n .animate-shimmer {\n animation: none;\n }\n}\n", "/**\n * Border\n */\n\n@theme {\n /* Custom spacing/sizing values - for ring, ring-offset, border-width, etc. */\n --ring-offset-width-focus-offset: var(--dx-focus-offset);\n --ring-width-focus-line: var(--dx-focus-line);\n --ring-width-hair-line: var(--dx-hair-line);\n --ring-width-thick-line: var(--dx-thick-line);\n --ring-width-no-line: var(--dx-no-line);\n --border-width-landmark-line: var(--dx-landmark-line);\n\n /* Border radius scale */\n --radius-none: 0;\n --radius-sm: 0.25rem;\n --radius: 0.5rem;\n --radius-md: 0.75rem;\n --radius-lg: 1rem;\n\n /* Box shadow */\n --shadow-slider: 0 0 0 5px rgba(0, 0, 0, 0.3);\n}\n", "/**\n * Color theme tokens.\n * https://tailwindcss.com/docs/colors\n * \n * NOTE: The following are equivalent:\n * text-red-500\n * text-(--color-red-500)\n * text-[var(--color-red-500)]\n */\n\n@theme {\n /**\n * Neutral ramp.\n *\n * Warm-tinted gray (not pure neutral): every level shares --dx-neutral-chroma / --dx-neutral-hue,\n * so those two knobs shift the warmth across the whole ramp (and everything derived from it). The\n * light end is re-spread vs Tailwind's defaults \u2014 which squeeze 50\u2013300 into ~0.11 L while the dark\n * end spans ~0.23 \u2014 so light steps (~0.025 L) roughly match dark steps (~0.030 L).\n *\n * Two kinds of level, listed below in ascending (darkening) order:\n * - Anchors \u2014 the Tailwind hundreds (50\u2026950), defined by explicit lightness.\n * - In-between steps \u2014 `color-mix` interpolations of the surrounding anchors.\n */\n --dx-neutral-hue: 190;\n --dx-neutral-chroma: 0.001;\n\n --color-neutral-50: oklch(0.985 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-75: color-mix(in oklch, var(--color-neutral-50) 50%, var(--color-neutral-100) 50%);\n --color-neutral-100: oklch(0.935 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-125: color-mix(in oklch, var(--color-neutral-100) 75%, var(--color-neutral-200) 25%);\n --color-neutral-150: color-mix(in oklch, var(--color-neutral-100) 50%, var(--color-neutral-200) 50%);\n --color-neutral-175: color-mix(in oklch, var(--color-neutral-150) 50%, var(--color-neutral-200) 50%);\n --color-neutral-200: oklch(0.875 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-250: color-mix(in oklch, var(--color-neutral-200) 50%, var(--color-neutral-300) 50%);\n --color-neutral-300: oklch(0.8 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-400: oklch(0.708 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-500: oklch(0.556 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-600: oklch(0.439 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-700: oklch(0.371 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-750: color-mix(in oklch, var(--color-neutral-700) 50%, var(--color-neutral-800) 50%);\n --color-neutral-775: color-mix(in oklch, var(--color-neutral-750) 50%, var(--color-neutral-800) 50%);\n --color-neutral-800: oklch(0.269 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-825: color-mix(in oklch, var(--color-neutral-800) 75%, var(--color-neutral-900) 25%);\n --color-neutral-850: color-mix(in oklch, var(--color-neutral-800) 50%, var(--color-neutral-900) 50%);\n --color-neutral-875: color-mix(in oklch, var(--color-neutral-800) 25%, var(--color-neutral-900) 75%);\n --color-neutral-900: oklch(0.205 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-925: color-mix(in oklch, var(--color-neutral-900) 50%, var(--color-neutral-950) 50%);\n --color-neutral-950: oklch(0.145 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n\n /*\n * Primary\n */\n --color-primary-50: var(--color-blue-50);\n --color-primary-100: var(--color-blue-100);\n --color-primary-200: var(--color-blue-200);\n --color-primary-300: var(--color-blue-300);\n --color-primary-400: var(--color-blue-400);\n --color-primary-500: var(--color-blue-500);\n --color-primary-600: var(--color-blue-600);\n --color-primary-700: var(--color-blue-700);\n --color-primary-800: var(--color-blue-800);\n --color-primary-900: var(--color-blue-900);\n --color-primary-950: var(--color-blue-950);\n\n /* Composer logo colors */\n --color-composer-100: rgb(5 40 61);\n --color-composer-200: rgb(10 75 105);\n --color-composer-300: rgb(1 122 183);\n --color-composer-400: rgb(6 197 253);\n}\n", "/**\n * Tokens\n *\n * Naming convention: --color-{name}-{part}[-{state}]\n * part : surface | fg | border | bg | text\n * state : hover | active (optional)\n *\n * See DESIGN_SYSTEM.md.\n */\n\n@theme {\n /*\n * Elevation ladder \u2014 strictly monotonic, z-order low \u2192 high.\n * Dark: darker = lower. Light: lighter = higher (inverted toward white).\n *\n * Level Name Roles\n * 0 void deck, scrim base\n * 1 base base content, L0 icon rail\n * 2 chrome L1/R sidebars, header\n * 3 card card\n * 4 raised group, input, focus/attention\n * 5 bar dialog/modal, toolbar (sticky, drop-shadowed)\n * 6 modal popover, menu, toast, tooltip\n * 7 float \n *\n * These are private (--dx-*) knobs \u2014 use named surface tokens in components, not these directly.\n */\n --dx-elevation-0: light-dark(var(--color-neutral-300), var(--color-neutral-950));\n --dx-elevation-1: light-dark(var(--color-neutral-300), var(--color-neutral-925));\n --dx-elevation-2: light-dark(var(--color-neutral-200), var(--color-neutral-900));\n --dx-elevation-3: light-dark(var(--color-neutral-125), var(--color-neutral-875));\n --dx-elevation-4: light-dark(var(--color-neutral-125), var(--color-neutral-850));\n --dx-elevation-5: light-dark(var(--color-neutral-100), var(--color-neutral-825));\n --dx-elevation-6: light-dark(var(--color-neutral-75), var(--color-neutral-800));\n --dx-elevation-7: light-dark(var(--color-neutral-50), var(--color-neutral-775));\n --dx-elevation-8: light-dark(white, var(--color-neutral-750));\n\n /** \n * Elevation 0\n */\n\n --color-deck-surface: var(--dx-elevation-0);\n\n /* Translucent dimming layer; tracks the lowest elevation (void) rather than a raw neutral. */\n --color-scrim-surface: light-dark(\n oklch(from var(--dx-elevation-0) l c h / 0.5),\n oklch(from var(--dx-elevation-0) l c h / 0.25)\n );\n\n /** \n * Elevation 1\n */\n\n --color-card-surface: var(--dx-elevation-1);\n\n /** \n * Elevation 2\n */\n\n --color-base-surface: var(--dx-elevation-2);\n --color-base-fg: light-dark(var(--color-neutral-950), var(--color-neutral-150));\n\n /* Map attention to focus-surface logic so that elements acting as active attention zones highlight correctly on focus. */\n --color-attention-surface: var(--dx-elevation-2);\n --color-attention-contains: oklch(from var(--color-accent-bg) l c h / 0.3);\n\n /**\n * Elevation 3\n */\n\n --color-header-surface: var(--dx-elevation-3);\n\n --color-sidebar-surface: var(--dx-elevation-3);\n /* Sidebar body text. Default sits one ramp stop below the current/selected emphasis. */\n --color-sidebar-fg: light-dark(var(--color-neutral-700), var(--color-neutral-250));\n --color-sidebar-current-fg: light-dark(var(--color-neutral-950), var(--color-neutral-75));\n\n /* Sidebar / panel layout levels */\n --color-l0-surface: var(--dx-elevation-2);\n --color-l1-surface: var(--dx-elevation-3);\n --color-r0-surface: var(--dx-elevation-3);\n --color-r1-surface: var(--dx-elevation-3);\n\n /** \n * Elevation 4\n */\n\n --color-toolbar-surface: var(--dx-elevation-4);\n\n /** \n * Elevation 5\n */\n\n /* Focus \u2014 a raised content surface (one level above card) so an attended pane reads as lifted. */\n --color-focus-surface: var(--dx-elevation-5);\n --color-focus-ring: light-dark(var(--color-blue-400), var(--color-blue-600));\n --color-focus-ring-subtle: light-dark(var(--color-neutral-300), var(--color-neutral-600));\n\n --color-group-surface: var(--dx-elevation-5);\n /* Subtle alternate of group-surface for zebra striping (e.g. calendar months) \u2014 offset off\n * elevation-4 via relative oklch so it tracks the ramp: darker in light mode, lighter in dark. */\n --color-group-alt-surface: light-dark(\n oklch(from var(--dx-elevation-5) calc(l - 0.03) c h),\n oklch(from var(--dx-elevation-5) calc(l + 0.03) c h)\n );\n\n --color-input-surface: var(--dx-elevation-5);\n\n /**\n * Elevation 6\n */\n\n --color-modal-surface: var(--dx-elevation-6);\n\n /**\n * Elevation 7\n */\n\n --color-popover-surface: var(--dx-elevation-7);\n\n /**\n * Elevation 8\n */\n\n /**\n * Misc\n */\n\n --color-inverse-surface: light-dark(var(--color-neutral-800), var(--color-neutral-200));\n --color-inverse-fg: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n\n /*\n * Text emphasis \u2014 foregrounds at decreasing emphasis, anchored on --color-base-fg (strongest):\n * base-fg \u2192 description \u2192 subdued \u2192 placeholder (weakest).\n * Tuned for legibility against the surfaces rather than mapped to the elevation ladder (which\n * governs backgrounds, not text contrast), so these stay explicit neutrals.\n */\n --color-description: light-dark(var(--color-neutral-600), var(--color-neutral-400));\n --color-subdued: light-dark(var(--color-neutral-500), var(--color-neutral-600));\n --color-placeholder: light-dark(var(--color-neutral-400), var(--color-neutral-600));\n\n /*\n * Controls \u2014 the input/control fill is a deliberate off-ladder token (cf. the grid \"paper\"\n * surfaces). It backs text inputs and the default/ghost button (bg-input-bg) and must contrast\n * whatever surface it sits on: a subtle inset well in light mode, a raised fill in dark mode that\n * reads lighter than the topmost surface. Do not map it to an elevation level.\n */\n --color-input-bg: light-dark(var(--color-neutral-250), var(--color-neutral-700));\n --color-input-fg: var(--color-base-fg);\n\n /*\n * State surfaces (hover, current, selected) are derived from the host surface (--surface-bg) via\n * relative oklch \u2014 darker in light mode, lighter in dark \u2014 so a highlight stays visible at any\n * elevation. The values here resolve against the root --surface-bg (= base-surface, set in\n * base.css), giving the correct default for content outside any surface zone. Surface zones\n * publish their own --surface-bg and re-derive these tokens in surface.css, which is where the\n * substitution re-runs for that subtree.\n *\n * Offset magnitudes (lightness): hover \u22130.08, subtle \u22130.02, current \u22130.10, current-hover \u22130.12.\n * Keep these in sync with the per-zone re-derivation in components/surface.css.\n */\n --color-hover-surface: light-dark(\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l - 0.08) c h),\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l + 0.08) c h)\n );\n --color-hover-fg: light-dark(var(--color-neutral-950), var(--color-neutral-150));\n\n /*\n * Subtle region hover for large highlight targets (list rows, tiles) where the full\n * control-strength hover reads as too heavy. Consumed by `.dx-hover` / `.dx-hover-row`;\n * controls (buttons) keep --color-hover-surface.\n */\n --color-hover-surface-subtle: light-dark(\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l - 0.02) c h),\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l + 0.02) c h)\n );\n\n /* current (aria-current) */\n --color-current-surface: light-dark(\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l - 0.1) c h),\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l + 0.1) c h)\n );\n --color-current-surface-hover: light-dark(\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l - 0.12) c h),\n oklch(from var(--surface-bg, var(--color-base-surface)) calc(l + 0.12) c h)\n );\n --color-current-fg: light-dark(var(--color-neutral-950), var(--color-neutral-50));\n\n /* selected (aria-selected) tracks current */\n --color-selected-surface: var(--color-current-surface);\n --color-selected-surface-hover: var(--color-current-surface-hover);\n --color-selected-fg: var(--color-current-fg);\n\n /* Accent (primary) */\n --color-accent-bg: light-dark(var(--color-blue-600), var(--color-blue-700));\n --color-accent-bg-hover: light-dark(var(--color-blue-700), var(--color-blue-800));\n --color-accent-fg: var(--color-blue-100);\n --color-accent-text: light-dark(var(--color-blue-600), var(--color-blue-400));\n --color-accent-text-hover: light-dark(var(--color-blue-500), var(--color-blue-500));\n\n /* Unaccented */\n --color-un-accent: var(--color-neutral-400);\n --color-un-accent-hover: var(--color-neutral-500);\n\n /* Separator */\n --color-primary-separator: light-dark(var(--color-neutral-200), var(--color-neutral-800));\n --color-separator: light-dark(var(--color-neutral-200), var(--color-neutral-700));\n --color-input-separator: light-dark(var(--color-neutral-250), var(--color-neutral-750));\n --color-subdued-separator: light-dark(var(--color-neutral-250), var(--color-neutral-775));\n --color-active-separator: light-dark(var(--color-blue-500), var(--color-blue-500));\n\n /* Scrollbar */\n --color-scrollbar-track: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n --color-scrollbar-thumb: light-dark(var(--color-neutral-200), var(--color-neutral-600));\n --color-scrollbar-thumb-active: light-dark(var(--color-neutral-200), var(--color-neutral-600));\n --color-scrollbar-thumb-hover: light-dark(var(--color-neutral-200), var(--color-neutral-600));\n\n /*\n * Sheet / Grid \u2014 intentionally OFF the elevation ladder.\n * NOTE: Update main.css when changing grid tokens (and restart dev server).\n *\n * These are \"paper\" surfaces for the data grid: maximum-contrast canvases (near-white in light,\n * near-black in dark) plus saturated selection/comment accents. The elevation ladder is\n * monotonic (light: lighter = higher), so it cannot express a surface that is simultaneously the\n * lightest in light mode and the darkest in dark mode. Keep these as explicit neutrals/accents;\n * do not fold them into --dx-elevation-*.\n */\n --color-axis-surface: light-dark(var(--color-neutral-100), var(--color-neutral-900));\n --color-axis-text: light-dark(var(--color-neutral-700), var(--color-neutral-300));\n --color-axis-selected-surface: light-dark(var(--color-neutral-100), var(--color-neutral-900));\n --color-axis-selected-text: light-dark(var(--color-neutral-100), var(--color-neutral-900));\n\n --color-grid-surface: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n --color-grid-fg: light-dark(var(--color-neutral-950), var(--color-neutral-50));\n --color-grid-line: light-dark(var(--color-neutral-200), var(--color-neutral-800));\n --color-grid-highlight: oklch(from var(--color-emerald-500) l c h / 0.5);\n --color-grid-selection-surface: light-dark(var(--color-blue-500), var(--color-blue-400));\n --color-grid-selection-fg: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n --color-grid-comment: light-dark(var(--color-green-400), var(--color-green-600));\n --color-grid-comment-active: light-dark(\n oklch(from var(--color-green-400) l c h / 0.5),\n oklch(from var(--color-green-600) l c h / 0.5)\n );\n}\n", "/**\n * Tokens\n */\n\n/**\n * Utility classes \n */\n@theme {\n /** Minimum inset from the viewport edge for floating surfaces. */\n --spacing-screen-border: 2rem;\n\n --spacing-popover-default-width: 20rem;\n --spacing-popover-min-width: 16rem;\n\n --spacing-document-max-width: 50rem;\n --spacing-document-width: calc(50rem - env(safe-area-inset-left) - env(safe-area-inset-right));\n\n --spacing-card-default-width: 20rem;\n --spacing-card-min-width: 18rem;\n --spacing-card-max-width: 22rem;\n --spacing-card-min-height: 18rem;\n --spacing-card-max-height: 30rem;\n\n --spacing-tag-padding-block: 0.125rem;\n\n --spacing-trim-xs: 0.25rem;\n --spacing-trim-sm: 0.5rem;\n --spacing-trim-md: 0.75rem;\n --spacing-trim-lg: 1.5rem;\n\n /** Minimal trim to allow for ring/outline. */\n --spacing-form-chrome: var(--spacing-trim-xs);\n --spacing-form-gap: var(--spacing-trim-sm);\n --spacing-form-section-gap: var(--spacing-trim-md);\n\n /**\n * Density: md (default).\n */\n --spacing-form-padding: var(--spacing-trim-sm);\n --spacing-icon-button-padding: var(--spacing-trim-xs);\n --spacing-scroll-padding: 4px;\n}\n\n@layer dx-tokens {\n /**\n * Density: lg \u2014 large touch targets (~40px controls).\n */\n .dx-density-lg {\n --spacing-form-padding: var(--spacing-trim-md);\n --spacing-icon-button-padding: var(--spacing-trim-sm);\n --spacing-scroll-padding: 8px;\n }\n\n /**\n * Density: sm \u2014 compact (~28px controls).\n */\n .dx-density-sm {\n --spacing-form-padding: var(--spacing-trim-xs);\n --spacing-icon-button-padding: var(--spacing-trim-xs);\n --spacing-scroll-padding: 2px;\n }\n\n /**\n * Density: xs \u2014 ultra-compact (~24px controls).\n */\n .dx-density-xs {\n --spacing-form-padding: var(--spacing-trim-xs);\n --spacing-icon-button-padding: var(--spacing-trim-xs);\n --spacing-scroll-padding: 2px;\n }\n}\n\n/**\n * CSS variables.\n */\n@layer dx-tokens {\n :root {\n --dx-line-0: 0px;\n --dx-line-1: 1px;\n --dx-line-2: 2px;\n\n --dx-lacuna-12: 1.5rem;\n --dx-lacuna-3: 0.375rem;\n --dx-lacuna-4: 0.5rem;\n --dx-lacuna-6: 0.75rem;\n\n /* Form: 8px */\n --dx-gutter-sm: 0.5rem;\n /* Dialog: 16px */\n --dx-gutter-md: 1rem;\n /* Card: 32px */\n --dx-gutter-lg: 2rem;\n }\n\n :root {\n --dx-hair-line: 1px;\n --dx-landmark-line: 1px;\n --dx-modal-line: 1px;\n --dx-no-line: 0px;\n --dx-thick-line: 2px;\n --dx-focus-line: 2px;\n\n --dx-no-line: var(--dx-line-0);\n --dx-hair-line: var(--dx-line-1);\n --dx-thick-line: var(--dx-line-2);\n\n --dx-focus-offset: var(--dx-no-line);\n --dx-focus-line: var(--dx-thick-line);\n --dx-modal-line: var(--dx-hair-line);\n --dx-grid-focus-indicator-width: var(--dx-hair-line);\n\n --dx-input-md: var(--dx-lacuna-3);\n --dx-input-lg: var(--dx-lacuna-4);\n --dx-input-sm: var(--dx-lacuna-3);\n\n --dx-default-icons-size: 1rem; /* size=4 */\n }\n\n [data-grid-focus-indicator-variant='stack'] {\n --dx-grid-focus-indicator-width: var(--dx-thick-line);\n }\n\n :root {\n --dx-rail-content: 3rem;\n /** TODO(burdon): Audit. */\n /** TODO(burdon): Density (2 sizes). */\n --dx-rail-size: calc(var(--dx-rail-content) + 1px);\n --dx-rail-item: calc(var(--dx-rail-content) - 1rem);\n /* TODO(burdon): Added 1px for border. */\n /* TODO(burdon): Remove direct usage. */\n --dx-rail-action: calc(var(--dx-rail-content) - 0.5rem);\n\n --dx-topbar-size: var(--dx-rail-size); /* 50px */\n --dx-toolbar-size: var(--dx-rail-action); /* 40px */\n --dx-statusbar-size: var(--dx-rail-item); /* 32px */\n\n /** NOTE: Sidebar optimized to show plank + companion with sidebar open on 16\" MBP. */\n --dx-nav-sidebar-size: 350px;\n --dx-complementary-sidebar-size: 25rem;\n --dx-drawer-size: 50dvh;\n\n --dx-l0-size: 72px;\n --dx-l0-avatar-size: 3rem;\n --dx-l1-size: calc(var(--dx-nav-sidebar-size) - var(--dx-l0-size));\n --dx-r0-size: var(--dx-rail-size);\n --dx-r1-size: calc(var(--dx-complementary-sidebar-size) - var(--dx-r0-size) - 1px);\n }\n\n :root {\n --dx-calc-auto: auto;\n --dx-calc-min: min-content;\n --dx-calc-fit: fit-content;\n --dx-calc-max: max-content;\n --dx-calc-content: content;\n }\n\n @supports (block-size: calc-size(fit-content, size)) {\n :root {\n --dx-calc-auto: calc-size(auto, size);\n --dx-calc-min: calc-size(min-content, size);\n --dx-calc-fit: calc-size(fit-content, size);\n --dx-calc-max: calc-size(max-content, size);\n --dx-calc-content: calc-size(content, size);\n }\n }\n}\n", "/**\n * Color styles.\n *\n * Roles:\n * -bg background fill (e.g., button)\n * -bg-hover hover background fill\n * -fg foreground for text on surface\n * -surface background for surface\n * -text text on base surface\n * -border border for surface\n *\n * Hue/role tokens: each hue exposes bg / bg-hover / surface / fg / text / border.\n * `fg` is the on-color for a colored bg/surface; `text` is the hue as standalone\n * colored text on the neutral background. Semantic names (primary, error, \u2026) alias a source hue.\n *\n * These tokens are literal custom properties on disk (not expanded at PostCSS time) because\n * several pipelines read the theme without our Vite plugin chain \u2014 notably Tailwind's\n * `@reference \"\u2026/main.css\"` loader used by the lit-* packages, and tailwindcss's design-system\n * loader used in tests. Edit them here directly.\n */\n\n@theme {\n /*\n * Semantic \u2014 each name aliases a source hue.\n */\n\n --color-primary-bg: var(--color-blue-bg);\n --color-primary-bg-hover: var(--color-blue-bg-hover);\n --color-primary-fg: var(--color-blue-fg);\n --color-primary-surface: var(--color-blue-surface);\n --color-primary-text: var(--color-blue-text);\n --color-primary-border: var(--color-blue-border);\n\n --color-secondary-bg: var(--color-green-bg);\n --color-secondary-bg-hover: var(--color-green-bg-hover);\n --color-secondary-fg: var(--color-green-fg);\n --color-secondary-surface: var(--color-green-surface);\n --color-secondary-text: var(--color-green-text);\n --color-secondary-border: var(--color-green-border);\n\n --color-info-bg: var(--color-cyan-bg);\n --color-info-bg-hover: var(--color-cyan-bg-hover);\n --color-info-fg: var(--color-cyan-fg);\n --color-info-surface: var(--color-cyan-surface);\n --color-info-text: var(--color-cyan-text);\n --color-info-border: var(--color-cyan-border);\n\n --color-success-bg: var(--color-emerald-bg);\n --color-success-bg-hover: var(--color-emerald-bg-hover);\n --color-success-fg: var(--color-emerald-fg);\n --color-success-surface: var(--color-emerald-surface);\n --color-success-text: var(--color-emerald-text);\n --color-success-border: var(--color-emerald-border);\n\n --color-warning-bg: var(--color-amber-bg);\n --color-warning-bg-hover: var(--color-amber-bg-hover);\n --color-warning-fg: var(--color-amber-fg);\n --color-warning-surface: var(--color-amber-surface);\n --color-warning-text: var(--color-amber-text);\n --color-warning-border: var(--color-amber-border);\n\n --color-error-bg: var(--color-rose-bg);\n --color-error-bg-hover: var(--color-rose-bg-hover);\n --color-error-fg: var(--color-rose-fg);\n --color-error-surface: var(--color-rose-surface);\n --color-error-text: var(--color-rose-text);\n --color-error-border: var(--color-rose-border);\n\n /*\n * Hue.\n */\n\n --color-neutral-bg: var(--color-neutral-600);\n --color-neutral-bg-hover: var(--color-neutral-700);\n --color-neutral-fg: var(--color-neutral-900);\n --color-neutral-surface: var(--color-neutral-400);\n --color-neutral-text: light-dark(var(--color-neutral-800), var(--color-neutral-500));\n --color-neutral-border: var(--color-neutral-600);\n\n --color-red-bg: var(--color-red-600);\n --color-red-bg-hover: var(--color-red-700);\n --color-red-fg: var(--color-red-900);\n --color-red-surface: var(--color-red-400);\n --color-red-text: light-dark(var(--color-red-800), var(--color-red-500));\n --color-red-border: var(--color-red-600);\n\n --color-orange-bg: var(--color-orange-600);\n --color-orange-bg-hover: var(--color-orange-700);\n --color-orange-fg: var(--color-orange-900);\n --color-orange-surface: var(--color-orange-400);\n --color-orange-text: light-dark(var(--color-orange-800), var(--color-orange-500));\n --color-orange-border: var(--color-orange-600);\n\n --color-amber-bg: var(--color-amber-600);\n --color-amber-bg-hover: var(--color-amber-700);\n --color-amber-fg: var(--color-amber-900);\n --color-amber-surface: var(--color-amber-400);\n --color-amber-text: light-dark(var(--color-amber-800), var(--color-amber-500));\n --color-amber-border: var(--color-amber-600);\n\n --color-yellow-bg: var(--color-yellow-600);\n --color-yellow-bg-hover: var(--color-yellow-700);\n --color-yellow-fg: var(--color-yellow-900);\n --color-yellow-surface: var(--color-yellow-400);\n --color-yellow-text: light-dark(var(--color-yellow-800), var(--color-yellow-500));\n --color-yellow-border: var(--color-yellow-600);\n\n --color-lime-bg: var(--color-lime-600);\n --color-lime-bg-hover: var(--color-lime-700);\n --color-lime-fg: var(--color-lime-900);\n --color-lime-surface: var(--color-lime-400);\n --color-lime-text: light-dark(var(--color-lime-800), var(--color-lime-500));\n --color-lime-border: var(--color-lime-600);\n\n --color-green-bg: var(--color-green-600);\n --color-green-bg-hover: var(--color-green-700);\n --color-green-fg: var(--color-green-900);\n --color-green-surface: var(--color-green-400);\n --color-green-text: light-dark(var(--color-green-800), var(--color-green-500));\n --color-green-border: var(--color-green-600);\n\n --color-emerald-bg: var(--color-emerald-600);\n --color-emerald-bg-hover: var(--color-emerald-700);\n --color-emerald-fg: var(--color-emerald-900);\n --color-emerald-surface: var(--color-emerald-400);\n --color-emerald-text: light-dark(var(--color-emerald-800), var(--color-emerald-500));\n --color-emerald-border: var(--color-emerald-600);\n\n --color-teal-bg: var(--color-teal-600);\n --color-teal-bg-hover: var(--color-teal-700);\n --color-teal-fg: var(--color-teal-900);\n --color-teal-surface: var(--color-teal-400);\n --color-teal-text: light-dark(var(--color-teal-800), var(--color-teal-500));\n --color-teal-border: var(--color-teal-600);\n\n --color-cyan-bg: var(--color-cyan-600);\n --color-cyan-bg-hover: var(--color-cyan-700);\n --color-cyan-fg: var(--color-cyan-900);\n --color-cyan-surface: var(--color-cyan-400);\n --color-cyan-text: light-dark(var(--color-cyan-800), var(--color-cyan-500));\n --color-cyan-border: var(--color-cyan-600);\n\n --color-sky-bg: var(--color-sky-600);\n --color-sky-bg-hover: var(--color-sky-700);\n --color-sky-fg: var(--color-sky-900);\n --color-sky-surface: var(--color-sky-400);\n --color-sky-text: light-dark(var(--color-sky-800), var(--color-sky-500));\n --color-sky-border: var(--color-sky-600);\n\n --color-blue-bg: var(--color-blue-600);\n --color-blue-bg-hover: var(--color-blue-700);\n --color-blue-fg: var(--color-blue-900);\n --color-blue-surface: var(--color-blue-400);\n --color-blue-text: light-dark(var(--color-blue-800), var(--color-blue-500));\n --color-blue-border: var(--color-blue-600);\n\n --color-indigo-bg: var(--color-indigo-600);\n --color-indigo-bg-hover: var(--color-indigo-700);\n --color-indigo-fg: var(--color-indigo-900);\n --color-indigo-surface: var(--color-indigo-400);\n --color-indigo-text: light-dark(var(--color-indigo-800), var(--color-indigo-500));\n --color-indigo-border: var(--color-indigo-600);\n\n --color-violet-bg: var(--color-violet-600);\n --color-violet-bg-hover: var(--color-violet-700);\n --color-violet-fg: var(--color-violet-900);\n --color-violet-surface: var(--color-violet-400);\n --color-violet-text: light-dark(var(--color-violet-800), var(--color-violet-500));\n --color-violet-border: var(--color-violet-600);\n\n --color-purple-bg: var(--color-purple-600);\n --color-purple-bg-hover: var(--color-purple-700);\n --color-purple-fg: var(--color-purple-900);\n --color-purple-surface: var(--color-purple-400);\n --color-purple-text: light-dark(var(--color-purple-800), var(--color-purple-500));\n --color-purple-border: var(--color-purple-600);\n\n --color-fuchsia-bg: var(--color-fuchsia-600);\n --color-fuchsia-bg-hover: var(--color-fuchsia-700);\n --color-fuchsia-fg: var(--color-fuchsia-900);\n --color-fuchsia-surface: var(--color-fuchsia-400);\n --color-fuchsia-text: light-dark(var(--color-fuchsia-800), var(--color-fuchsia-500));\n --color-fuchsia-border: var(--color-fuchsia-600);\n\n --color-pink-bg: var(--color-pink-600);\n --color-pink-bg-hover: var(--color-pink-700);\n --color-pink-fg: var(--color-pink-900);\n --color-pink-surface: var(--color-pink-400);\n --color-pink-text: light-dark(var(--color-pink-800), var(--color-pink-500));\n --color-pink-border: var(--color-pink-600);\n\n --color-rose-bg: var(--color-rose-600);\n --color-rose-bg-hover: var(--color-rose-700);\n --color-rose-fg: var(--color-rose-900);\n --color-rose-surface: var(--color-rose-400);\n --color-rose-text: light-dark(var(--color-rose-800), var(--color-rose-500));\n --color-rose-border: var(--color-rose-600);\n}\n", "/**\n * Text\n */\n\n@theme {\n /* Font families */\n --font-body: 'Inter Variable', ui-sans-serif, system-ui, sans-serif;\n --font-mono: 'JetBrains Mono Variable', ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;\n\n /* Font size scale (Tailwind v4 defaults \u2014 clean rem/px values) */\n --text-xs: 0.75rem;\n --text-xs--line-height: 1rem;\n --text-sm: 0.875rem;\n --text-sm--line-height: 1.25rem;\n --text-base: 1rem;\n --text-base--line-height: 1.5rem;\n --text-lg: 1.125rem;\n --text-lg--line-height: 1.75rem;\n --text-xl: 1.25rem;\n --text-xl--line-height: 1.75rem;\n --text-2xl: 1.5rem;\n --text-2xl--line-height: 2rem;\n --text-3xl: 1.875rem;\n --text-3xl--line-height: 2.25rem;\n --text-4xl: 2.25rem;\n --text-4xl--line-height: 2.5rem;\n --text-5xl: 3rem;\n --text-5xl--line-height: 1;\n --text-6xl: 3.75rem;\n --text-6xl--line-height: 1;\n --text-7xl: 4.5rem;\n --text-7xl--line-height: 1;\n --text-8xl: 6rem;\n --text-8xl--line-height: 1;\n --text-9xl: 8rem;\n --text-9xl--line-height: 1;\n}\n", "/**\n * Base utilities.\n */\n\n@layer dx-base {\n :root {\n color-scheme: light;\n touch-action: pan-x pan-y;\n font-synthesis: none;\n font-variation-settings:\n 'wght' 400,\n 'slnt' 0;\n scroll-padding-block-start: var(--spacing-14);\n scroll-padding-block-end: var(--spacing-2);\n @apply font-body;\n }\n\n .dark {\n color-scheme: dark;\n }\n\n button {\n @apply cursor-pointer;\n -webkit-tap-highlight-color: transparent;\n }\n}\n\n@layer dx-tokens {\n :root {\n --dx-tag-padding-block: var(--spacing-tag-padding-block);\n }\n\n html,\n html.dark,\n html .dark,\n .sb-show-main {\n background-color: var(--color-base-surface);\n color: var(--color-base-fg);\n --surface-bg: var(--color-base-surface);\n --foreground: var(--color-base-fg);\n --description-text: var(--color-description);\n }\n}\n", "/**\n * Typography\n */\n\n@import '@fontsource-variable/jetbrains-mono/wght-italic.css';\n@import '@fontsource-variable/jetbrains-mono/wght.css';\n@import '@fontsource/poiret-one';\n\n@layer dx-components {\n /* Font weights & `italic` handling */\n .not-italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' 0;\n }\n\n .font-thin,\n .not-italic.font-thin,\n .not-italic .font-thin,\n .font-thin .not-italic {\n font-variation-settings:\n 'wght' 100,\n 'slnt' 0;\n }\n\n .font-extralight,\n .not-italic.font-extralight,\n .not-italic .font-extralight,\n .font-extralight .not-italic {\n font-variation-settings:\n 'wght' 200,\n 'slnt' 0;\n }\n\n .font-light,\n .not-italic.font-light,\n .not-italic .font-light,\n .font-light .not-italic {\n font-variation-settings:\n 'wght' 300,\n 'slnt' 0;\n }\n\n .font-normal,\n .not-italic.font-normal,\n .not-italic .font-normal,\n .font-normal .not-italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' 0;\n }\n\n .font-medium,\n .not-italic.font-medium,\n .not-italic .font-medium,\n .font-medium .not-italic {\n font-variation-settings:\n 'wght' 500,\n 'slnt' 0;\n }\n\n .font-semibold,\n .not-italic.font-semibold,\n .not-italic .font-semibold,\n .font-semibold .not-italic {\n font-variation-settings:\n 'wght' 600,\n 'slnt' 0;\n }\n\n .font-bold,\n .not-italic.font-bold,\n .not-italic .font-bold,\n .font-bold .not-italic {\n font-variation-settings:\n 'wght' 700,\n 'slnt' 0;\n }\n\n .font-extrabold,\n .not-italic.font-extrabold,\n .not-italic .font-extrabold,\n .font-extrabold .not-italic {\n font-variation-settings:\n 'wght' 800,\n 'slnt' 0;\n }\n\n .font-black,\n .not-italic.font-black,\n .not-italic .font-black,\n .font-black .not-italic {\n font-variation-settings:\n 'wght' 900,\n 'slnt' 0;\n }\n\n .italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' -10;\n }\n\n .italic.font-thin,\n .italic .font-thin,\n .font-thin .italic {\n font-variation-settings:\n 'wght' 100,\n 'slnt' -10;\n }\n\n .italic.font-extralight,\n .italic .font-extralight,\n .font-extralight .italic {\n font-variation-settings:\n 'wght' 200,\n 'slnt' -10;\n }\n\n .italic.font-light,\n .italic .font-light,\n .font-light .italic {\n font-variation-settings:\n 'wght' 300,\n 'slnt' -10;\n }\n\n .italic.font-normal,\n .italic .font-normal,\n .font-normal .italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' -10;\n }\n\n .italic.font-medium,\n .italic .font-medium,\n .font-medium .italic {\n font-variation-settings:\n 'wght' 500,\n 'slnt' -10;\n }\n\n .italic.font-semibold,\n .italic .font-semibold,\n .font-semibold .italic {\n font-variation-settings:\n 'wght' 600,\n 'slnt' -10;\n }\n\n .italic.font-bold,\n .italic .font-bold,\n .font-bold .italic {\n font-variation-settings:\n 'wght' 700,\n 'slnt' -10;\n }\n\n .italic.font-extrabold,\n .italic .font-extrabold,\n .font-extrabold .italic {\n font-variation-settings:\n 'wght' 800,\n 'slnt' -10;\n }\n\n .italic.font-black,\n .italic .font-black,\n .font-black .italic {\n font-variation-settings:\n 'wght' 900,\n 'slnt' -10;\n }\n}\n", "/**\n * Button\n */\n\n/* TODO(thure): Focus is handled by .dx-focus-ring, but should ideally be applied as part of this component. */\n@layer dx-components {\n /**\n * NOTE: These are component classes (not utility classes) on a different layer, which themselves apply utility classes using `@apply`.\n */\n\n /* Base styles */\n .dx-button {\n @apply shrink-0 inline-flex select-none items-center justify-center overflow-hidden min-h-[2rem] px-3;\n @apply font-medium transition-colors duration-100 ease-linear bg-input-bg;\n /* The default variant inherits ambient valence colors when rendered inside a valence surface\n * (e.g. Message.Root, which sets --dx-valence-*); otherwise it falls back to the base input styling. */\n &[data-variant='default'] {\n color: var(--dx-valence-text, inherit);\n background: var(--dx-valence-bg, var(--color-input-bg));\n }\n /* Toggle / tab group: the selected item reads as standard text on a surface-relative fill (selected-surface\n * tracks the enclosing --surface-bg, so it stays visible on any surface); unselected items recede to subdued. */\n &[aria-pressed='true'],\n &[aria-checked='true'] {\n @apply text-base-fg bg-selected-surface;\n }\n &[aria-pressed='false'],\n &[aria-checked='false'] {\n @apply text-description;\n }\n\n /* Disabled styles */\n &[disabled]:not([disabled='false']) {\n @apply opacity-40 cursor-not-allowed shadow-none;\n }\n\n /* Variants consistent between enabled & disabled */\n &[data-variant='ghost'] {\n @apply bg-transparent;\n &:hover {\n /* Shares the surface-derived control hover (--color-hover-surface tracks the enclosing\n * --surface-bg) so every variant tints consistently on any background. */\n @apply bg-hover-surface text-inherit;\n }\n &[data-state='open'] {\n @apply bg-input-bg;\n }\n &[aria-pressed='true'],\n &[aria-checked='true'] {\n @apply bg-base-surface text-accent-text;\n }\n }\n &[data-variant='outline'] {\n @apply border border-base-surface bg-transparent;\n &:hover {\n @apply bg-hover-surface;\n }\n }\n\n /* Enabled styles */\n &:not([disabled]),\n &[disabled='false'] {\n &:hover {\n @apply bg-hover-surface;\n }\n\n &[data-variant='default']:hover {\n color: var(--dx-valence-text);\n background-color: var(--dx-valence-bg-hover, var(--color-hover-surface));\n }\n\n /* \n * Inside a valence surface the (otherwise transparent) ghost hover adopts the valence background;\n * elsewhere it falls back to the standard hover surface. \n */\n &[data-variant='ghost']:hover {\n color: var(--dx-valence-text);\n background-color: var(--dx-valence-bg, var(--color-hover-surface));\n }\n\n &[data-variant='primary'] {\n @apply text-accent-fg bg-accent-bg;\n &:hover,\n &[aria-pressed='true'],\n &[aria-checked='true'],\n &[data-state='open'] {\n @apply bg-accent-bg-hover;\n }\n }\n &[data-variant='destructive'] {\n @apply text-accent-fg bg-error-bg;\n &:hover,\n &[aria-pressed='true'],\n &[aria-checked='true'],\n &[data-state='open'] {\n @apply bg-error-bg-hover;\n }\n }\n &[data-variant='valence'] {\n @apply text-inverse-fg;\n background: var(--dx-valence-bg, var(--color-neutral-bg));\n &:hover,\n &[aria-pressed='true'],\n &[aria-checked='true'],\n &[data-state='open'] {\n background-color: var(--dx-valence-bg-hover, var(--color-neutral-bg-hover));\n }\n }\n }\n }\n\n /* Props */\n .dx-button:not([data-props~='grouped']) {\n @apply rounded-xs;\n }\n .dx-button:not([data-props~='wrap']) {\n @apply truncate;\n }\n .dx-button[data-density='lg'] {\n @apply min-h-[2.5rem] px-3;\n }\n .dx-button[data-density='sm'] {\n @apply min-h-[1.75rem] px-2;\n }\n .dx-button[data-density='xs'] {\n @apply min-h-[1.5rem] px-1 text-xs;\n }\n .dx-button[data-density='xs'].aspect-square {\n @apply size-6 px-0;\n }\n @media (pointer: fine) {\n .dx-button[data-density='md'] {\n @apply min-h-[2rem] px-2.5;\n }\n }\n}\n", "@layer dx-components {\n /**\n * Card.Section is `col-span-full grid grid-cols-subgrid` so it owns a full row and\n * exposes the Card.Root's 3 column tracks (gutter / content / gutter) to its children.\n *\n * Direct children that do not carry their own column placement default to the center\n * (content) track via `--dx-col`, so raw content (editors, text, lists) lands in the\n * content column instead of CSS Grid auto-placing it into a gutter. Children with\n * an explicit `col-span-*` utility (Card.Action, Card.Row, Card.Section title) opt out.\n */\n .dx-card__section > *:not([class*='col-span']) {\n grid-column: var(--dx-col, auto);\n }\n}\n", "/**\n * Checkbox\n */\n\n/* TODO(thure): Focus is handled by .dx-focus-ring, but should ideally be applied as part of this component.*/\n@layer dx-components {\n .dx-checkbox--switch,\n .dx-checkbox {\n @apply border border-un-accent;\n &[aria-checked='true'],\n &[aria-checked='mixed'],\n &:checked {\n @apply bg-accent-bg accent-accent-bg border-accent-bg;\n }\n\n &:not([disabled]),\n &[disabled='false'] {\n &:hover {\n @apply bg-un-accent-hover accent-un-accent-hover;\n &[aria-checked='true'],\n &[aria-checked='mixed'],\n &:checked {\n @apply bg-accent-bg-hover accent-accent-bg-hover border-accent-bg-hover;\n }\n }\n }\n }\n\n .dx-checkbox {\n @apply w-4 h-4 overflow-hidden shadow-inner transition-colors bg-un-accent accent-un-accent text-accent-fg shrink-0 inline-grid place-items-center rounded-xs;\n }\n\n /* TODO(ZaymonFC): Focus is handled by .dx-focus-ring, but should ideally be applied as part of this component.*/\n /* NOTE: This isn't compatible with the Radix switch. */\n .dx-checkbox--switch {\n @apply inline-block appearance-none relative shrink-0 h-5 w-8;\n @apply shadow-inner transition-colors bg-un-accent;\n @apply cursor-pointer rounded-full;\n\n &::before {\n @apply w-3 h-3 mx-[0.1875rem] my-[0.1875rem] absolute block bg-white rounded-full border-separator transition-transform duration-100 will-change-transform;\n content: '';\n }\n\n &[aria-checked='true'],\n &[aria-checked='mixed'],\n &:checked {\n background-image: none;\n &::before {\n @apply translate-x-[100%];\n }\n }\n }\n}\n", "/**\n * Dialog\n */\n\n@layer dx-components {\n .dx-dialog__overlay {\n @apply z-40 fixed grid inset-x-0 top-0 h-dvh py-[env(safe-area-inset-top)] place-items-center;\n @apply bg-scrim-surface backdrop-blur-xs;\n\n &[data-state='open'] {\n @apply animate-fade-in;\n }\n\n &[data-state='closed'] {\n @apply animate-fade-out;\n }\n\n &[data-block-align='start'] {\n align-items: start;\n justify-items: center;\n }\n\n &[data-block-align='center'] {\n place-items: center;\n }\n\n &[data-block-align='end'] {\n align-items: end;\n justify-items: center;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n .dx-dialog__overlay {\n @apply p-[calc(env(safe-area-inset-top)+.6rem)];\n }\n }\n\n @media (width >= theme(--breakpoint-md)) {\n .dx-dialog__overlay {\n @apply p-[calc(env(safe-area-inset-top)+1.2rem)];\n }\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n .dx-dialog__overlay {\n @apply p-[calc(env(safe-area-inset-top)+2.4rem)];\n }\n }\n\n .dx-dialog__content {\n @apply flex flex-col w-dvw max-w-full max-h-full overflow-hidden shadow-md;\n\n &[data-state='open'] {\n @apply animate-slide-up-and-fade;\n }\n\n &[data-state='closed'] {\n @apply animate-slide-down-and-fade;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n .dx-dialog__content {\n @apply w-[95vw] border rounded-md border-separator;\n }\n }\n\n @media (width >= theme(--breakpoint-md)) {\n .dx-dialog__content {\n @apply max-w-[24rem];\n }\n }\n\n .dx-dialog__title {\n @apply shrink-0 text-xl font-medium;\n }\n}\n", "/**\n * Focus ring\n */\n\n@layer dx-components {\n .dx-focus-ring,\n .dx-focus-ring-inset {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus-visible {\n @apply ring-focus-line ring-offset-focus-offset z-[1] ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-none {\n &:focus,\n &:focus-visible {\n @apply outline-hidden! ring-0!;\n }\n }\n\n .dx-focus-ring-always,\n .dx-focus-ring-inset-always {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus {\n @apply ring-focus-line ring-offset-focus-offset z-[1] ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-group,\n .dx-focus-ring-group-x,\n .dx-focus-ring-group-y,\n .dx-focus-ring-group-always,\n .dx-focus-ring-group-x-always,\n .dx-focus-ring-group-y-always {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply outline-hidden;\n }\n }\n }\n\n .dx-focus-ring-group:focus-visible .dx-focus-ring-group-indicator,\n .dx-focus-ring-group-x:focus-visible .dx-focus-ring-group-x-indicator,\n .dx-focus-ring-group-y:focus-visible .dx-focus-ring-group-y-indicator {\n @apply ring-focus-line ring-offset-focus-offset ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n\n .dx-focus-ring-group-always:focus .dx-focus-ring-group-indicator,\n .dx-focus-ring-group-x-always:focus .dx-focus-ring-group-x-indicator,\n .dx-focus-ring-group-y-always:focus .dx-focus-ring-group-y-indicator {\n @apply ring-focus-line ring-offset-focus-offset ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n\n .dx-focus-ring-inset {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus-visible {\n @apply ring-inset;\n }\n }\n }\n\n .dx-focus-ring-inset-always {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply ring-inset;\n }\n }\n }\n\n .dx-focus-ring-inset-over-all,\n .dx-focus-ring-main[data-handles-focus='true'] {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n content: '';\n @apply z-20 pointer-events-none;\n }\n\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus-visible {\n &::after {\n @apply ring-focus-line ring-offset-focus-offset ring-inset z-[1] ring-[var(--color-focus-ring-subtle)];\n }\n\n &[data-variant='primary']::after {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-inset-over-all-always,\n .dx-focus-ring-main-always[data-handles-focus='true'] {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n content: '';\n @apply z-20 pointer-events-none;\n }\n\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus {\n &::after {\n @apply ring-focus-line ring-offset-focus-offset ring-inset z-[1] ring-[var(--color-focus-ring-subtle)];\n }\n\n &[data-variant='primary']::after {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-inset-over-all,\n .dx-focus-ring-inset-over-all-always {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n @apply inset-0 absolute;\n }\n }\n }\n\n .dx-focus-ring-main[data-handles-focus='true'] {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n position: fixed;\n inset: 0;\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n &[data-sidebar-left-state='expanded']::after {\n inset-inline-start: var(--dx-nav-sidebar-size);\n }\n\n &[data-sidebar-left-state='collapsed']::after {\n inset-inline-start: var(--dx-l0-size);\n }\n\n &[data-sidebar-right-state='expanded']::after {\n inset-inline-end: var(--dx-complementary-sidebar-size);\n }\n\n &[data-sidebar-right-state='collapsed']::after {\n inset-inline-end: var(--dx-r0-size);\n }\n }\n }\n }\n\n .dx-focus-subdued {\n @apply focus:outline-hidden focus-visible:outline-hidden focus:ring-0 ring-0 focus:border-0 border-0;\n }\n\n .dx-focus-static {\n @apply ring-2 ring-offset-0 ring-primary-300 ring-offset-white dark:ring-primary-400 dark:ring-offset-black;\n }\n}\n", "/**\n * Icons\n */\n\n@layer dx-components {\n .dx-icon-inline {\n @apply inline-block align-[-0.125em];\n }\n}\n", "/**\n * Panel \u2014 applies bg-{hue}-surface / text-{hue}-fg / border-{hue}-border tokens via data-hue attribute or BEM modifier.\n * Example: <div className='dx-panel' data-hue='blue'>...</div>\n * Example: <div className='dx-panel dx-panel--blue'>...</div>\n */\n\n@layer dx-components {\n [data-hue='neutral'] .dx-panel,\n .dx-panel--neutral {\n @apply bg-neutral-surface text-neutral-fg border-neutral-border;\n }\n\n [data-hue='red'] .dx-panel,\n .dx-panel--red {\n @apply bg-red-surface text-red-fg border-red-border;\n }\n\n [data-hue='orange'] .dx-panel,\n .dx-panel--orange {\n @apply bg-orange-surface text-orange-fg border-orange-border;\n }\n\n [data-hue='amber'] .dx-panel,\n .dx-panel--amber {\n @apply bg-amber-surface text-amber-fg border-amber-border;\n }\n\n [data-hue='yellow'] .dx-panel,\n .dx-panel--yellow {\n @apply bg-yellow-surface text-yellow-fg border-yellow-border;\n }\n\n [data-hue='lime'] .dx-panel,\n .dx-panel--lime {\n @apply bg-lime-surface text-lime-fg border-lime-border;\n }\n\n [data-hue='green'] .dx-panel,\n .dx-panel--green {\n @apply bg-green-surface text-green-fg border-green-border;\n }\n\n [data-hue='emerald'] .dx-panel,\n .dx-panel--emerald {\n @apply bg-emerald-surface text-emerald-fg border-emerald-border;\n }\n\n [data-hue='teal'] .dx-panel,\n .dx-panel--teal {\n @apply bg-teal-surface text-teal-fg border-teal-border;\n }\n\n [data-hue='cyan'] .dx-panel,\n .dx-panel--cyan {\n @apply bg-cyan-surface text-cyan-fg border-cyan-border;\n }\n\n [data-hue='sky'] .dx-panel,\n .dx-panel--sky {\n @apply bg-sky-surface text-sky-fg border-sky-border;\n }\n\n [data-hue='blue'] .dx-panel,\n .dx-panel--blue {\n @apply bg-blue-surface text-blue-fg border-blue-border;\n }\n\n [data-hue='indigo'] .dx-panel,\n .dx-panel--indigo {\n @apply bg-indigo-surface text-indigo-fg border-indigo-border;\n }\n\n [data-hue='violet'] .dx-panel,\n .dx-panel--violet {\n @apply bg-violet-surface text-violet-fg border-violet-border;\n }\n\n [data-hue='purple'] .dx-panel,\n .dx-panel--purple {\n @apply bg-purple-surface text-purple-fg border-purple-border;\n }\n\n [data-hue='fuchsia'] .dx-panel,\n .dx-panel--fuchsia {\n @apply bg-fuchsia-surface text-fuchsia-fg border-fuchsia-border;\n }\n\n [data-hue='pink'] .dx-panel,\n .dx-panel--pink {\n @apply bg-pink-surface text-pink-fg border-pink-border;\n }\n\n [data-hue='rose'] .dx-panel,\n .dx-panel--rose {\n @apply bg-rose-surface text-rose-fg border-rose-border;\n }\n\n [data-hue='info'] .dx-panel,\n .dx-panel--info {\n @apply bg-info-surface text-info-fg border-info-border;\n }\n\n [data-hue='success'] .dx-panel,\n .dx-panel--success {\n @apply bg-success-surface text-success-fg border-success-border;\n }\n\n [data-hue='warning'] .dx-panel,\n .dx-panel--warning {\n @apply bg-warning-surface text-warning-fg border-warning-border;\n }\n\n [data-hue='error'] .dx-panel,\n .dx-panel--error {\n @apply bg-error-surface text-error-fg border-error-border;\n }\n}\n", "/**\n * Link component styles.\n */\n\n@layer dx-components {\n .dx-link {\n @apply text-accent-text hover:text-accent-text-hover cursor-pointer;\n }\n .dx-link-hover {\n @apply hover:text-accent-text-hover! cursor-pointer;\n }\n}\n", "/**\n * Scrolling \n * Pseudo-classes are not supported by Tailwind.\n */\n\n@layer dx-components {\n ::-webkit-scrollbar-thumb:hover {\n @apply bg-scrollbar-thumb-hover!;\n }\n ::-webkit-scrollbar-thumb:active {\n @apply bg-scrollbar-thumb-active!;\n }\n\n .dx-scrollbar-thin::-webkit-scrollbar {\n @apply w-[4px];\n }\n .dx-scrollbar-thin::-webkit-scrollbar-thumb {\n @apply bg-transparent;\n transition: background 0.15s;\n }\n .dx-scrollbar-thin:hover::-webkit-scrollbar-thumb {\n @apply bg-scrollbar-thumb;\n }\n}\n", "/**\n * Selected / Current / Highlighted state utilities.\n *\n * See `./selected.md` for the ARIA pairing grammar \u2014 every class below\n * fires off a specific attribute and silently does nothing without it.\n */\n\n@layer dx-components {\n /*\n * Pure visual affordance, no ARIA pair. Combine with dx-selected or dx-current.\n *\n * Picks the hover variant matching the element's underlying state:\n * - neither aria-selected nor aria-current \u2192 hover-surface\n * - aria-selected=\"true\" \u2192 selected-surface-hover\n * - aria-current=\"true\" \u2192 current-surface-hover (wins if both)\n *\n * Higher-specificity rules (attribute selectors) override the plain :hover rule,\n * and `aria-current` is listed last so it beats `aria-selected` at equal specificity.\n */\n .dx-hover {\n @apply cursor-pointer\n hover:bg-hover-surface-subtle! hover:text-hover-fg!\n hover:aria-selected:bg-selected-surface-hover hover:aria-selected:text-selected-fg\n hover:aria-[current=true]:bg-current-surface-hover hover:aria-[current=true]:text-current-fg;\n }\n .dx-hover-row {\n @apply group-hover/row:bg-hover-surface-subtle! group-hover/row:text-hover-fg!\n group-hover/row:group-aria-selected/row:bg-selected-surface-hover!\n group-hover/row:group-aria-selected/row:text-selected-fg!\n group-hover/row:group-aria-[current=true]/row:bg-current-surface-hover!\n group-hover/row:group-aria-[current=true]/row:text-current-fg!;\n }\n\n /*\n * Pairs with `aria-selected`. Use for listbox/option selection (master/detail).\n * `!` is required: these utilities live in the `dx-components` layer, but\n * background utilities like `bg-card-surface` live in Tailwind's\n * `utilities` layer (declared later in the cascade), so without\n * `!important` the card background would override the state colour.\n *\n * NOTE: Declared before `.dx-current` so that when an element has both\n * `aria-selected=\"true\"` and `aria-current=\"true\"`, `dx-current` wins at\n * equal specificity (consistent with how `dx-hover` resolves the same\n * conflict).\n */\n .dx-selected {\n @apply aria-selected:bg-selected-surface! aria-selected:text-selected-fg!\n aria-selected:font-semibold aria-selected:tracking-normal\n transition-[color,font-variation-settings,letter-spacing];\n }\n\n /*\n * Pairs with `aria-current=\"true|page|\u2026\"`. Use for \"you are here\" navigation.\n *\n * The ring uses the subdued focus indicator (neutral) rather than the\n * accent blue \u2014 `dx-current` marks position, not focus, so a saturated\n * ring would compete with the actual keyboard focus ring.\n */\n .dx-current {\n @apply dx-ring-pseudo\n aria-[current=true]:bg-current-surface! aria-[current=true]:text-current-fg!\n aria-[current=true]:after:ring-focus-ring-subtle!;\n }\n .dx-current-row {\n @apply group-aria-[current=true]/row:bg-current-surface! group-aria-[current=true]/row:text-current-fg!;\n }\n\n /*\n * Pairs with Radix-managed `data-highlighted`. Don't set the attribute manually.\n */\n .dx-highlighted {\n @apply data-[highlighted]:bg-current-surface\n data-[highlighted]:text-current-fg\n hover:data-[highlighted]:bg-current-surface-hover;\n }\n}\n", "/**\n * Surfaces\n *\n * A surface zone paints a background AND publishes its colour as `--surface-bg`, so descendant\n * controls can derive a visible hover/current highlight from the actual surface (see the\n * derivation block below) and surface-matching elements (avatars, gradients) can read it directly.\n *\n * Always enter a surface via one of these `dx-*-surface` classes. A bare `bg-*-surface` utility\n * paints the colour but does NOT publish `--surface-bg`, so control hover collapses onto the\n * base-surface fallback and can become invisible when the surface shares that elevation.\n */\n\n@layer dx-components {\n .dx-base-surface {\n @apply bg-base-surface text-base-fg;\n --surface-bg: var(--color-base-surface);\n }\n\n .dx-deck-surface {\n @apply bg-deck-surface text-base-fg;\n --surface-bg: var(--color-deck-surface);\n }\n\n .dx-sidebar-surface {\n @apply bg-sidebar-surface text-base-fg;\n --surface-bg: var(--color-sidebar-surface);\n }\n\n .dx-header-surface {\n @apply bg-header-surface text-base-fg;\n --surface-bg: var(--color-header-surface);\n }\n\n .dx-card-surface {\n @apply bg-card-surface text-base-fg;\n --surface-bg: var(--color-card-surface);\n }\n\n .dx-group-surface {\n @apply bg-group-surface text-base-fg;\n --surface-bg: var(--color-group-surface);\n }\n\n .dx-input-surface {\n @apply bg-input-surface text-base-fg;\n --surface-bg: var(--color-input-surface);\n }\n\n .dx-toolbar-surface {\n @apply bg-toolbar-surface text-base-fg;\n --surface-bg: var(--color-toolbar-surface);\n }\n\n .dx-modal-surface {\n @apply bg-modal-surface text-base-fg backdrop-blur-md;\n --surface-bg: var(--color-modal-surface);\n }\n\n .dx-popover-surface {\n @apply bg-popover-surface text-base-fg backdrop-blur-md;\n --surface-bg: var(--color-popover-surface);\n }\n\n .dx-attention-surface {\n @apply bg-attention-surface text-base-fg;\n --surface-bg: var(--color-attention-surface);\n }\n}\n\n@layer dx-tokens {\n /*\n * Re-derive the state colours (hover, current, selected) off the host surface for every context\n * that publishes its own --surface-bg. Custom-property substitution runs once per scope, so the\n * formula must be repeated here (it cannot simply inherit from semantic.css, which resolved it\n * against the root surface). Listing all surface zones in one block keeps the offsets identical\n * across surfaces \u2014 there is no per-surface divergence to tune.\n *\n * Magnitudes mirror semantic.css; selected-* track current-* via the aliases declared there.\n */\n .dx-base-surface,\n .dx-deck-surface,\n .dx-sidebar-surface,\n .dx-header-surface,\n .dx-card-surface,\n .dx-group-surface,\n .dx-input-surface,\n .dx-toolbar-surface,\n .dx-modal-surface,\n .dx-popover-surface,\n .dx-attention-surface,\n .dx-main-sidebar {\n --color-hover-surface: light-dark(\n oklch(from var(--surface-bg) calc(l - 0.08) c h),\n oklch(from var(--surface-bg) calc(l + 0.08) c h)\n );\n --color-hover-surface-subtle: light-dark(\n oklch(from var(--surface-bg) calc(l - 0.02) c h),\n oklch(from var(--surface-bg) calc(l + 0.02) c h)\n );\n --color-current-surface: light-dark(\n oklch(from var(--surface-bg) calc(l - 0.1) c h),\n oklch(from var(--surface-bg) calc(l + 0.1) c h)\n );\n --color-current-surface-hover: light-dark(\n oklch(from var(--surface-bg) calc(l - 0.12) c h),\n oklch(from var(--surface-bg) calc(l + 0.12) c h)\n );\n }\n}\n", "/**\n * Tag\n */\n\n@layer dx-components {\n .dx-tag {\n @apply inline-block text-xs font-semibold m-0.5 px-1 rounded-sm cursor-default truncate;\n padding-block: var(--spacing-tag-padding-block);\n user-select: none;\n }\n\n .dx-tag--anchor {\n /* NOTE: Margin offsets padding so that border is flush with text. This should only apply to anchor tags inside of Codemirror. */\n @apply inline-block cursor-pointer px-[4px] py-0.5;\n /** TODO(burdon): Configure secondary color. */\n @apply bg-input-surface ring-inset ring ring-neutral-border rounded-sm;\n &:hover {\n @apply bg-hover-surface;\n }\n }\n\n .dx-tag[data-hue='neutral'],\n .dx-tag--neutral {\n @apply bg-neutral-surface text-neutral-fg;\n }\n\n .dx-tag[data-hue='red'],\n .dx-tag--red {\n @apply bg-red-surface text-red-fg;\n }\n\n .dx-tag[data-hue='orange'],\n .dx-tag--orange {\n @apply bg-orange-surface text-orange-fg;\n }\n\n .dx-tag[data-hue='amber'],\n .dx-tag--amber {\n @apply bg-amber-surface text-amber-fg;\n }\n\n .dx-tag[data-hue='yellow'],\n .dx-tag--yellow {\n @apply bg-yellow-surface text-yellow-fg;\n }\n\n .dx-tag[data-hue='lime'],\n .dx-tag--lime {\n @apply bg-lime-surface text-lime-fg;\n }\n\n .dx-tag[data-hue='green'],\n .dx-tag--green {\n @apply bg-green-surface text-green-fg;\n }\n\n .dx-tag[data-hue='emerald'],\n .dx-tag--emerald {\n @apply bg-emerald-surface text-emerald-fg;\n }\n\n .dx-tag[data-hue='teal'],\n .dx-tag--teal {\n @apply bg-teal-surface text-teal-fg;\n }\n\n .dx-tag[data-hue='cyan'],\n .dx-tag--cyan {\n @apply bg-cyan-surface text-cyan-fg;\n }\n\n .dx-tag[data-hue='sky'],\n .dx-tag--sky {\n @apply bg-sky-surface text-sky-fg;\n }\n\n .dx-tag[data-hue='blue'],\n .dx-tag--blue {\n @apply bg-blue-surface text-blue-fg;\n }\n\n .dx-tag[data-hue='indigo'],\n .dx-tag--indigo {\n @apply bg-indigo-surface text-indigo-fg;\n }\n\n .dx-tag[data-hue='violet'],\n .dx-tag--violet {\n @apply bg-violet-surface text-violet-fg;\n }\n\n .dx-tag[data-hue='purple'],\n .dx-tag--purple {\n @apply bg-purple-surface text-purple-fg;\n }\n\n .dx-tag[data-hue='fuchsia'],\n .dx-tag--fuchsia {\n @apply bg-fuchsia-surface text-fuchsia-fg;\n }\n\n .dx-tag[data-hue='pink'],\n .dx-tag--pink {\n @apply bg-pink-surface text-pink-fg;\n }\n\n .dx-tag[data-hue='rose'],\n .dx-tag--rose {\n @apply bg-rose-surface text-rose-fg;\n }\n\n .dx-tag[data-hue='info'],\n .dx-tag--info {\n @apply bg-cyan-surface text-cyan-fg;\n }\n\n .dx-tag[data-hue='success'],\n .dx-tag--success {\n @apply bg-emerald-surface text-emerald-fg;\n }\n\n .dx-tag[data-hue='warning'],\n .dx-tag--warning {\n @apply bg-amber-surface text-amber-fg;\n }\n\n .dx-tag[data-hue='error'],\n .dx-tag--error {\n @apply bg-rose-surface text-rose-fg;\n }\n}\n", "/**\n * Text\n * Example: <span className='dx-text' data-hue={getHashHue(object.id)}>\n */\n\n@layer dx-components {\n /*\n * System\n */\n\n .dx-text[data-hue='info'],\n .dx-text--info {\n @apply text-cyan-text;\n }\n\n .dx-text[data-hue='success'],\n .dx-text--success {\n @apply text-emerald-text;\n }\n\n .dx-text[data-hue='warning'],\n .dx-text--warning {\n @apply text-amber-text;\n }\n\n .dx-text[data-hue='error'],\n .dx-text--error {\n @apply text-rose-text;\n }\n\n /*\n * Colors\n */\n\n .dx-text[data-hue='neutral'],\n .dx-text--neutral {\n @apply text-neutral-text;\n }\n\n .dx-text[data-hue='red'],\n .dx-text--red {\n @apply text-red-text;\n }\n\n .dx-text[data-hue='orange'],\n .dx-text--orange {\n @apply text-orange-text;\n }\n\n .dx-text[data-hue='amber'],\n .dx-text--amber {\n @apply text-amber-text;\n }\n\n .dx-text[data-hue='yellow'],\n .dx-text--yellow {\n @apply text-yellow-text;\n }\n\n .dx-text[data-hue='lime'],\n .dx-text--lime {\n @apply text-lime-text;\n }\n\n .dx-text[data-hue='green'],\n .dx-text--green {\n @apply text-green-text;\n }\n\n .dx-text[data-hue='emerald'],\n .dx-text--emerald {\n @apply text-emerald-text;\n }\n\n .dx-text[data-hue='teal'],\n .dx-text--teal {\n @apply text-teal-text;\n }\n\n .dx-text[data-hue='cyan'],\n .dx-text--cyan {\n @apply text-cyan-text;\n }\n\n .dx-text[data-hue='sky'],\n .dx-text--sky {\n @apply text-sky-text;\n }\n\n .dx-text[data-hue='blue'],\n .dx-text--blue {\n @apply text-blue-text;\n }\n\n .dx-text[data-hue='indigo'],\n .dx-text--indigo {\n @apply text-indigo-text;\n }\n\n .dx-text[data-hue='violet'],\n .dx-text--violet {\n @apply text-violet-text;\n }\n\n .dx-text[data-hue='purple'],\n .dx-text--purple {\n @apply text-purple-text;\n }\n\n .dx-text[data-hue='fuchsia'],\n .dx-text--fuchsia {\n @apply text-fuchsia-text;\n }\n\n .dx-text[data-hue='pink'],\n .dx-text--pink {\n @apply text-pink-text;\n }\n\n .dx-text[data-hue='rose'],\n .dx-text--rose {\n @apply text-rose-text;\n }\n}\n", "/**\n * Main\n */\n\n@layer dx-components {\n /**\n * Main Web app.\n */\n .dx-main-bounce-layout {\n @apply fixed overflow-auto overscroll-auto;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n transition-property: padding-inline-start, padding-inline-end, scroll-padding-start, scroll-padding-end;\n inset-inline-start: 0;\n inset-inline-end: 0;\n inset-block-start: 0;\n inset-block-end: 0;\n z-index: 0;\n }\n\n /** TODO(burdon): Reconcile with dx-main-bounce-layout */\n .dx-main-content-padding-transitions {\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n transition-property: padding-inline-start, padding-inline-end, scroll-padding-start, scroll-padding-end;\n }\n\n /**\n *\n */\n .dx-main-intrinsic-size {\n inline-size: calc(100dvw - 2 * var(--main-spacing));\n transition-property: inline-size;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n\n @media (width >= theme(--breakpoint-lg)) {\n &[data-sidebar-left-state='closed'][data-sidebar-right-state='closed'] {\n inline-size: calc(100dvw - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='collapsed'][data-sidebar-right-state='closed'] {\n inline-size: calc(100dvw - var(--dx-l0-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='expanded'][data-sidebar-right-state='closed'] {\n inline-size: calc(100dvw - var(--dx-nav-sidebar-size) - 2 * var(--main-spacing));\n }\n\n &[data-sidebar-left-state='closed'][data-sidebar-right-state='collapsed'] {\n inline-size: calc(100dvw - var(--dx-r0-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='collapsed'][data-sidebar-right-state='collapsed'] {\n inline-size: calc(100dvw - var(--dx-l0-size) - var(--dx-r0-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='expanded'][data-sidebar-right-state='collapsed'] {\n inline-size: calc(100dvw - var(--dx-nav-sidebar-size) - var(--dx-r0-size) - 2 * var(--main-spacing));\n }\n\n &[data-sidebar-left-state='closed'][data-sidebar-right-state='expanded'] {\n inline-size: calc(100dvw - var(--dx-complementary-sidebar-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='collapsed'][data-sidebar-right-state='expanded'] {\n inline-size: calc(100dvw - var(--dx-l0-size) - var(--dx-complementary-sidebar-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='expanded'][data-sidebar-right-state='expanded'] {\n inline-size: calc(\n 100dvw - var(--dx-nav-sidebar-size) - var(--dx-complementary-sidebar-size) - 2 * var(--main-spacing)\n );\n }\n }\n }\n}\n\n@layer dx-components {\n .dx-main-sidebar {\n @apply fixed overscroll-contain overflow-x-hidden overflow-y-auto;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n @apply border-primary-separator rounded-md;\n @apply backdrop-blur-md;\n .dark & {\n @apply backdrop-blur-lg;\n }\n background-color: var(--color-sidebar-surface);\n color: var(--color-sidebar-fg);\n --surface-bg: var(--color-sidebar-surface);\n\n /* Current / selected items read one stop brighter than default body text. */\n & :is([aria-current]:not([aria-current='false']), [aria-selected='true']) {\n color: var(--color-sidebar-current-fg);\n }\n\n transition-property: inset-inline-start, inset-inline-end, inline-size;\n inset-block-start: max(0.5rem, env(safe-area-inset-top));\n inset-block-end: max(0.5rem, env(safe-area-inset-bottom));\n inline-size: calc(100dvw - 3rem);\n z-index: 7;\n\n @media (width >= theme(--breakpoint-lg)) {\n @apply top-0 bottom-0 rounded-none border-y-0;\n }\n\n &[data-resizing='false'] {\n @apply duration-200;\n }\n\n &[data-side='is'] {\n @apply -start-[100vw] border-e;\n border-inline-end-width: var(--border-width-landmark-line) !important;\n border-inline-end-style: solid;\n z-index: 8;\n\n &[data-state='expanded'] {\n inset-inline-start: max(0.5rem, env(safe-area-inset-left));\n @media (width >= theme(--breakpoint-lg)) {\n @apply start-0;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n @apply w-(--dx-nav-sidebar-size);\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n border-inline-start-width: 0;\n border-inline-end-width: 0;\n\n &[data-state='collapsed'] {\n @apply w-(--dx-l0-size) start-0;\n }\n &[data-state='expanded'] {\n @apply w-(--dx-nav-sidebar-size);\n }\n }\n }\n\n &[data-side='ie'] {\n @apply -end-[100vw] border-s;\n border-inline-start-width: var(--border-width-landmark-line);\n border-inline-start-style: solid;\n\n &[data-state='expanded'] {\n inset-inline-end: max(0.5rem, env(safe-area-inset-right));\n @media (width >= theme(--breakpoint-lg)) {\n @apply end-0;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n @apply w-(--dx-complementary-sidebar-size);\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n border-inline-end-width: 0;\n\n &[data-state='collapsed'] {\n @apply w-(--dx-r0-size) end-0;\n }\n &[data-state='expanded'] {\n @apply w-(--dx-complementary-sidebar-size);\n }\n }\n }\n }\n\n .dx-main-overlay {\n @apply fixed inset-0 bg-scrim-surface;\n transition-property: opacity;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n @apply opacity-0 hidden;\n z-index: 6;\n\n &[data-state='open'] {\n @apply opacity-100 block;\n\n @media (width >= theme(--breakpoint-lg)) {\n @apply opacity-100 hidden;\n }\n }\n }\n\n /**\n * Main content padding.\n */\n .dx-main-content-padding {\n padding-inline-start: 0;\n scroll-padding-inline-start: 0;\n padding-inline-end: 0;\n scroll-padding-inline-end: 0;\n\n @media (width >= theme(--breakpoint-lg)) {\n &[data-sidebar-left-state='collapsed'] {\n padding-inline-start: var(--dx-l0-size);\n scroll-padding-inline-start: var(--dx-l0-size);\n }\n &[data-sidebar-left-state='expanded'] {\n padding-inline-start: var(--dx-nav-sidebar-size);\n scroll-padding-inline-start: var(--dx-nav-sidebar-size);\n }\n\n &[data-sidebar-right-state='collapsed'] {\n padding-inline-end: var(--dx-r0-size);\n scroll-padding-inline-end: var(--dx-r0-size);\n }\n &[data-sidebar-right-state='expanded'] {\n padding-inline-end: var(--dx-complementary-sidebar-size);\n scroll-padding-inline-end: var(--dx-complementary-sidebar-size);\n }\n }\n }\n}\n", "/**\n * Native app\n */\n\n@layer dx-components {\n /**\n * Native app drag regions.\n * For Tauri apps, the data-tauri-drag-region attribute is applied\n * automatically by plugin-native (Tauri doesn't support -webkit-app-region).\n * The CSS properties below are for Electron/PWA compatibility.\n */\n .dx-app-drag {\n -webkit-user-select: none;\n -webkit-app-region: drag;\n --app-region: drag;\n }\n\n .dx-app-no-drag {\n -webkit-app-region: no-drag;\n --app-region: no-drag;\n }\n}\n", "/**\n * Positioning\n */\n\n@layer dx-components {\n .dx-contain-layout {\n contain: layout;\n }\n\n .dx-sticky-top-0 {\n --sticky-top: 0;\n }\n .dx-sticky-top-from-topbar-bottom {\n --sticky-top: var(--dx-topbar-size);\n }\n .dx-sticky-bottom-from-statusbar-bottom {\n --sticky-bottom: var(--dx-statusbar-size);\n }\n}\n", "/**\n * Sizes\n */\n\n@layer dx-components {\n /**\n * Registers the element as a size query container.\n * Children can use @container queries to apply styles based on the container's dimensions (both width and height).\n * Also enables children to use cqi/cqb units (e.g., max-w-[100cqi]).\n * NOTE: `container-type: size` implies layout/size containment, which breaks CodeMirror's\n * coordinate measurement (causes blank viewport sections during scroll until a click forces\n * a re-measure). For editor content where only inline (width-based) queries are needed,\n * use `.dx-inline-size-container` instead.\n */\n .dx-size-container {\n container-type: size;\n }\n\n /**\n * Inline-only size query container. Provides cqi units for children without the layout\n * containment side-effects of `container-type: size`. Use this in CodeMirror content\n * wrappers where size containment would break viewport measurement.\n */\n .dx-inline-size-container {\n container-type: inline-size;\n }\n\n /**\n * Document width.\n */\n .dx-document {\n @apply mx-auto w-full max-w-document-max-width;\n }\n\n /**\n * Card\n */\n\n .dx-card {\n @apply flex flex-col w-full;\n }\n\n .dx-card-square {\n inline-size: min(\n min(var(--radix-popper-available-width), var(--spacing-card-max-width)),\n min(var(--radix-popper-available-height), 100dvh)\n );\n block-size: min(\n min(var(--radix-popper-available-width), var(--spacing-card-max-width)),\n min(var(--radix-popper-available-height), 100dvh)\n );\n }\n\n .dx-card-default-width {\n @apply w-card-default-width;\n }\n\n .dx-card-min-width {\n @apply min-w-card-min-width;\n }\n\n .dx-card-max-width {\n @apply w-full max-w-card-max-width;\n }\n\n .dx-card-popover {\n @apply inline-card-max-width bg-popover-surface;\n max-width: min(var(--radix-popper-available-width), var(--spacing-card-max-width));\n max-height: min(var(--radix-popper-available-height), var(--spacing-card-max-height));\n }\n}\n\n@layer dx-components {\n /* Block size */\n [data-size='0'],\n [data-block-size='0'] {\n @apply h-0;\n }\n\n [data-size='px'],\n [data-block-size='px'] {\n @apply h-px;\n }\n\n [data-size='0.5'],\n [data-block-size='0.5'] {\n @apply h-0.5;\n }\n\n [data-size='1'],\n [data-block-size='1'] {\n @apply h-1;\n }\n\n [data-size='1.5'],\n [data-block-size='1.5'] {\n @apply h-1.5;\n }\n\n [data-size='2'],\n [data-block-size='2'] {\n @apply h-2;\n }\n\n [data-size='2.5'],\n [data-block-size='2.5'] {\n @apply h-2.5;\n }\n\n [data-size='3'],\n [data-block-size='3'] {\n @apply h-3;\n }\n\n [data-size='3.5'],\n [data-block-size='3.5'] {\n @apply h-3.5;\n }\n\n [data-size='4'],\n [data-block-size='4'] {\n @apply h-4;\n }\n\n [data-size='5'],\n [data-block-size='5'] {\n @apply h-5;\n }\n\n [data-size='6'],\n [data-block-size='6'] {\n @apply h-6;\n }\n\n [data-size='7'],\n [data-block-size='7'] {\n @apply h-7;\n }\n\n [data-size='8'],\n [data-block-size='8'] {\n @apply h-8;\n }\n\n [data-size='9'],\n [data-block-size='9'] {\n @apply h-9;\n }\n\n [data-size='10'],\n [data-block-size='10'] {\n @apply h-10;\n }\n\n [data-size='11'],\n [data-block-size='11'] {\n @apply h-11;\n }\n\n [data-size='12'],\n [data-block-size='12'] {\n @apply h-12;\n }\n\n [data-size='14'],\n [data-block-size='14'] {\n @apply h-14;\n }\n\n [data-size='16'],\n [data-block-size='16'] {\n @apply h-16;\n }\n\n [data-size='20'],\n [data-block-size='20'] {\n @apply h-20;\n }\n\n [data-size='24'],\n [data-block-size='24'] {\n @apply h-24;\n }\n\n [data-size='28'],\n [data-block-size='28'] {\n @apply h-28;\n }\n\n [data-size='32'],\n [data-block-size='32'] {\n @apply h-32;\n }\n\n [data-size='36'],\n [data-block-size='36'] {\n @apply h-36;\n }\n\n [data-size='40'],\n [data-block-size='40'] {\n @apply h-40;\n }\n\n [data-size='44'],\n [data-block-size='44'] {\n @apply h-44;\n }\n\n [data-size='48'],\n [data-block-size='48'] {\n @apply h-48;\n }\n\n [data-size='52'],\n [data-block-size='52'] {\n @apply h-52;\n }\n\n [data-size='56'],\n [data-block-size='56'] {\n @apply h-56;\n }\n\n [data-size='60'],\n [data-block-size='60'] {\n @apply h-60;\n }\n\n [data-size='64'],\n [data-block-size='64'] {\n @apply h-64;\n }\n\n [data-size='72'],\n [data-block-size='72'] {\n @apply h-72;\n }\n\n [data-size='80'],\n [data-block-size='80'] {\n @apply h-80;\n }\n\n [data-size='96'],\n [data-block-size='96'] {\n @apply h-96;\n }\n\n /* Inline size */\n [data-size='0'],\n [data-inline-size='0'] {\n @apply w-0;\n }\n\n [data-size='px'],\n [data-inline-size='px'] {\n @apply w-px;\n }\n\n [data-size='0.5'],\n [data-inline-size='0.5'] {\n @apply w-0.5;\n }\n\n [data-size='1'],\n [data-inline-size='1'] {\n @apply w-1;\n }\n\n [data-size='1.5'],\n [data-inline-size='1.5'] {\n @apply w-1.5;\n }\n\n [data-size='2'],\n [data-inline-size='2'] {\n @apply w-2;\n }\n\n [data-size='2.5'],\n [data-inline-size='2.5'] {\n @apply w-2.5;\n }\n\n [data-size='3'],\n [data-inline-size='3'] {\n @apply w-3;\n }\n\n [data-size='3.5'],\n [data-inline-size='3.5'] {\n @apply w-3.5;\n }\n\n [data-size='4'],\n [data-inline-size='4'] {\n @apply w-4;\n }\n\n [data-size='5'],\n [data-inline-size='5'] {\n @apply w-5;\n }\n\n [data-size='6'],\n [data-inline-size='6'] {\n @apply w-6;\n }\n\n [data-size='7'],\n [data-inline-size='7'] {\n @apply w-7;\n }\n\n [data-size='8'],\n [data-inline-size='8'] {\n @apply w-8;\n }\n\n [data-size='9'],\n [data-inline-size='9'] {\n @apply w-9;\n }\n\n [data-size='10'],\n [data-inline-size='10'] {\n @apply w-10;\n }\n\n [data-size='11'],\n [data-inline-size='11'] {\n @apply w-11;\n }\n\n [data-size='12'],\n [data-inline-size='12'] {\n @apply w-12;\n }\n\n [data-size='14'],\n [data-inline-size='14'] {\n @apply w-14;\n }\n\n [data-size='16'],\n [data-inline-size='16'] {\n @apply w-16;\n }\n\n [data-size='20'],\n [data-inline-size='20'] {\n @apply w-20;\n }\n\n [data-size='24'],\n [data-inline-size='24'] {\n @apply w-24;\n }\n\n [data-size='28'],\n [data-inline-size='28'] {\n @apply w-28;\n }\n\n [data-size='32'],\n [data-inline-size='32'] {\n @apply w-32;\n }\n\n [data-size='36'],\n [data-inline-size='36'] {\n @apply w-36;\n }\n\n [data-size='40'],\n [data-inline-size='40'] {\n @apply w-40;\n }\n\n [data-size='44'],\n [data-inline-size='44'] {\n @apply w-44;\n }\n\n [data-size='48'],\n [data-inline-size='48'] {\n @apply w-48;\n }\n\n [data-size='52'],\n [data-inline-size='52'] {\n @apply w-52;\n }\n\n [data-size='56'],\n [data-inline-size='56'] {\n @apply w-56;\n }\n\n [data-size='60'],\n [data-inline-size='60'] {\n @apply w-60;\n }\n\n [data-size='64'],\n [data-inline-size='64'] {\n @apply w-64;\n }\n\n [data-size='72'],\n [data-inline-size='72'] {\n @apply w-72;\n }\n\n [data-size='80'],\n [data-inline-size='80'] {\n @apply w-80;\n }\n\n [data-size='96'],\n [data-inline-size='96'] {\n @apply w-96;\n }\n}\n", "/**\n * Tailwind utility classes.\n */\n\n/**\n * Layout rules for flex-based scroll containment:\n * `flex flex-col`\n * On a container: makes it a flex column so children stack and can use `flex-1`.\n * `flex-1`\n * On a child: grows to fill the flex parent. Requires the parent to be `flex`.\n * `min-h-0` (alongside `flex-1`):\n * Overrides default flex children: `min-height:auto` (sized to content), which prevents shrinking.\n * Allows element to shrink and trigger overflow/scrolling.\n * Always pair with `flex-1` when scroll is needed.\n * `h-full`:\n * Fills 100% of the parent's *computed* height.\n * Use when the parent has a definite height but is not a flex container (e.g. `overflow:hidden` wrapper).\n * Unlike `flex-1`, does not require the parent to be flex.\n *\n * Pattern for a scrollable region inside a flex ancestor:\n * ancestor \u2192 `flex flex-col` (or `flex flex-row`)\n * scroll root \u2192 `flex-1 min-h-0` (fills ancestor, can shrink)\n * scroll viewport \u2192 `h-full overflow-y-scroll` (fills root, scrolls)\n */\n\n/**\n * Fills the available space.\n */\n@utility dx-expander {\n @apply flex-1 min-h-0 min-w-0 h-full w-full;\n}\n\n/**\n * Container that fills the available space (extends dx-expander with overflow clipping).\n */\n@utility dx-container {\n @apply dx-expander overflow-hidden;\n}\n\n/**\n * Column that fills the available space (extends dx-expander with overflow clipping).\n */\n@utility dx-column {\n @apply flex-1 min-w-0 w-full;\n}\n\n/**\n * Fullscreen\n */\n@utility dx-fullscreen {\n @apply absolute inset-0;\n}\n\n/**\n * Visual warning to indicate incorrect usage of `slottable`.\n */\n@utility dx-slot-warning {\n @apply border border-rose-500 border-dashed;\n}\n\n/**\n * Pseudo-element overlay for ring indicators (focus, current, etc.).\n *\n * A standard CSS `box-shadow` ring is painted behind child content, so children with\n * opaque backgrounds (e.g., cards, avatars) obscure it. By painting the ring on an\n * absolutely-positioned `::after` pseudo-element that sits above the element's children\n * in stacking order, the ring is always visible regardless of child backgrounds.\n *\n * The pseudo-element inherits `border-radius` from its parent and is `pointer-events-none`\n * so it doesn't interfere with interactions. The ring starts transparent; consumers\n * activate it conditionally (e.g., `focus:after:ring-*`, `aria-[current=true]:after:ring-*`).\n */\n@utility dx-ring-pseudo {\n @apply relative after:content-[\"\"] after:absolute after:inset-0 after:rounded-[inherit]\n after:pointer-events-none after:ring after:ring-inset after:ring-transparent;\n}\n\n/**\n * Shimmer text \u2014 animates opacity left \u2192 right across the contained text.\n * See @keyframes shimmer-text in theme/animation.css for the keyframe definition.\n * Geometry: mask-size 200% 100% with mask-repeat: repeat-x means each tile is\n * 2\u00D7 the element width; the keyframe slides mask-position-x by 200% (one full\n * tile period), giving a seamless loop. The 5-stop gradient (0.4 \u2192 1.0 \u2192 0.4)\n * produces a single bright pulse per cycle that traverses left \u2192 right during\n * the first half, with a brief calm interval during the second half.\n */\n@utility shimmer-text {\n mask-image: linear-gradient(\n 90deg,\n rgba(0, 0, 0, 0.4) 0%,\n rgba(0, 0, 0, 0.4) 30%,\n rgba(0, 0, 0, 1) 50%,\n rgba(0, 0, 0, 0.4) 70%,\n rgba(0, 0, 0, 0.4) 100%\n );\n -webkit-mask-image: linear-gradient(\n 90deg,\n rgba(0, 0, 0, 0.4) 0%,\n rgba(0, 0, 0, 0.4) 30%,\n rgba(0, 0, 0, 1) 50%,\n rgba(0, 0, 0, 0.4) 70%,\n rgba(0, 0, 0, 0.4) 100%\n );\n mask-size: 200% 100%;\n -webkit-mask-size: 200% 100%;\n mask-repeat: repeat-x;\n -webkit-mask-repeat: repeat-x;\n animation: shimmer-text 2s linear infinite;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .shimmer-text {\n animation: none;\n mask-image: none;\n -webkit-mask-image: none;\n opacity: 0.6;\n }\n}\n", "/**\n * CodeMirror\n * Uses @theme (not @layer) so Tailwind generates text-cm-* / bg-cm-* utility classes\n * consumed by ui-editor. Compare: tldraw.css uses @layer to map tokens onto tldraw's\n * own variables without generating utilities.\n * TODO(burdon): This could move into the ui-editor package (similar to graph.css).\n */\n\n/** TODO(burdon): Move to ui-editor */\n@theme {\n --color-cm-codeblock: oklch(from var(--color-neutral-500) l c h / 0.1);\n --color-cm-active-line: light-dark(\n oklch(from var(--color-neutral-200) l c h / 0.5),\n oklch(from var(--color-neutral-800) l c h / 0.5)\n );\n --color-cm-separator: var(--color-blue-500);\n --color-cm-cursor: light-dark(var(--color-neutral-900), var(--color-neutral-100));\n --color-cm-selection: light-dark(\n oklch(from var(--color-blue-400) l c h / 0.5),\n oklch(from var(--color-blue-600) l c h / 0.5)\n );\n --color-cm-focused-selection: light-dark(var(--color-blue-400), oklch(0.445 0.057 256)); /* #3f5573 */\n --color-cm-highlight: light-dark(var(--color-neutral-950), var(--color-neutral-50));\n --color-cm-highlight-surface: light-dark(var(--color-sky-200), var(--color-cyan-800));\n --color-cm-comment-text: light-dark(var(--color-neutral-950), var(--color-neutral-950));\n --color-cm-comment-surface: light-dark(var(--color-teal-200), var(--color-teal-200));\n --color-cm-comment-current-surface: light-dark(var(--color-orange-200), var(--color-orange-200));\n\n /* Markdown syntax highlighting */\n --color-cm-code: light-dark(var(--color-stone-600), var(--color-stone-400));\n --color-cm-code-inline: light-dark(var(--color-green-500), var(--color-green-500));\n --color-cm-code-mark: var(--color-blue-500);\n --color-cm-heading: light-dark(var(--color-blue-700), var(--color-blue-300));\n --color-cm-heading-number: light-dark(var(--color-blue-600), var(--color-blue-400));\n}\n", "/**\n * Tldraw\n */\n\n/** TODO(burdon): Move to tldraw */\n.tl-background {\n --color-background: var(--color-base-surface);\n}\n.tl-container.tl-theme__light,\n.tl-container.tl-theme__dark {\n --color-selected: var(--color-accent-bg);\n --color-panel: var(--color-modal-surface);\n --color-panel-contrast: var(--color-separator);\n}\n", "/**\n * Main theme.\n */\n\n/**\n * Establish CSS cascade layer order before Tailwind sets its own.\n * First mention of a layer name wins its position in the order.\n *\n * NOTE: `utilities` must be last so it overrides all base and component layers.\n * NOTE: This must be in sync with the `transformIndexHtml` function in `packages/ui/ui-theme/src/plugins/plugin.ts`.\n */\n@layer properties, theme, dx-tokens, user-tokens, base, tw-base, dx-base, components, tw-components, dx-components, utilities;\n\n/**\n * `source(none)` disables Tailwind 4's automatic content discovery (which\n * scans the project root, including `publicDir`). With auto-detection on,\n * every write to `public/icons.svg` from `vite-plugin-icons` triggers a\n * Tailwind CSS regeneration, which invalidates `main.css` through its\n * import graph and produces a 3\u20135-ping HMR storm per icon-sprite write\n * during cold-start (icons land in tight bursts as plugin chunks stream\n * in). Explicit `@source` directives below replace the auto-scan with a\n * stable, source-only set.\n */\n@import 'tailwindcss' source(none);\n\n/* @theme extensions */\n@import './css/theme/animation.css';\n@import './css/theme/border.css';\n@import './css/theme/palette.css';\n@import './css/theme/semantic.css';\n@import './css/theme/spacing.css';\n@import './css/theme/styles.css';\n@import './css/theme/text.css';\n\n/* @layer dx-base, dx-tokens */\n@import './css/base/base.css';\n@import './css/base/typography.css';\n\n/* @layer dx-components (components) */\n@import './css/components/button.css';\n@import './css/components/card.css';\n@import './css/components/checkbox.css';\n@import './css/components/dialog.css';\n@import './css/components/focus.css';\n@import './css/components/icon.css';\n@import './css/components/panel.css';\n@import './css/components/link.css';\n@import './css/components/scrollbar.css';\n@import './css/components/state.css';\n@import './css/components/surface.css';\n@import './css/components/tag.css';\n@import './css/components/text.css';\n\n/* @layer dx-components (layout) */\n@import './css/layout/main.css';\n@import './css/layout/native.css';\n@import './css/layout/positioning.css';\n@import './css/layout/size.css';\n\n/* @layer dx-utilities */\n@import './css/utilities.css';\n\n/* Third-party integrations */\n@import './css/integrations/codemirror.css';\n@import './css/integrations/tldraw.css';\n\n/**\n * With `source(none)` on the Tailwind import above, these are the *only*\n * paths Tailwind scans for utility classes. Cover every workspace source\n * directory so lazy-loaded plugin / UI / SDK chunks don't surface new\n * utilities mid-session, and root-level HTML entrypoints (index.html,\n * internal.html, \u2026) are visible too.\n *\n * Paths are relative to this file (`packages/ui/ui-theme/src/main.css`):\n * ../../../ \u2192 `packages/`\n * ../../../../tools/ \u2192 `tools/`\n *\n * Tailwind ignores `node_modules` and common build/output dirs by default,\n * so a broad workspace glob is safe *for scanning*.\n *\n * NOTE: Tailwind's scanner respects `.gitignore` (so `dist/` is never\n * scanned), but it hands Vite a coarse `dir-dependency` glob and Vite\n * re-expands that itself, ignoring only `node_modules`. That re-expansion\n * sweeps `dist/**` `.d.ts` files into the watch set and causes a `main.css`\n * HMR storm on every package rebuild. Build outputs are excluded from the\n * dev watcher in `plugins/ThemePlugin.ts` (`server.watch.ignored`) rather\n * than here, because `@source not` does NOT propagate to the glob Vite\n * re-expands.\n */\n@source '../../../**/*.{ts,tsx,html}';\n@source '../../../../tools/**/*.{ts,tsx,html}';\n\n/**\n * Exclude generated/static data files that have no Tailwind classes but are\n * large enough to dominate scan time. The oxide scanner tokenizes every byte;\n * a single 5MB geo-data file can pin Vite at 100% CPU for tens of seconds on\n * a cold start.\n */\n@source not '../../../ui/react-ui-geo/data/**';\n@source not '../../../ui/solid-ui-geo/data/**';\n@source not '../../../apps/composer-app/src/plugins/welcome/components/Welcome/hero-image.ts';\n\n/**\n * Force-emit CSS variables for the full color palette for all:\n * --color-{hue}-{shade}\n * --color-{hue}-{style}\n */\n@source inline('bg-{neutral,red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose}-{50,100,200,300,400,500,600,700,800,900,950}');\n@source inline('bg-{neutral,red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose}-{bg,bg-hover,fg,surface,text,border}');\n@source inline('bg-{primary,secondary}-{50,100,200,300,400,500,600,700,800,900,950}');\n@source inline('border-{neutral,red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose}-border');\n@source inline('bg-{info,success,warning,error}-{bg,surface,fg,text,border}');\n@source inline('border-{info,success,warning,error}-border');\n\n/**\n * Force-emit tokens consumed by web components / .pcss files outside the\n * Tailwind source-scan graph (e.g. lit-grid's dx-grid.pcss uses var(--color-grid-line)).\n */\n@source inline('bg-grid-{surface,fg,line,highlight,comment,comment-active,selection-surface,selection-fg}');\n/* \n * Sidebar surfaces alias each other (e.g. header-surface -> l0-surface); force-emit so the vars\n * exist in apps that use the alias but not the underlying utility (e.g. devtools). \n */\n@source inline('bg-{l0,r0,l1,r1}-surface');\n\n/**\n * Plugins must come after all imports.\n */\n@plugin '@tailwindcss/forms';\n@plugin 'tailwind-scrollbar';\n@plugin 'tailwindcss-radix';\n\n/**\n * Class-based dark mode.\n * The `.dark` class on an ancestor toggles `dark:` utilities.\n */\n@variant dark (&:where(.dark, .dark *));\n\n/** Mobile */\n@custom-variant pointer-coarse (@media (pointer: coarse));\n/** Web */\n@custom-variant pointer-fine (@media (pointer: fine));\n/** Supports mouse/trackpad (Web) */\n@custom-variant hover-hover (@media (hover: hover));\n/** Active navigation */\n@custom-variant is-current (&[aria-current]:not([aria-current='false']));\n"],
|
|
5
|
-
"mappings": "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",
|
|
3
|
+
"sources": ["../../../src/css/theme/animation.css", "../../../src/css/theme/border.css", "../../../src/css/theme/palette.css", "../../../src/css/theme/roles.css", "../../../src/css/theme/spacing.css", "../../../src/css/theme/styles.css", "../../../src/css/theme/surfaces.css", "../../../src/css/theme/text.css", "../../../src/css/base/base.css", "../../../src/css/base/typography.css", "../../../src/css/components/button.css", "../../../src/css/components/card.css", "../../../src/css/components/checkbox.css", "../../../src/css/components/dialog.css", "../../../src/css/components/focus.css", "../../../src/css/components/icon.css", "../../../src/css/components/input.css", "../../../src/css/components/callout.css", "../../../src/css/components/link.css", "../../../src/css/components/scrollbar.css", "../../../src/css/components/state.css", "../../../src/css/components/surface.css", "../../../src/css/components/tag.css", "../../../src/css/components/text.css", "../../../src/css/layout/main.css", "../../../src/css/layout/native.css", "../../../src/css/layout/positioning.css", "../../../src/css/layout/size.css", "../../../src/css/utilities.css", "../../../src/css/integrations/codemirror.css", "../../../src/css/integrations/tldraw.css", "../../../src/main.css"],
|
|
4
|
+
"sourcesContent": ["/**\n * Animation\n */\n\n@theme {\n /* Transition timing function */\n --ease-in-out-symmetric: cubic-bezier(0.5, 0, 0.5, 1);\n\n /** \n * Fade\n */\n @keyframes fade-in {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n }\n @keyframes fade-out {\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n }\n --animate-fade-in: fade-in 200ms ease-out;\n --animate-fade-out: fade-out 400ms ease-out;\n\n /** \n * Popper/dialog slide \n */\n @keyframes slide-down-and-fade {\n from {\n opacity: 1;\n transform: translateY(0);\n }\n to {\n opacity: 0;\n transform: translateY(16px);\n }\n }\n @keyframes slide-left-and-fade {\n from {\n opacity: 0;\n transform: translateX(-16px);\n }\n to {\n opacity: 1;\n transform: translateX(0);\n }\n }\n @keyframes slide-up-and-fade {\n from {\n opacity: 0;\n transform: translateY(16px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n @keyframes slide-right-and-fade {\n from {\n opacity: 0;\n transform: translateX(16px);\n }\n to {\n opacity: 1;\n transform: translateX(0);\n }\n }\n --animate-slide-down-and-fade: slide-down-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-slide-left-and-fade: slide-left-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-slide-up-and-fade: slide-up-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-slide-right-and-fade: slide-right-and-fade 400ms cubic-bezier(0.16, 1, 0.3, 1);\n\n /** \n * Toast \n */\n @keyframes toast-hide {\n 0% {\n opacity: 1;\n }\n 100% {\n opacity: 0;\n }\n }\n @keyframes toast-slide-in-right {\n 0% {\n transform: translateX(calc(100% + 1rem));\n }\n 100% {\n transform: translateX(0);\n }\n }\n @keyframes toast-slide-in-bottom {\n 0% {\n transform: translateY(calc(100% + 1rem));\n }\n 100% {\n transform: translateY(0);\n }\n }\n @keyframes toast-swipe-out {\n 0% {\n transform: translateX(var(--radix-toast-swipe-end-x));\n }\n 100% {\n transform: translateX(calc(100% + 1rem));\n }\n }\n --animate-toast-hide: toast-hide 100ms ease-in forwards;\n --animate-toast-slide-in-right: toast-slide-in-right 150ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-toast-slide-in-bottom: toast-slide-in-bottom 150ms cubic-bezier(0.16, 1, 0.3, 1);\n --animate-toast-swipe-out: toast-swipe-out 100ms ease-out forwards;\n\n /** \n * Accordion \n */\n @keyframes slide-down {\n from {\n height: 0px;\n }\n to {\n height: var(--radix-accordion-content-height);\n }\n }\n @keyframes slide-up {\n from {\n height: var(--radix-accordion-content-height);\n }\n to {\n height: 0px;\n }\n }\n --animate-slide-down: slide-down 300ms cubic-bezier(0.87, 0, 0.13, 1);\n --animate-slide-up: slide-up 300ms cubic-bezier(0.87, 0, 0.13, 1);\n\n /** \n * Shimmer \n */\n @keyframes shimmer-loop {\n 100% {\n transform: translateX(100%);\n }\n }\n --animate-shimmer: shimmer-loop 2s infinite;\n\n /** \n * Halo pulse \n */\n @keyframes halo-pulse {\n 0% {\n opacity: 0.3;\n }\n 5% {\n opacity: 1;\n }\n 100% {\n opacity: 0.3;\n }\n }\n --animate-halo-pulse: halo-pulse 2s ease-out infinite;\n\n /** \n * Progress \n */\n @keyframes progress-indeterminate {\n 0% {\n left: 0;\n width: 0%;\n }\n 25% {\n left: 25%;\n width: 50%;\n }\n 75% {\n left: 50%;\n width: 100%;\n }\n 100% {\n left: 100%;\n width: 0%;\n }\n }\n --animate-progress-indeterminate: progress-indeterminate 2s ease-out infinite;\n\n /** \n * Border trail \n */\n @keyframes trail {\n to {\n offset-distance: 100%;\n }\n }\n @keyframes trail-offset {\n 0% {\n offset-distance: 50%;\n }\n 100% {\n offset-distance: 150%;\n }\n }\n --animate-trail: trail 6s linear infinite;\n --animate-trail-offset: trail-offset 6s linear infinite;\n\n /** \n * Spin \n */\n --animate-spin-slow: spin 3s linear infinite;\n\n /** \n * Blink \n */\n @keyframes blink {\n 0%,\n 50%,\n 100% {\n opacity: 1;\n }\n 25%,\n 75% {\n opacity: 0;\n }\n }\n --animate-blink: blink 1s step-start infinite;\n}\n\n/**\n * Shimmer (text)\n * Sweeps a brighter band across text via mask alpha \u2014 preserves the consumer's color.\n * Translates exactly one tile period (2\u00D7 element width) per cycle so the loop seam is invisible.\n */\n@keyframes shimmer-text {\n from {\n mask-position-x: 100%;\n -webkit-mask-position-x: 100%;\n }\n to {\n mask-position-x: -100%;\n -webkit-mask-position-x: -100%;\n }\n}\n\n/**\n * Honor user reduced-motion preference for decorative animations.\n * Functional transitions (fade/slide/toast/blink) are intentionally excluded \u2014\n * suppressing them would hide UI state changes.\n */\n@media (prefers-reduced-motion: reduce) {\n .animate-halo-pulse,\n .animate-spin-slow,\n .animate-trail,\n .animate-trail-offset,\n .animate-shimmer {\n animation: none;\n }\n}\n", "/**\n * Border\n */\n\n@theme {\n /* Custom spacing/sizing values - for ring, ring-offset, border-width, etc. */\n --ring-offset-width-focus-offset: var(--dx-focus-offset);\n --ring-width-focus-line: var(--dx-focus-line);\n --ring-width-hair-line: var(--dx-hair-line);\n --ring-width-thick-line: var(--dx-thick-line);\n --ring-width-no-line: var(--dx-no-line);\n --border-width-landmark-line: var(--dx-landmark-line);\n\n /* Border radius scale */\n --radius-none: 0;\n --radius-sm: 0.25rem;\n --radius: 0.5rem;\n --radius-md: 0.75rem;\n --radius-lg: 1rem;\n\n /* Box shadow */\n --shadow-slider: 0 0 0 5px rgba(0, 0, 0, 0.3);\n}\n", "/**\n * Color theme tokens.\n * https://tailwindcss.com/docs/colors\n * \n * NOTE: The following are equivalent:\n * text-red-500\n * text-(--color-red-500)\n * text-[var(--color-red-500)]\n */\n\n@theme {\n /**\n * Neutral ramp.\n *\n * Warm-tinted gray (not pure neutral): every level shares --dx-neutral-chroma / --dx-neutral-hue,\n * so those two knobs shift the warmth across the whole ramp (and everything derived from it). The\n * light end is re-spread vs Tailwind's defaults \u2014 which squeeze 50\u2013300 into ~0.11 L while the dark\n * end spans ~0.23 \u2014 so light steps (~0.025 L) roughly match dark steps (~0.030 L).\n *\n * Two kinds of level, listed below in ascending (darkening) order:\n * - Anchors \u2014 the Tailwind hundreds (50\u2026950), defined by explicit lightness.\n * - In-between steps \u2014 `color-mix` interpolations of the surrounding anchors.\n */\n --dx-neutral-hue: 190;\n --dx-neutral-chroma: 0.001;\n\n --color-neutral-50: oklch(0.985 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-75: color-mix(in oklch, var(--color-neutral-50) 50%, var(--color-neutral-100) 50%);\n --color-neutral-100: oklch(0.935 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-125: color-mix(in oklch, var(--color-neutral-100) 75%, var(--color-neutral-200) 25%);\n --color-neutral-150: color-mix(in oklch, var(--color-neutral-100) 50%, var(--color-neutral-200) 50%);\n --color-neutral-175: color-mix(in oklch, var(--color-neutral-150) 50%, var(--color-neutral-200) 50%);\n --color-neutral-200: oklch(0.875 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-250: color-mix(in oklch, var(--color-neutral-200) 50%, var(--color-neutral-300) 50%);\n --color-neutral-300: oklch(0.8 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-400: oklch(0.708 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-500: oklch(0.556 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-600: oklch(0.439 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-700: oklch(0.371 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-750: color-mix(in oklch, var(--color-neutral-700) 50%, var(--color-neutral-800) 50%);\n --color-neutral-775: color-mix(in oklch, var(--color-neutral-750) 50%, var(--color-neutral-800) 50%);\n --color-neutral-800: oklch(0.269 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-825: color-mix(in oklch, var(--color-neutral-800) 75%, var(--color-neutral-900) 25%);\n --color-neutral-850: color-mix(in oklch, var(--color-neutral-800) 50%, var(--color-neutral-900) 50%);\n --color-neutral-875: color-mix(in oklch, var(--color-neutral-800) 25%, var(--color-neutral-900) 75%);\n --color-neutral-900: oklch(0.205 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n --color-neutral-925: color-mix(in oklch, var(--color-neutral-900) 50%, var(--color-neutral-950) 50%);\n --color-neutral-950: oklch(0.145 var(--dx-neutral-chroma) var(--dx-neutral-hue));\n\n /*\n * Primary\n */\n --color-primary-50: var(--color-blue-50);\n --color-primary-100: var(--color-blue-100);\n --color-primary-200: var(--color-blue-200);\n --color-primary-300: var(--color-blue-300);\n --color-primary-400: var(--color-blue-400);\n --color-primary-500: var(--color-blue-500);\n --color-primary-600: var(--color-blue-600);\n --color-primary-700: var(--color-blue-700);\n --color-primary-800: var(--color-blue-800);\n --color-primary-900: var(--color-blue-900);\n --color-primary-950: var(--color-blue-950);\n\n /* Composer logo colors */\n --color-composer-100: rgb(5 40 61);\n --color-composer-200: rgb(10 75 105);\n --color-composer-300: rgb(1 122 183);\n --color-composer-400: rgb(6 197 253);\n}\n", "/**\n * Roles \u2014 named tokens that are not surfaces: text emphasis, control fills, accent, separators,\n * scrollbar, and the off-ladder grid \"paper\" palette.\n *\n * The elevation ladder and everything derived from a host surface lives in `surfaces.css`.\n *\n * Naming convention: --color-{name}-{part}[-{state}] \u2014 see DESIGN_SYSTEM.md.\n */\n\n@theme {\n /*\n * Text emphasis \u2014 foregrounds at decreasing emphasis, anchored on --color-base-fg (strongest):\n * base-fg \u2192 description \u2192 subdued (weakest). `placeholder` is host-derived \u2014 see surfaces.css.\n * Tuned for legibility against the surfaces rather than mapped to the elevation ladder (which\n * governs backgrounds, not text contrast), so these stay explicit neutrals.\n */\n --color-description: light-dark(var(--color-neutral-600), var(--color-neutral-400));\n --color-subdued: light-dark(var(--color-neutral-500), var(--color-neutral-600));\n\n /*\n * Controls \u2014 the input/control fill is a deliberate off-ladder token (cf. the grid \"paper\"\n * surfaces). It backs text inputs and the default/ghost button (bg-input-bg) and must contrast\n * whatever surface it sits on: a subtle inset well in light mode, a raised fill in dark mode that\n * reads lighter than the topmost surface. Do not map it to an elevation level.\n */\n /*\n * Light is not a ramp stop: neutral-250 sat 0.14 below the near-white canvas, so a default button\n * read as a dark slab next to an input fill 0.025 below it. Dark keeps neutral-700.\n */\n --color-input-bg: light-dark(oklch(0.87 0.001 190), var(--color-neutral-700));\n\n /*\n * A filled control's hover has to move ITS OWN fill. `--color-hover-surface` is derived from the\n * host surface \u2014 correct for ghost/outline, which are transparent and let the host show through,\n * but in light it sits above the fill, so a filled button lightened on hover into\n * `--color-selected-surface`. Light-mode only: dark still uses the host tint (see button.css).\n */\n --color-input-bg-hover: oklch(\n from var(--color-input-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.08) c h\n );\n --color-input-fg: var(--color-base-fg);\n\n /* Focus indicators are a global affordance, not a per-surface property. */\n --color-focus-ring: light-dark(var(--color-blue-400), var(--color-blue-600));\n --color-focus-ring-subtle: light-dark(var(--color-neutral-300), var(--color-neutral-600));\n\n /* Accent (primary) */\n --color-accent-bg: light-dark(var(--color-blue-600), var(--color-blue-700));\n --color-accent-bg-hover: light-dark(var(--color-blue-700), var(--color-blue-800));\n --color-accent-fg: var(--color-blue-100);\n --color-accent-text: light-dark(var(--color-blue-600), var(--color-blue-400));\n --color-accent-text-hover: light-dark(var(--color-blue-500), var(--color-blue-500));\n\n /* Unaccented */\n --color-un-accent: var(--color-neutral-400);\n --color-un-accent-hover: var(--color-neutral-500);\n\n /* Separator */\n /* Surface-relative separators are host-derived \u2014 see the Aspects block in surfaces.css. */\n --color-active-separator: light-dark(var(--color-blue-500), var(--color-blue-500));\n\n /* Scrollbar */\n /* The groove. The thumb is host-derived \u2014 see the Aspects block in surfaces.css. */\n --color-scrollbar-track: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n\n /*\n * Sheet / Grid \u2014 intentionally OFF the elevation ladder.\n * NOTE: Update main.css when changing grid tokens (and restart dev server).\n *\n * These are \"paper\" surfaces for the data grid: maximum-contrast canvases (near-white in light,\n * near-black in dark) plus saturated selection/comment accents. The elevation ladder is\n * monotonic (light: lighter = higher), so it cannot express a surface that is simultaneously the\n * lightest in light mode and the darkest in dark mode. Keep these as explicit neutrals/accents;\n * do not fold them into --dx-surface-*.\n */\n --color-axis-surface: light-dark(var(--color-neutral-100), var(--color-neutral-900));\n --color-axis-text: light-dark(var(--color-neutral-700), var(--color-neutral-300));\n --color-axis-selected-surface: light-dark(var(--color-neutral-100), var(--color-neutral-900));\n --color-axis-selected-text: light-dark(var(--color-neutral-100), var(--color-neutral-900));\n\n --color-grid-surface: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n --color-grid-fg: light-dark(var(--color-neutral-950), var(--color-neutral-50));\n --color-grid-line: light-dark(var(--color-neutral-200), var(--color-neutral-800));\n --color-grid-highlight: oklch(from var(--color-emerald-500) l c h / 0.5);\n --color-grid-selection-surface: light-dark(var(--color-blue-500), var(--color-blue-400));\n --color-grid-selection-fg: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n --color-grid-comment: light-dark(var(--color-green-400), var(--color-green-600));\n --color-grid-comment-active: light-dark(\n oklch(from var(--color-green-400) l c h / 0.5),\n oklch(from var(--color-green-600) l c h / 0.5)\n );\n}\n", "/**\n * Tokens\n */\n\n/**\n * Utility classes \n */\n@theme {\n /** Minimum inset from the viewport edge for floating surfaces. */\n --spacing-screen-border: 2rem;\n\n --spacing-popover-default-width: 20rem;\n --spacing-popover-min-width: 16rem;\n\n --spacing-document-max-width: 50rem;\n --spacing-document-width: calc(50rem - env(safe-area-inset-left) - env(safe-area-inset-right));\n\n --spacing-card-default-width: 20rem;\n --spacing-card-min-width: 18rem;\n --spacing-card-max-width: 22rem;\n --spacing-card-min-height: 18rem;\n --spacing-card-max-height: 30rem;\n\n --spacing-tag-padding-block: 0.125rem;\n\n /** The one spacing ramp: 4 / 8 / 12 / 16 / 24 / 32. Every other spacing family aliases onto it. */\n --spacing-trim-xs: 0.25rem;\n --spacing-trim-sm: 0.5rem;\n --spacing-trim-md: 0.75rem;\n --spacing-trim-lg: 1rem;\n --spacing-trim-xl: 1.5rem;\n --spacing-trim-2xl: 2rem;\n\n /** Minimal trim to allow for ring/outline. */\n --spacing-form-chrome: var(--spacing-trim-xs);\n --spacing-form-gap: var(--spacing-trim-sm);\n --spacing-form-section-gap: var(--spacing-trim-md);\n\n /**\n * Control scale \u2014 the three canonical control heights. rem-based, so they scale with the\n * pointer-coarse root font-size (16px fine / 20px coarse) and touch targets grow for free:\n * sm 1.5rem = 24px fine / 30px coarse\n * md 2rem = 32px fine / 40px coarse\n * lg 2.5rem = 40px fine / 50px coarse\n * The old 28px step and the `xs` density are gone; `sm` is the compact step.\n */\n --dx-control-sm: 1.5rem;\n --dx-control-md: 2rem;\n --dx-control-lg: 2.5rem;\n\n /**\n * Density: md (default). One mechanism \u2014 a density class sets these two knobs and every control\n * reads them, so density cascades to any subtree (including react-ui-menu items) with no React\n * plumbing. `data-density` on a control remains a local override.\n */\n --dx-control: var(--dx-control-md);\n --dx-control-pad: var(--spacing-trim-sm);\n /* Text must fit inside --dx-control; at sm the default line box overshoots 24px. */\n --dx-control-leading: normal;\n --spacing-form-padding: var(--spacing-trim-sm);\n}\n\n@layer dx-tokens {\n /** Density: lg \u2014 large touch targets. */\n .dx-density-lg,\n [data-density='lg'] {\n --dx-control: var(--dx-control-lg);\n --dx-control-pad: var(--spacing-trim-md);\n --spacing-form-padding: var(--spacing-trim-md);\n }\n\n /** Density: md \u2014 explicit reset so a nested region can restore the default inside lg/sm. */\n .dx-density-md,\n [data-density='md'] {\n --dx-control: var(--dx-control-md);\n --dx-control-pad: var(--spacing-trim-sm);\n --spacing-form-padding: var(--spacing-trim-sm);\n }\n\n /** Density: sm \u2014 compact. */\n .dx-density-sm,\n [data-density='sm'] {\n --dx-control: var(--dx-control-sm);\n --dx-control-pad: var(--spacing-trim-xs);\n --dx-control-leading: 22px;\n --spacing-form-padding: var(--spacing-trim-xs);\n }\n}\n\n/**\n * CSS variables.\n */\n@layer dx-tokens {\n :root {\n --dx-line-0: 0px;\n --dx-line-1: 1px;\n --dx-line-2: 2px;\n\n /*\n * Gutters source from the spacing ramp rather than carrying their own literals. The names are\n * the gutter's own scale (form / dialog / card), so they intentionally do not line up with the\n * ramp step names \u2014 sm is one ramp step, md two, lg four.\n */\n /* Form: 8px */\n --dx-gutter-sm: var(--spacing-trim-sm);\n /* Dialog: 16px */\n --dx-gutter-md: var(--spacing-trim-lg);\n /* Card: 32px */\n --dx-gutter-lg: var(--spacing-trim-2xl);\n }\n\n :root {\n --dx-no-line: var(--dx-line-0);\n --dx-hair-line: var(--dx-line-1);\n --dx-thick-line: var(--dx-line-2);\n\n --dx-landmark-line: var(--dx-hair-line);\n --dx-focus-offset: var(--dx-no-line);\n --dx-focus-line: var(--dx-thick-line);\n --dx-modal-line: var(--dx-hair-line);\n --dx-grid-focus-indicator-width: var(--dx-hair-line);\n\n --dx-default-icons-size: 1rem; /* size=4 */\n }\n\n [data-grid-focus-indicator-variant='stack'] {\n --dx-grid-focus-indicator-width: var(--dx-thick-line);\n }\n\n :root {\n /*\n * Rails derive from the control scale rather than their own arithmetic, so a bar and the\n * controls inside it land on the same grid. The old `+1px` border fudge is gone \u2014 a border\n * belongs to the element's box, not to the size token (it leaked 49px into a dozen layouts).\n * NOTE: px values assume the 16px (pointer: fine) root font-size; coarse is 20px (\u00D71.25).\n */\n --dx-rail-content: 3rem; /* 48px \u2014 the rail gutter, not a control */\n --dx-rail-size: var(--dx-rail-content); /* 48px */\n --dx-rail-item: var(--dx-control-md); /* 32px */\n --dx-rail-action: var(--dx-control-lg); /* 40px */\n\n --dx-topbar-size: var(--dx-rail-size); /* 48px */\n --dx-toolbar-size: var(--dx-control-lg); /* 40px */\n --dx-statusbar-size: var(--dx-control-md); /* 32px */\n\n /** NOTE: Sidebar optimized to show plank + companion with sidebar open on 16\" MBP. */\n --dx-nav-sidebar-size: 350px;\n --dx-complementary-sidebar-size: 25rem;\n --dx-drawer-size: 50dvh;\n\n --dx-l0-size: 72px;\n --dx-l0-avatar-size: 3rem;\n --dx-l1-size: calc(var(--dx-nav-sidebar-size) - var(--dx-l0-size));\n --dx-r0-size: var(--dx-rail-size);\n --dx-r1-size: calc(var(--dx-complementary-sidebar-size) - var(--dx-r0-size) - 1px);\n }\n\n :root {\n --dx-calc-auto: auto;\n --dx-calc-min: min-content;\n --dx-calc-fit: fit-content;\n --dx-calc-max: max-content;\n --dx-calc-content: content;\n }\n\n @supports (block-size: calc-size(fit-content, size)) {\n :root {\n --dx-calc-auto: calc-size(auto, size);\n --dx-calc-min: calc-size(min-content, size);\n --dx-calc-fit: calc-size(fit-content, size);\n --dx-calc-max: calc-size(max-content, size);\n --dx-calc-content: calc-size(content, size);\n }\n }\n}\n", "/**\n * Color styles.\n *\n * Roles:\n * -bg background fill (e.g., button)\n * -bg-hover hover background fill\n * -fg foreground for text on surface\n * -surface background for surface\n * -text text on base surface\n * -border border for surface\n *\n * Hue/role tokens: each hue exposes bg / bg-hover / surface / fg / text / border.\n * `fg` is the on-color for a colored bg/surface; `text` is the hue as standalone\n * colored text on the neutral background. Semantic names (primary, error, \u2026) alias a source hue.\n *\n * These tokens are literal custom properties on disk (not expanded at PostCSS time) because\n * several pipelines read the theme without our Vite plugin chain \u2014 notably Tailwind's\n * `@reference \"\u2026/main.css\"` loader used by the lit-* packages, and tailwindcss's design-system\n * loader used in tests. Edit them here directly.\n */\n\n@theme {\n /*\n * Semantic \u2014 each name aliases a source hue.\n */\n\n --color-primary-bg: var(--color-blue-bg);\n --color-primary-bg-hover: var(--color-blue-bg-hover);\n --color-primary-fg: var(--color-blue-fg);\n --color-primary-surface: var(--color-blue-surface);\n --color-primary-text: var(--color-blue-text);\n --color-primary-border: var(--color-blue-border);\n\n --color-secondary-bg: var(--color-green-bg);\n --color-secondary-bg-hover: var(--color-green-bg-hover);\n --color-secondary-fg: var(--color-green-fg);\n --color-secondary-surface: var(--color-green-surface);\n --color-secondary-text: var(--color-green-text);\n --color-secondary-border: var(--color-green-border);\n\n --color-info-bg: var(--color-cyan-bg);\n --color-info-bg-hover: var(--color-cyan-bg-hover);\n --color-info-fg: var(--color-cyan-fg);\n --color-info-surface: var(--color-cyan-surface);\n --color-info-text: var(--color-cyan-text);\n --color-info-border: var(--color-cyan-border);\n\n --color-success-bg: var(--color-emerald-bg);\n --color-success-bg-hover: var(--color-emerald-bg-hover);\n --color-success-fg: var(--color-emerald-fg);\n --color-success-surface: var(--color-emerald-surface);\n --color-success-text: var(--color-emerald-text);\n --color-success-border: var(--color-emerald-border);\n\n --color-warning-bg: var(--color-amber-bg);\n --color-warning-bg-hover: var(--color-amber-bg-hover);\n --color-warning-fg: var(--color-amber-fg);\n --color-warning-surface: var(--color-amber-surface);\n --color-warning-text: var(--color-amber-text);\n --color-warning-border: var(--color-amber-border);\n\n --color-error-bg: var(--color-rose-bg);\n --color-error-bg-hover: var(--color-rose-bg-hover);\n --color-error-fg: var(--color-rose-fg);\n --color-error-surface: var(--color-rose-surface);\n --color-error-text: var(--color-rose-text);\n --color-error-border: var(--color-rose-border);\n\n /*\n * Hue.\n */\n\n --color-neutral-bg: var(--color-neutral-600);\n --color-neutral-bg-hover: var(--color-neutral-700);\n --color-neutral-fg: var(--color-neutral-900);\n --color-neutral-surface: var(--color-neutral-400);\n --color-neutral-text: light-dark(var(--color-neutral-800), var(--color-neutral-500));\n --color-neutral-border: var(--color-neutral-600);\n\n --color-red-bg: var(--color-red-600);\n --color-red-bg-hover: var(--color-red-700);\n --color-red-fg: var(--color-red-900);\n --color-red-surface: var(--color-red-400);\n --color-red-text: light-dark(var(--color-red-800), var(--color-red-500));\n --color-red-border: var(--color-red-600);\n\n --color-orange-bg: var(--color-orange-600);\n --color-orange-bg-hover: var(--color-orange-700);\n --color-orange-fg: var(--color-orange-900);\n --color-orange-surface: var(--color-orange-400);\n --color-orange-text: light-dark(var(--color-orange-800), var(--color-orange-500));\n --color-orange-border: var(--color-orange-600);\n\n --color-amber-bg: var(--color-amber-600);\n --color-amber-bg-hover: var(--color-amber-700);\n --color-amber-fg: var(--color-amber-900);\n --color-amber-surface: var(--color-amber-400);\n --color-amber-text: light-dark(var(--color-amber-800), var(--color-amber-500));\n --color-amber-border: var(--color-amber-600);\n\n --color-yellow-bg: var(--color-yellow-600);\n --color-yellow-bg-hover: var(--color-yellow-700);\n --color-yellow-fg: var(--color-yellow-900);\n --color-yellow-surface: var(--color-yellow-400);\n --color-yellow-text: light-dark(var(--color-yellow-800), var(--color-yellow-500));\n --color-yellow-border: var(--color-yellow-600);\n\n --color-lime-bg: var(--color-lime-600);\n --color-lime-bg-hover: var(--color-lime-700);\n --color-lime-fg: var(--color-lime-900);\n --color-lime-surface: var(--color-lime-400);\n --color-lime-text: light-dark(var(--color-lime-800), var(--color-lime-500));\n --color-lime-border: var(--color-lime-600);\n\n --color-green-bg: var(--color-green-600);\n --color-green-bg-hover: var(--color-green-700);\n --color-green-fg: var(--color-green-900);\n --color-green-surface: var(--color-green-400);\n --color-green-text: light-dark(var(--color-green-800), var(--color-green-500));\n --color-green-border: var(--color-green-600);\n\n --color-emerald-bg: var(--color-emerald-600);\n --color-emerald-bg-hover: var(--color-emerald-700);\n --color-emerald-fg: var(--color-emerald-900);\n --color-emerald-surface: var(--color-emerald-400);\n --color-emerald-text: light-dark(var(--color-emerald-800), var(--color-emerald-500));\n --color-emerald-border: var(--color-emerald-600);\n\n --color-teal-bg: var(--color-teal-600);\n --color-teal-bg-hover: var(--color-teal-700);\n --color-teal-fg: var(--color-teal-900);\n --color-teal-surface: var(--color-teal-400);\n --color-teal-text: light-dark(var(--color-teal-800), var(--color-teal-500));\n --color-teal-border: var(--color-teal-600);\n\n --color-cyan-bg: var(--color-cyan-600);\n --color-cyan-bg-hover: var(--color-cyan-700);\n --color-cyan-fg: var(--color-cyan-900);\n --color-cyan-surface: var(--color-cyan-400);\n --color-cyan-text: light-dark(var(--color-cyan-800), var(--color-cyan-500));\n --color-cyan-border: var(--color-cyan-600);\n\n --color-sky-bg: var(--color-sky-600);\n --color-sky-bg-hover: var(--color-sky-700);\n --color-sky-fg: var(--color-sky-900);\n --color-sky-surface: var(--color-sky-400);\n --color-sky-text: light-dark(var(--color-sky-800), var(--color-sky-500));\n --color-sky-border: var(--color-sky-600);\n\n --color-blue-bg: var(--color-blue-600);\n --color-blue-bg-hover: var(--color-blue-700);\n --color-blue-fg: var(--color-blue-900);\n --color-blue-surface: var(--color-blue-400);\n --color-blue-text: light-dark(var(--color-blue-800), var(--color-blue-500));\n --color-blue-border: var(--color-blue-600);\n\n --color-indigo-bg: var(--color-indigo-600);\n --color-indigo-bg-hover: var(--color-indigo-700);\n --color-indigo-fg: var(--color-indigo-900);\n --color-indigo-surface: var(--color-indigo-400);\n --color-indigo-text: light-dark(var(--color-indigo-800), var(--color-indigo-500));\n --color-indigo-border: var(--color-indigo-600);\n\n --color-violet-bg: var(--color-violet-600);\n --color-violet-bg-hover: var(--color-violet-700);\n --color-violet-fg: var(--color-violet-900);\n --color-violet-surface: var(--color-violet-400);\n --color-violet-text: light-dark(var(--color-violet-800), var(--color-violet-500));\n --color-violet-border: var(--color-violet-600);\n\n --color-purple-bg: var(--color-purple-600);\n --color-purple-bg-hover: var(--color-purple-700);\n --color-purple-fg: var(--color-purple-900);\n --color-purple-surface: var(--color-purple-400);\n --color-purple-text: light-dark(var(--color-purple-800), var(--color-purple-500));\n --color-purple-border: var(--color-purple-600);\n\n --color-fuchsia-bg: var(--color-fuchsia-600);\n --color-fuchsia-bg-hover: var(--color-fuchsia-700);\n --color-fuchsia-fg: var(--color-fuchsia-900);\n --color-fuchsia-surface: var(--color-fuchsia-400);\n --color-fuchsia-text: light-dark(var(--color-fuchsia-800), var(--color-fuchsia-500));\n --color-fuchsia-border: var(--color-fuchsia-600);\n\n --color-pink-bg: var(--color-pink-600);\n --color-pink-bg-hover: var(--color-pink-700);\n --color-pink-fg: var(--color-pink-900);\n --color-pink-surface: var(--color-pink-400);\n --color-pink-text: light-dark(var(--color-pink-800), var(--color-pink-500));\n --color-pink-border: var(--color-pink-600);\n\n --color-rose-bg: var(--color-rose-600);\n --color-rose-bg-hover: var(--color-rose-700);\n --color-rose-fg: var(--color-rose-900);\n --color-rose-surface: var(--color-rose-400);\n --color-rose-text: light-dark(var(--color-rose-800), var(--color-rose-500));\n --color-rose-border: var(--color-rose-600);\n}\n", "/**\n * Surfaces \u2014 the elevation ladder and the aspects derived from it.\n *\n * Two kinds of token live here, and the distinction is the whole design:\n * - **Levels** are fixed stops on the neutral ramp. A named surface aliases exactly one level.\n * - **Aspects** are NOT levels. They are computed from whichever surface hosts them\n * (`--surface-bg`), so the same role reads correctly at any elevation.\n *\n * Everything else (text emphasis, accent, separators, scrollbar, grid paper) is in `roles.css`.\n *\n * Naming convention: --color-{name}-{part}[-{state}] \u2014 see DESIGN_SYSTEM.md.\n */\n\n@theme {\n /*\n * Elevation ladder \u2014 six named levels, strictly monotonic, z-order low \u2192 high.\n * Dark: lighter = higher. Light: inverted (lighter = higher, toward white).\n *\n * Chrome sits BELOW the document canvas and content surfaces sit ABOVE it, so the app reads as\n * paper on a desk rather than paper in a well (see AUDIT.md D1/D2).\n *\n * Level Dark Light Roles\n * sunken n-950 0.905 deck gaps, wells, scrim base, L0/R0 outer rails\n * chrome n-925 0.935 sidebars, topbar, statusbar, L1/R1 sidebars\n * base n-900 0.980 document canvas, attention zone\n * raised n-850 0.990 cards, side panels\n * overlay n-800 0.995 dialogs, sheets, drawers\n * popup n-775 1.000 popover, menu, toast, tooltip\n *\n * Toolbars, groups and inputs are deliberately NOT levels: they are aspects derived from\n * whichever surface hosts them (see \"Aspects\" below), so a toolbar in a card and a toolbar on the\n * canvas each read as a bar on their own host instead of jumping to a fixed global tone.\n *\n * These are private (--dx-*) knobs \u2014 use named surface tokens in components, not these directly.\n */\n --dx-surface-sunken: light-dark(var(--color-neutral-150), var(--color-neutral-950));\n --dx-surface-chrome: light-dark(var(--color-neutral-100), var(--color-neutral-925));\n --dx-surface-base: light-dark(oklch(0.98 0.001 190), var(--color-neutral-900));\n --dx-surface-raised: light-dark(oklch(0.99 0.001 190), var(--color-neutral-850));\n --dx-surface-overlay: light-dark(oklch(0.995 0.001 190), var(--color-neutral-800));\n --dx-surface-popup: light-dark(oklch(1 0 0), var(--color-neutral-775));\n\n /**\n * Level: sunken\n */\n\n --color-deck-surface: var(--dx-surface-sunken);\n\n /*\n * Outer rails frame the panels rather than belonging to them, so they read one step behind the\n * L1/R1 sidebars they flank. They carry their own light-dark pair rather than aliasing a level:\n * dark keeps the deck's depth, while light sits higher, because near white the same ladder step\n * reads much heavier than it does near black.\n */\n --color-l0-surface: light-dark(oklch(0.935 0.001 190), var(--dx-surface-sunken));\n --color-r0-surface: light-dark(oklch(0.935 0.001 190), var(--dx-surface-sunken));\n\n /* Translucent dimming layer; tracks the lowest level rather than a raw neutral. */\n --color-scrim-surface: light-dark(\n oklch(from var(--dx-surface-sunken) l c h / 0.5),\n oklch(from var(--dx-surface-sunken) l c h / 0.25)\n );\n\n /**\n * Level: chrome\n */\n\n --color-sidebar-surface: var(--dx-surface-chrome);\n --color-header-surface: var(--dx-surface-chrome);\n --color-l1-surface: light-dark(oklch(0.955 0.001 190), var(--dx-surface-chrome));\n --color-r1-surface: light-dark(oklch(0.955 0.001 190), var(--dx-surface-chrome));\n\n /* Sidebar body text. Default sits one ramp stop below the current/selected emphasis. */\n --color-sidebar-fg: light-dark(var(--color-neutral-700), var(--color-neutral-250));\n --color-sidebar-current-fg: light-dark(var(--color-neutral-950), var(--color-neutral-75));\n\n /**\n * Level: base\n */\n\n --color-base-surface: var(--dx-surface-base);\n --color-base-fg: light-dark(var(--color-neutral-950), var(--color-neutral-150));\n\n --color-attention-surface: var(--dx-surface-base);\n --color-attention-contains: oklch(from var(--color-accent-bg) l c h / 0.3);\n\n /**\n * Level: raised\n */\n\n --color-card-surface: var(--dx-surface-raised);\n\n /**\n * Level: overlay\n */\n\n --color-modal-surface: var(--dx-surface-overlay);\n\n /**\n * Level: popup\n */\n\n --color-popover-surface: var(--dx-surface-popup);\n\n /*\n * Aspects \u2014 surfaces and states derived from the HOST surface (`--surface-bg`) rather than pinned\n * to a level, via relative oklch stepped by `--dx-lift` (+1 dark, -1 light; see base.css), so each\n * stays visible at any elevation in either theme. The values here resolve against the root\n * `--surface-bg` (= base-surface, set in base.css), which is the correct default for content\n * outside any surface zone; every zone re-derives them for its own subtree in\n * components/surface.css.\n *\n * Offsets (lightness): bar 0.025, well 0.05, hover-subtle 0.02, hover 0.08, current 0.10,\n * current-hover 0.12. Keep these in sync with the re-derivation blocks in surface.css.\n */\n\n /* Bar: a sticky strip on its host (toolbar, statusbar). */\n --color-toolbar-surface: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-bar) * 0.025) c h\n );\n\n /* Well: an inset region on its host (group, input, focus). */\n --color-group-surface: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-well) * 0.05) c h\n );\n --color-input-surface: var(--color-group-surface);\n --color-focus-surface: var(--color-group-surface);\n\n /* Subtle alternate of group-surface for zebra striping (e.g. calendar months). */\n --color-group-alt-surface: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * 0.08) c h\n );\n\n /* Placeholder ink is an aspect too: a fixed neutral reads correctly on one surface only, so it\n * lifts away from the host like the state surfaces do (offset 0.30). */\n --color-placeholder: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-placeholder) * 0.3) c\n h\n );\n\n /*\n * Scrollbar thumb. Fixed neutrals collided with the surface they scrolled over: in light mode the\n * thumb was neutral-200, the same value as the base canvas, so it was invisible. Deriving it from\n * the host keeps the same contrast on any surface, in either theme (offsets 0.23 / 0.30 / 0.34).\n */\n --color-scrollbar-thumb: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-scrollbar) * 0.23) c\n h\n );\n --color-scrollbar-thumb-hover: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-scrollbar) * 0.3) c h\n );\n --color-scrollbar-thumb-active: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-scrollbar) * 0.34) c\n h\n );\n\n /*\n * Separators. Fixed neutrals collided with the surfaces they divide once the ladder inverted:\n * in light mode `separator` was neutral-200, the same value as the base canvas, and\n * `subdued-separator` matched the sidebar exactly \u2014 both invisible. The offsets below reproduce\n * the dark-mode appearance they had (0.166 / 0.115 / 0.089 / 0.064 above the base surface) and\n * mirror it in light.\n */\n --color-separator: oklch(\n from var(--surface-bg, var(--color-base-surface))\n calc(l + var(--dx-lift) * var(--dx-attenuate-separator-line) * 0.166) c h\n );\n --color-input-separator: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-separator) * 0.115) c\n h\n );\n --color-subdued-separator: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-separator) * 0.089) c\n h\n );\n --color-primary-separator: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-separator) * 0.064) c\n h\n );\n\n /* State aspects \u2014 same host-derived mechanism; see the offsets above. */\n --color-hover-surface: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.08) c h\n );\n --color-hover-fg: light-dark(var(--color-neutral-950), var(--color-neutral-150));\n\n /*\n * Subtle region hover for large highlight targets (list rows, tiles) where the full\n * control-strength hover reads as too heavy. Consumed by `.dx-hover`;\n * controls (buttons) keep --color-hover-surface.\n */\n --color-hover-surface-subtle: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.02) c h\n );\n\n /* current (aria-current) */\n --color-current-surface: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.1) c h\n );\n --color-current-surface-hover: oklch(\n from var(--surface-bg, var(--color-base-surface)) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.12) c h\n );\n --color-current-fg: light-dark(var(--color-neutral-950), var(--color-neutral-50));\n\n /* selected (aria-selected) tracks current */\n --color-selected-surface: var(--color-current-surface);\n --color-selected-surface-hover: var(--color-current-surface-hover);\n --color-selected-fg: var(--color-current-fg);\n\n /* Inverted surface (tooltips, snackbars) \u2014 a deliberate flip, not a level. */\n --color-inverse-surface: light-dark(var(--color-neutral-800), var(--color-neutral-200));\n --color-inverse-fg: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n --color-inverse-text: light-dark(var(--color-neutral-50), var(--color-neutral-950));\n}\n", "/**\n * Text\n */\n\n@theme {\n /* \n * Font families \n * https://fonts.google.com/?preview.layout=grid&categoryFilters=Technology:%2FTechnology%2FVariable;Sans+Serif:%2FSans%2F*\n * Nunito\n */\n --font-body: 'Nunito Variable', 'Inter Variable', ui-sans-serif, system-ui, sans-serif;\n --font-mono: 'JetBrains Mono Variable', ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;\n\n /* Font size scale (Tailwind v4 defaults \u2014 clean rem/px values) */\n --text-xs: 0.75rem;\n --text-xs--line-height: 1rem;\n --text-sm: 0.875rem;\n --text-sm--line-height: 1.25rem;\n --text-base: 1rem;\n --text-base--line-height: 1.5rem;\n --text-lg: 1.125rem;\n --text-lg--line-height: 1.75rem;\n --text-xl: 1.25rem;\n --text-xl--line-height: 1.75rem;\n --text-2xl: 1.5rem;\n --text-2xl--line-height: 2rem;\n --text-3xl: 1.875rem;\n --text-3xl--line-height: 2.25rem;\n --text-4xl: 2.25rem;\n --text-4xl--line-height: 2.5rem;\n --text-5xl: 3rem;\n --text-5xl--line-height: 1;\n --text-6xl: 3.75rem;\n --text-6xl--line-height: 1;\n --text-7xl: 4.5rem;\n --text-7xl--line-height: 1;\n --text-8xl: 6rem;\n --text-8xl--line-height: 1;\n --text-9xl: 8rem;\n --text-9xl--line-height: 1;\n}\n", "/**\n * Base utilities.\n */\n\n@layer dx-base {\n :root {\n color-scheme: light;\n /* Direction an aspect moves off its host surface: away from the canvas in either theme.\n * Aspects multiply their offset by this instead of branching on light-dark(), which resolves\n * unreliably when nested inside a relative-color expression. */\n --dx-lift: -1;\n /*\n * Light attenuation.\n *\n * Lightness is not perceptually symmetric: subtracting 0.10 L from a near-white surface reads\n * far heavier than adding 0.10 to a near-black one. Every aspect family therefore multiplies\n * its offset by a factor declared here \u2014 dark sets them all to 1, so the dark appearance is the\n * reference and light is tuned against it. One family, one factor, one place.\n *\n * Family Offsets (dark) Light Light dL on the canvas\n * state .02 / .08 / .10 / .12 0.5 hover .04, selected .05\n * well .05 0.5 input fill .025\n * separator .089 / .115 / .064 0.75 subdued .067, input .086\n * sep-line .166 0.45 .075 \u2014 near the floor; subdued is .067\n * bar .025 1 toolbars read correctly as-is\n * placeholder .30 1 ink, not a surface; wants the contrast\n * scrollbar .23 / .30 / .34 1 was invisible in light before deriving\n *\n * Adjust a family by changing its factor, not by editing offsets \u2014 those are the dark contract.\n */\n --dx-attenuate-state: 0.5;\n --dx-attenuate-well: 0.5;\n --dx-attenuate-separator: 0.75;\n --dx-attenuate-separator-line: 0.45;\n --dx-attenuate-bar: 1;\n --dx-attenuate-placeholder: 1;\n --dx-attenuate-scrollbar: 1;\n touch-action: pan-x pan-y;\n font-synthesis: none;\n font-variation-settings:\n 'wght' 400,\n 'slnt' 0;\n scroll-padding-block-start: var(--spacing-14);\n scroll-padding-block-end: var(--spacing-2);\n @apply font-body;\n }\n\n .dark {\n color-scheme: dark;\n --dx-lift: 1;\n /* Dark is the reference: every family runs at full strength. */\n --dx-attenuate-state: 1;\n --dx-attenuate-well: 1;\n --dx-attenuate-separator: 1;\n --dx-attenuate-separator-line: 1;\n --dx-attenuate-bar: 1;\n --dx-attenuate-placeholder: 1;\n --dx-attenuate-scrollbar: 1;\n }\n\n button {\n @apply cursor-pointer;\n -webkit-tap-highlight-color: transparent;\n }\n}\n\n@layer dx-tokens {\n :root {\n --dx-tag-padding-block: var(--spacing-tag-padding-block);\n }\n\n html,\n html.dark,\n html .dark,\n .sb-show-main {\n background-color: var(--color-base-surface);\n color: var(--color-base-fg);\n --surface-bg: var(--color-base-surface);\n --foreground: var(--color-base-fg);\n --description-text: var(--color-description);\n }\n}\n", "/**\n * Typography\n */\n\n@import '@fontsource-variable/jetbrains-mono/wght-italic.css';\n@import '@fontsource-variable/jetbrains-mono/wght.css';\n@import '@fontsource/poiret-one';\n\n@layer dx-components {\n /* Font weights & `italic` handling */\n .not-italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' 0;\n }\n\n .font-thin,\n .not-italic.font-thin,\n .not-italic .font-thin,\n .font-thin .not-italic {\n font-variation-settings:\n 'wght' 100,\n 'slnt' 0;\n }\n\n .font-extralight,\n .not-italic.font-extralight,\n .not-italic .font-extralight,\n .font-extralight .not-italic {\n font-variation-settings:\n 'wght' 200,\n 'slnt' 0;\n }\n\n .font-light,\n .not-italic.font-light,\n .not-italic .font-light,\n .font-light .not-italic {\n font-variation-settings:\n 'wght' 300,\n 'slnt' 0;\n }\n\n .font-normal,\n .not-italic.font-normal,\n .not-italic .font-normal,\n .font-normal .not-italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' 0;\n }\n\n .font-medium,\n .not-italic.font-medium,\n .not-italic .font-medium,\n .font-medium .not-italic {\n font-variation-settings:\n 'wght' 500,\n 'slnt' 0;\n }\n\n .font-semibold,\n .not-italic.font-semibold,\n .not-italic .font-semibold,\n .font-semibold .not-italic {\n font-variation-settings:\n 'wght' 600,\n 'slnt' 0;\n }\n\n .font-bold,\n .not-italic.font-bold,\n .not-italic .font-bold,\n .font-bold .not-italic {\n font-variation-settings:\n 'wght' 700,\n 'slnt' 0;\n }\n\n .font-extrabold,\n .not-italic.font-extrabold,\n .not-italic .font-extrabold,\n .font-extrabold .not-italic {\n font-variation-settings:\n 'wght' 800,\n 'slnt' 0;\n }\n\n .font-black,\n .not-italic.font-black,\n .not-italic .font-black,\n .font-black .not-italic {\n font-variation-settings:\n 'wght' 900,\n 'slnt' 0;\n }\n\n .italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' -10;\n }\n\n .italic.font-thin,\n .italic .font-thin,\n .font-thin .italic {\n font-variation-settings:\n 'wght' 100,\n 'slnt' -10;\n }\n\n .italic.font-extralight,\n .italic .font-extralight,\n .font-extralight .italic {\n font-variation-settings:\n 'wght' 200,\n 'slnt' -10;\n }\n\n .italic.font-light,\n .italic .font-light,\n .font-light .italic {\n font-variation-settings:\n 'wght' 300,\n 'slnt' -10;\n }\n\n .italic.font-normal,\n .italic .font-normal,\n .font-normal .italic {\n font-variation-settings:\n 'wght' 400,\n 'slnt' -10;\n }\n\n .italic.font-medium,\n .italic .font-medium,\n .font-medium .italic {\n font-variation-settings:\n 'wght' 500,\n 'slnt' -10;\n }\n\n .italic.font-semibold,\n .italic .font-semibold,\n .font-semibold .italic {\n font-variation-settings:\n 'wght' 600,\n 'slnt' -10;\n }\n\n .italic.font-bold,\n .italic .font-bold,\n .font-bold .italic {\n font-variation-settings:\n 'wght' 700,\n 'slnt' -10;\n }\n\n .italic.font-extrabold,\n .italic .font-extrabold,\n .font-extrabold .italic {\n font-variation-settings:\n 'wght' 800,\n 'slnt' -10;\n }\n\n .italic.font-black,\n .italic .font-black,\n .font-black .italic {\n font-variation-settings:\n 'wght' 900,\n 'slnt' -10;\n }\n}\n", "/**\n * Button\n */\n\n/* TODO(thure): Focus is handled by .dx-focus-ring, but should ideally be applied as part of this component. */\n@layer dx-components {\n /**\n * NOTE: These are component classes (not utility classes) on a different layer, which themselves apply utility classes using `@apply`.\n */\n\n /* Base styles */\n .dx-button {\n @apply shrink-0 inline-flex select-none items-center justify-center overflow-hidden;\n /* Geometry comes from the density knobs, not from utilities in the class list: `utilities` is\n * the last cascade layer, so any `px-*`/`h-*` a theme emits would silently beat a rule here. */\n min-block-size: var(--dx-control);\n padding-inline: var(--dx-control-pad);\n @apply font-medium transition-colors duration-100 ease-linear bg-input-bg;\n /* The default variant inherits ambient valence colors when rendered inside a valence surface\n * (e.g. Message.Root, which sets --dx-valence-*); otherwise it falls back to the base input styling. */\n &[data-variant='default'] {\n /* color: var(--dx-valence-text, inherit); */\n background: var(--dx-valence-bg, var(--color-input-bg));\n }\n /* Toggle / tab group: the selected item reads as standard text on a surface-relative fill (selected-surface\n * tracks the enclosing --surface-bg, so it stays visible on any surface); unselected items recede to subdued. */\n &[aria-pressed='true'],\n &[aria-checked='true'] {\n @apply text-base-fg bg-selected-surface;\n }\n &[aria-pressed='false'],\n &[aria-checked='false'] {\n @apply text-description;\n }\n\n /* Disabled styles */\n &[disabled]:not([disabled='false']) {\n @apply opacity-40 cursor-not-allowed shadow-none;\n }\n\n /* Variants consistent between enabled & disabled */\n &[data-variant='ghost'] {\n @apply bg-transparent;\n &:hover {\n /* Shares the surface-derived control hover (--color-hover-surface tracks the enclosing\n * --surface-bg) so every variant tints consistently on any background. */\n @apply bg-hover-surface text-inherit;\n }\n &[data-state='open'] {\n @apply bg-input-bg;\n }\n &[aria-pressed='true'],\n &[aria-checked='true'] {\n @apply bg-base-surface text-accent-text;\n }\n }\n &[data-variant='outline'] {\n @apply border border-base-surface bg-transparent;\n &:hover {\n @apply bg-hover-surface;\n }\n }\n\n /* Enabled styles */\n &:not([disabled]),\n &[disabled='false'] {\n &:hover {\n @apply bg-hover-surface;\n }\n\n /*\n * Light moves the button's OWN fill: the host-derived hover sits above the fill here, so it\n * lightened on hover and landed on `--color-selected-surface`. Dark keeps the host tint \u2014 the\n * dark ladder puts it clear of the fill already, and the token cannot carry it: declared at\n * `:root`, `var(--color-hover-surface)` would freeze there and stop tracking the zone.\n */\n &[data-variant='default']:hover {\n color: var(--dx-valence-text);\n background-color: var(--dx-valence-bg-hover, var(--color-input-bg-hover));\n }\n .dark &[data-variant='default']:hover {\n background-color: var(--dx-valence-bg-hover, var(--color-hover-surface));\n }\n\n /* \n * Inside a valence surface the (otherwise transparent) ghost hover adopts the valence background;\n * elsewhere it falls back to the standard hover surface. \n */\n &[data-variant='ghost']:hover {\n color: var(--dx-valence-text);\n background-color: var(--dx-valence-bg, var(--color-hover-surface));\n }\n\n &[data-variant='primary'] {\n @apply text-accent-fg bg-accent-bg;\n &:hover,\n &[aria-pressed='true'],\n &[aria-checked='true'],\n &[data-state='open'] {\n @apply bg-accent-bg-hover;\n }\n }\n &[data-variant='destructive'] {\n @apply text-accent-fg bg-error-bg;\n &:hover,\n &[aria-pressed='true'],\n &[aria-checked='true'],\n &[data-state='open'] {\n @apply bg-error-bg-hover;\n }\n }\n &[data-variant='valence'] {\n @apply text-inverse-fg;\n background: var(--dx-valence-bg, var(--color-neutral-bg));\n &:hover,\n &[aria-pressed='true'],\n &[aria-checked='true'],\n &[data-state='open'] {\n background-color: var(--dx-valence-bg-hover, var(--color-neutral-bg-hover));\n }\n }\n }\n }\n\n /* Props */\n .dx-button:not([data-props~='grouped']) {\n @apply rounded-xs;\n }\n .dx-button:not([data-props~='wrap']) {\n @apply truncate;\n }\n /* `data-density` is handled by the shared density rule in theme/spacing.css, which sets\n * --dx-control / --dx-control-pad; only the type-scale tweak is button-specific. */\n .dx-button[data-density='sm'] {\n @apply text-xs;\n }\n .dx-button.aspect-square {\n padding-inline: 0;\n inline-size: var(--dx-control);\n }\n}\n", "@layer dx-components {\n /**\n * Card.Section is `col-span-full grid grid-cols-subgrid` so it owns a full row and\n * exposes the Card.Root's 3 column tracks (gutter / content / gutter) to its children.\n *\n * Direct children that do not carry their own column placement default to the center\n * (content) track via `--dx-col`, so raw content (editors, text, lists) lands in the\n * content column instead of CSS Grid auto-placing it into a gutter. Children with\n * an explicit `col-span-*` utility (Card.Action, Card.Row, Card.Section title) opt out.\n */\n .dx-card__section > *:not([class*='col-span']) {\n grid-column: var(--dx-col, auto);\n }\n}\n", "/**\n * Checkbox\n */\n\n/* TODO(thure): Focus is handled by .dx-focus-ring, but should ideally be applied as part of this component.*/\n@layer dx-components {\n .dx-checkbox--switch,\n .dx-checkbox {\n @apply border border-un-accent;\n &[aria-checked='true'],\n &[aria-checked='mixed'],\n &:checked {\n @apply bg-accent-bg accent-accent-bg border-accent-bg;\n }\n\n &:not([disabled]),\n &[disabled='false'] {\n &:hover {\n @apply bg-un-accent-hover accent-un-accent-hover;\n &[aria-checked='true'],\n &[aria-checked='mixed'],\n &:checked {\n @apply bg-accent-bg-hover accent-accent-bg-hover border-accent-bg-hover;\n }\n }\n }\n }\n\n .dx-checkbox {\n @apply w-4 h-4 overflow-hidden shadow-inner transition-colors bg-un-accent accent-un-accent text-accent-fg shrink-0 inline-grid place-items-center rounded-xs;\n }\n\n /* TODO(ZaymonFC): Focus is handled by .dx-focus-ring, but should ideally be applied as part of this component.*/\n /* NOTE: This isn't compatible with the Radix switch. */\n .dx-checkbox--switch {\n @apply inline-block appearance-none relative shrink-0 h-5 w-8;\n @apply shadow-inner transition-colors bg-un-accent;\n @apply cursor-pointer rounded-full;\n\n &::before {\n @apply w-3 h-3 mx-[0.1875rem] my-[0.1875rem] absolute block bg-white rounded-full border-separator transition-transform duration-100 will-change-transform;\n content: '';\n }\n\n &[aria-checked='true'],\n &[aria-checked='mixed'],\n &:checked {\n background-image: none;\n &::before {\n @apply translate-x-[100%];\n }\n }\n }\n}\n", "/**\n * Dialog\n */\n\n@layer dx-components {\n .dx-dialog__overlay {\n @apply z-40 fixed grid inset-x-0 top-0 h-dvh py-[env(safe-area-inset-top)] place-items-center;\n @apply bg-scrim-surface backdrop-blur-xs;\n\n &[data-state='open'] {\n @apply animate-fade-in;\n }\n\n &[data-state='closed'] {\n @apply animate-fade-out;\n }\n\n &[data-block-align='start'] {\n align-items: start;\n justify-items: center;\n }\n\n &[data-block-align='center'] {\n place-items: center;\n }\n\n &[data-block-align='end'] {\n align-items: end;\n justify-items: center;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n .dx-dialog__overlay {\n @apply p-[calc(env(safe-area-inset-top)+.6rem)];\n }\n }\n\n @media (width >= theme(--breakpoint-md)) {\n .dx-dialog__overlay {\n @apply p-[calc(env(safe-area-inset-top)+1.2rem)];\n }\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n .dx-dialog__overlay {\n @apply p-[calc(env(safe-area-inset-top)+2.4rem)];\n }\n }\n\n .dx-dialog__content {\n @apply flex flex-col w-dvw max-w-full max-h-full overflow-hidden shadow-md;\n\n &[data-state='open'] {\n @apply animate-slide-up-and-fade;\n }\n\n &[data-state='closed'] {\n @apply animate-slide-down-and-fade;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n .dx-dialog__content {\n @apply w-[95vw] border rounded-md border-separator;\n }\n }\n\n @media (width >= theme(--breakpoint-md)) {\n .dx-dialog__content {\n @apply max-w-[24rem];\n }\n }\n\n .dx-dialog__title {\n @apply shrink-0 text-xl font-medium;\n }\n}\n", "/**\n * Focus ring\n */\n\n@layer dx-components {\n .dx-focus-ring,\n .dx-focus-ring-inset {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus-visible {\n @apply ring-focus-line ring-offset-focus-offset z-[1] ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-none {\n &:focus,\n &:focus-visible {\n @apply outline-hidden! ring-0!;\n }\n }\n\n .dx-focus-ring-always,\n .dx-focus-ring-inset-always {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus {\n @apply ring-focus-line ring-offset-focus-offset z-[1] ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-group,\n .dx-focus-ring-group-x,\n .dx-focus-ring-group-y,\n .dx-focus-ring-group-always,\n .dx-focus-ring-group-x-always,\n .dx-focus-ring-group-y-always {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply outline-hidden;\n }\n }\n }\n\n .dx-focus-ring-group:focus-visible .dx-focus-ring-group-indicator,\n .dx-focus-ring-group-x:focus-visible .dx-focus-ring-group-x-indicator,\n .dx-focus-ring-group-y:focus-visible .dx-focus-ring-group-y-indicator {\n @apply ring-focus-line ring-offset-focus-offset ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n\n .dx-focus-ring-group-always:focus .dx-focus-ring-group-indicator,\n .dx-focus-ring-group-x-always:focus .dx-focus-ring-group-x-indicator,\n .dx-focus-ring-group-y-always:focus .dx-focus-ring-group-y-indicator {\n @apply ring-focus-line ring-offset-focus-offset ring-[var(--color-focus-ring-subtle)];\n\n &[data-variant='primary'] {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n\n .dx-focus-ring-inset {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus-visible {\n @apply ring-inset;\n }\n }\n }\n\n .dx-focus-ring-inset-always {\n &:not([disabled]),\n &[disabled='false'] {\n &:focus {\n @apply ring-inset;\n }\n }\n }\n\n .dx-focus-ring-inset-over-all,\n .dx-focus-ring-main[data-handles-focus='true'] {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n content: '';\n @apply z-20 pointer-events-none;\n }\n\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus-visible {\n &::after {\n @apply ring-focus-line ring-offset-focus-offset ring-inset z-[1] ring-[var(--color-focus-ring-subtle)];\n }\n\n &[data-variant='primary']::after {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-inset-over-all-always,\n .dx-focus-ring-main-always[data-handles-focus='true'] {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n content: '';\n @apply z-20 pointer-events-none;\n }\n\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus {\n &::after {\n @apply ring-focus-line ring-offset-focus-offset ring-inset z-[1] ring-[var(--color-focus-ring-subtle)];\n }\n\n &[data-variant='primary']::after {\n @apply ring-[var(--color-focus-ring)];\n }\n\n &:hover {\n @apply outline-hidden;\n .dark & {\n @apply outline-hidden;\n }\n }\n }\n }\n }\n\n .dx-focus-ring-inset-over-all,\n .dx-focus-ring-inset-over-all-always {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n @apply inset-0 absolute;\n }\n }\n }\n\n .dx-focus-ring-main[data-handles-focus='true'] {\n &:not([disabled]),\n &[disabled='false'] {\n &::after {\n position: fixed;\n inset: 0;\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n &[data-sidebar-left-state='expanded']::after {\n inset-inline-start: var(--dx-nav-sidebar-size);\n }\n\n &[data-sidebar-left-state='collapsed']::after {\n inset-inline-start: var(--dx-l0-size);\n }\n\n &[data-sidebar-right-state='expanded']::after {\n inset-inline-end: var(--dx-complementary-sidebar-size);\n }\n\n &[data-sidebar-right-state='collapsed']::after {\n inset-inline-end: var(--dx-r0-size);\n }\n }\n }\n }\n\n .dx-focus-subdued {\n @apply focus:outline-hidden focus-visible:outline-hidden focus:ring-0 ring-0 focus:border-0 border-0;\n }\n\n .dx-focus-static {\n @apply ring-2 ring-offset-0 ring-primary-300 ring-offset-white dark:ring-primary-400 dark:ring-offset-black;\n }\n}\n", "/**\n * Icons\n */\n\n@layer dx-components {\n .dx-icon-inline {\n @apply inline-block align-[-0.125em];\n }\n}\n", "@layer dx-components {\n /*\n * Shared input-box treatment \u2014 the hairline-bordered surface used by text inputs and by CodeMirror\n * editors styled to match them (`Input` default variant, `MarkdownField`, `RefEditor`, the inbox\n * composer `Editor`). Single source for the whole chrome: surface + border + radius + padding,\n * the focus-within colour shift, and the subtle focus ring (mirrors `dx-focus-ring`) \u2014 applied\n * whether the box itself is the focusable or it wraps an inner focusable (CodeMirror\n * contenteditable, adorned field). Callers add only sizing (height/min-height) and layout;\n * element paddings from density utilities (`px-*`/`py-0`) still win over the defaults here.\n */\n .dx-input {\n @apply transition-colors border border-input-separator rounded-xs p-1 px-2;\n\n /*\n * A zone, not a bare fill: the input publishes its own surface so what sits on it \u2014 the\n * placeholder above all \u2014 derives from the input's colour rather than from the host behind it.\n * `@apply` cannot take a zone class, hence the two lines rather than `dx-input-surface`.\n */\n --surface-bg: var(--color-input-surface);\n background-color: var(--surface-bg);\n\n &:focus {\n @apply outline-hidden;\n }\n\n &:focus-within {\n @apply bg-focus-surface border-separator;\n }\n\n /* Border matches the ring while it shows, so the focus treatment reads as one band (no inner line). */\n &:not([disabled]):focus-visible,\n &:not([disabled]):has(:focus-visible) {\n @apply ring-focus-line ring-offset-focus-offset z-[1] ring-[var(--color-focus-ring-subtle)] border-[color:var(--color-focus-ring-subtle)];\n }\n }\n}\n", "/**\n * Callout \u2014 hue-tinted panel: applies bg-{hue}-surface / border-{hue}-border / text-{hue}-fg via a\n * data-hue attribute (on the element itself or an ancestor) or a BEM modifier.\n * Example: <div className='dx-callout' data-hue='blue'>...</div>\n * Example: <div className='dx-callout dx-callout--blue'>...</div>\n */\n\n@layer dx-components {\n .dx-callout[data-hue='neutral'],\n :where([data-hue='neutral']) .dx-callout,\n .dx-callout--neutral {\n @apply bg-neutral-surface border-neutral-border text-neutral-fg;\n }\n\n .dx-callout[data-hue='red'],\n :where([data-hue='red']) .dx-callout,\n .dx-callout--red {\n @apply bg-red-surface border-red-border text-red-fg;\n }\n\n .dx-callout[data-hue='orange'],\n :where([data-hue='orange']) .dx-callout,\n .dx-callout--orange {\n @apply bg-orange-surface border-orange-border text-orange-fg;\n }\n\n .dx-callout[data-hue='amber'],\n :where([data-hue='amber']) .dx-callout,\n .dx-callout--amber {\n @apply bg-amber-surface border-amber-border text-amber-fg;\n }\n\n .dx-callout[data-hue='yellow'],\n :where([data-hue='yellow']) .dx-callout,\n .dx-callout--yellow {\n @apply bg-yellow-surface border-yellow-border text-yellow-fg;\n }\n\n .dx-callout[data-hue='lime'],\n :where([data-hue='lime']) .dx-callout,\n .dx-callout--lime {\n @apply bg-lime-surface border-lime-border text-lime-fg;\n }\n\n .dx-callout[data-hue='green'],\n :where([data-hue='green']) .dx-callout,\n .dx-callout--green {\n @apply bg-green-surface border-green-border text-green-fg;\n }\n\n .dx-callout[data-hue='emerald'],\n :where([data-hue='emerald']) .dx-callout,\n .dx-callout--emerald {\n @apply bg-emerald-surface border-emerald-border text-emerald-fg;\n }\n\n .dx-callout[data-hue='teal'],\n :where([data-hue='teal']) .dx-callout,\n .dx-callout--teal {\n @apply bg-teal-surface border-teal-border text-teal-fg;\n }\n\n .dx-callout[data-hue='cyan'],\n :where([data-hue='cyan']) .dx-callout,\n .dx-callout--cyan {\n @apply bg-cyan-surface border-cyan-border text-cyan-fg;\n }\n\n .dx-callout[data-hue='sky'],\n :where([data-hue='sky']) .dx-callout,\n .dx-callout--sky {\n @apply bg-sky-surface border-sky-border text-sky-fg;\n }\n\n .dx-callout[data-hue='blue'],\n :where([data-hue='blue']) .dx-callout,\n .dx-callout--blue {\n @apply bg-blue-surface border-blue-border text-blue-fg;\n }\n\n .dx-callout[data-hue='indigo'],\n :where([data-hue='indigo']) .dx-callout,\n .dx-callout--indigo {\n @apply bg-indigo-surface border-indigo-border text-indigo-fg;\n }\n\n .dx-callout[data-hue='violet'],\n :where([data-hue='violet']) .dx-callout,\n .dx-callout--violet {\n @apply bg-violet-surface border-violet-border text-violet-fg;\n }\n\n .dx-callout[data-hue='purple'],\n :where([data-hue='purple']) .dx-callout,\n .dx-callout--purple {\n @apply bg-purple-surface border-purple-border text-purple-fg;\n }\n\n .dx-callout[data-hue='fuchsia'],\n :where([data-hue='fuchsia']) .dx-callout,\n .dx-callout--fuchsia {\n @apply bg-fuchsia-surface border-fuchsia-border text-fuchsia-fg;\n }\n\n .dx-callout[data-hue='pink'],\n :where([data-hue='pink']) .dx-callout,\n .dx-callout--pink {\n @apply bg-pink-surface border-pink-border text-pink-fg;\n }\n\n .dx-callout[data-hue='rose'],\n :where([data-hue='rose']) .dx-callout,\n .dx-callout--rose {\n @apply bg-rose-surface border-rose-border text-rose-fg;\n }\n\n .dx-callout[data-hue='info'],\n :where([data-hue='info']) .dx-callout,\n .dx-callout--info {\n @apply bg-info-surface border-info-border text-info-fg;\n }\n\n .dx-callout[data-hue='success'],\n :where([data-hue='success']) .dx-callout,\n .dx-callout--success {\n @apply bg-success-surface border-success-border text-success-fg;\n }\n\n .dx-callout[data-hue='warning'],\n :where([data-hue='warning']) .dx-callout,\n .dx-callout--warning {\n @apply bg-warning-surface border-warning-border text-warning-fg;\n }\n\n .dx-callout[data-hue='error'],\n :where([data-hue='error']) .dx-callout,\n .dx-callout--error {\n @apply bg-error-surface border-error-border text-error-fg;\n }\n}\n", "/**\n * Link component styles.\n */\n\n@layer dx-components {\n .dx-link {\n @apply text-accent-text hover:text-accent-text-hover cursor-pointer;\n }\n .dx-link-hover {\n @apply hover:text-accent-text-hover! cursor-pointer;\n }\n}\n", "/**\n * Scrolling \n * Pseudo-classes are not supported by Tailwind.\n */\n\n@layer dx-components {\n ::-webkit-scrollbar-thumb:hover {\n @apply bg-scrollbar-thumb-hover!;\n }\n ::-webkit-scrollbar-thumb:active {\n @apply bg-scrollbar-thumb-active!;\n }\n\n .dx-scrollbar-thin::-webkit-scrollbar {\n @apply w-[4px];\n }\n .dx-scrollbar-thin::-webkit-scrollbar-thumb {\n @apply bg-transparent;\n transition: background 0.15s;\n }\n .dx-scrollbar-thin:hover::-webkit-scrollbar-thumb {\n @apply bg-scrollbar-thumb;\n }\n}\n", "/**\n * Selected / Current / Highlighted state utilities.\n *\n * See `./state.md` for the ARIA pairing grammar \u2014 every class below\n * fires off a specific attribute and silently does nothing without it.\n */\n\n@layer dx-components {\n /*\n * Pure visual affordance, no ARIA pair. Combine with dx-selected or dx-current.\n *\n * Picks the hover variant matching the element's underlying state:\n * - neither aria-selected nor aria-current \u2192 hover-surface\n * - aria-selected=\"true\" \u2192 selected-surface-hover\n * - aria-current=\"true\" \u2192 current-surface-hover (wins if both)\n *\n * Higher-specificity rules (attribute selectors) override the plain :hover rule,\n * and `aria-current` is listed last so it beats `aria-selected` at equal specificity.\n */\n .dx-hover {\n @apply cursor-pointer\n hover:bg-hover-surface-subtle! hover:text-hover-fg!\n hover:aria-selected:bg-selected-surface-hover hover:aria-selected:text-selected-fg\n hover:aria-[current=true]:bg-current-surface-hover hover:aria-[current=true]:text-current-fg;\n }\n\n /*\n * Pairs with `aria-selected`. Use for listbox/option selection (master/detail).\n * `!` is required: these utilities live in the `dx-components` layer, but\n * background utilities like `bg-card-surface` live in Tailwind's\n * `utilities` layer (declared later in the cascade), so without\n * `!important` the card background would override the state colour.\n *\n * NOTE: Declared before `.dx-current` so that when an element has both\n * `aria-selected=\"true\"` and `aria-current=\"true\"`, `dx-current` wins at\n * equal specificity (consistent with how `dx-hover` resolves the same\n * conflict).\n */\n .dx-selected {\n @apply aria-selected:bg-selected-surface! aria-selected:text-selected-fg!\n aria-selected:font-semibold aria-selected:tracking-normal\n transition-[color,font-variation-settings,letter-spacing];\n }\n\n /*\n * Pairs with `aria-current=\"true|page|\u2026\"`. Use for \"you are here\" navigation.\n *\n * The ring uses the subdued focus indicator (neutral) rather than the\n * accent blue \u2014 `dx-current` marks position, not focus, so a saturated\n * ring would compete with the actual keyboard focus ring.\n */\n .dx-current {\n @apply dx-ring-pseudo\n aria-[current=true]:bg-current-surface! aria-[current=true]:text-current-fg!\n aria-[current=true]:after:ring-focus-ring-subtle!;\n }\n\n /*\n * Pairs with Radix-managed `data-highlighted`. Don't set the attribute manually.\n */\n .dx-highlighted {\n @apply data-[highlighted]:bg-current-surface\n data-[highlighted]:text-current-fg\n hover:data-[highlighted]:bg-current-surface-hover;\n }\n}\n", "/**\n * Surfaces\n *\n * A surface zone paints a background AND publishes its colour as `--surface-bg`, so descendant\n * aspects (bar, well, hover, current, selected) derive from the actual surface and stay visible at\n * any elevation, and surface-matching elements (avatars, gradients) can read it directly.\n *\n * Enter a zone with `data-surface=\"<level>\"` \u2014 the levels are the ladder in `theme/surfaces.css`.\n * The `dx-*-surface` classes are role-named aliases of the same thing, kept because they read well\n * at call sites (`dx-card-surface` says more than `data-surface=\"raised\"`).\n *\n * A bare `bg-*-surface` utility paints the colour but does NOT publish `--surface-bg`, so every\n * aspect inside it collapses onto the base-surface fallback \u2014 never use one to enter a zone.\n */\n\n@layer dx-components {\n /* The outer rails sit at the same depth as the deck gaps: they frame the panels rather than\n belonging to them, so L0/R0 read one step behind the L1/R1 sidebars they flank. */\n [data-surface='sunken'],\n .dx-deck-surface {\n --surface-bg: var(--dx-surface-sunken);\n }\n\n [data-surface='chrome'],\n .dx-sidebar-surface,\n .dx-header-surface {\n --surface-bg: var(--dx-surface-chrome);\n }\n\n /* The rails are not levels: they carry their own tone per theme (see surfaces.css). */\n .dx-l0-surface,\n .dx-r0-surface {\n --surface-bg: var(--color-l0-surface);\n }\n\n .dx-l1-surface,\n .dx-r1-surface {\n --surface-bg: var(--color-l1-surface);\n }\n\n [data-surface='base'],\n .dx-base-surface,\n .dx-attention-surface {\n --surface-bg: var(--dx-surface-base);\n }\n\n [data-surface='raised'],\n .dx-card-surface {\n --surface-bg: var(--dx-surface-raised);\n }\n\n [data-surface='overlay'],\n .dx-modal-surface {\n --surface-bg: var(--dx-surface-overlay);\n }\n\n [data-surface='popup'],\n .dx-popover-surface {\n --surface-bg: var(--dx-surface-popup);\n }\n\n /*\n * Aspect zones. These do not pick a level \u2014 they take a step off whatever hosts them and then\n * republish that as `--surface-bg`, so a control inside a toolbar or a well derives its own\n * states from the aspect rather than from the level underneath it.\n */\n [data-surface='bar'],\n .dx-toolbar-surface {\n --surface-bg: var(--color-toolbar-surface);\n }\n\n [data-surface='well'],\n .dx-group-surface,\n .dx-input-surface {\n --surface-bg: var(--color-group-surface);\n }\n\n /* Every zone paints its published surface and takes the default ink. */\n [data-surface],\n .dx-deck-surface,\n .dx-sidebar-surface,\n .dx-header-surface,\n .dx-l0-surface,\n .dx-l1-surface,\n .dx-r0-surface,\n .dx-r1-surface,\n .dx-base-surface,\n .dx-attention-surface,\n .dx-card-surface,\n .dx-modal-surface,\n .dx-popover-surface,\n .dx-toolbar-surface,\n .dx-group-surface,\n .dx-input-surface {\n background-color: var(--surface-bg);\n @apply text-base-fg;\n }\n\n /* Floating levels frost whatever passes beneath them. */\n [data-surface='overlay'],\n [data-surface='popup'],\n .dx-modal-surface,\n .dx-popover-surface {\n @apply backdrop-blur-md;\n }\n}\n\n@layer dx-tokens {\n /*\n * Aspect derivation. Custom-property substitution runs once per scope, so the formulas must be\n * re-evaluated wherever `--surface-bg` changes \u2014 these two blocks are that one place\n * (surfaces.css declares the same formulas against the root fallback, for content outside any\n * zone). Keep the offsets in sync with the Aspects block there.\n *\n * States re-derive in EVERY zone, including the aspect zones: a row inside a toolbar should\n * highlight against the toolbar, not against the level beneath it.\n */\n [data-surface],\n .dx-deck-surface,\n .dx-sidebar-surface,\n .dx-header-surface,\n .dx-l0-surface,\n .dx-l1-surface,\n .dx-r0-surface,\n .dx-r1-surface,\n .dx-base-surface,\n .dx-attention-surface,\n .dx-card-surface,\n .dx-modal-surface,\n .dx-popover-surface,\n .dx-toolbar-surface,\n .dx-group-surface,\n .dx-input-surface,\n .dx-input,\n .dx-main-sidebar {\n --color-hover-surface: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.08) c h\n );\n --color-hover-surface-subtle: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.02) c h\n );\n --color-current-surface: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.1) c h\n );\n --color-current-surface-hover: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-state) * 0.12) c h\n );\n --color-placeholder: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-placeholder) * 0.3) c h\n );\n --color-scrollbar-thumb: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-scrollbar) * 0.23) c h\n );\n --color-scrollbar-thumb-hover: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-scrollbar) * 0.3) c h\n );\n --color-scrollbar-thumb-active: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-scrollbar) * 0.34) c h\n );\n --color-separator: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-separator-line) * 0.166) c h\n );\n --color-input-separator: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-separator) * 0.115) c h\n );\n --color-subdued-separator: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-separator) * 0.089) c h\n );\n --color-primary-separator: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-separator) * 0.064) c h\n );\n\n /*\n * Aliases must be re-declared, not inherited: a `--color-x: var(--color-y)` alias substitutes\n * at the scope that DECLARES it, so one written only at `:root` freezes to the root value and\n * ignores the zone it is used in.\n */\n --color-selected-surface: var(--color-current-surface);\n --color-selected-surface-hover: var(--color-current-surface-hover);\n }\n\n /*\n * Bar and well re-derive only in LEVEL zones. Deriving them inside an aspect zone would be\n * circular \u2014 that zone's own `--surface-bg` is defined *from* one of these tokens \u2014 so a bar\n * nested in a bar keeps the outer step rather than compounding.\n */\n [data-surface='sunken'],\n [data-surface='chrome'],\n [data-surface='base'],\n [data-surface='raised'],\n [data-surface='overlay'],\n [data-surface='popup'],\n .dx-deck-surface,\n .dx-sidebar-surface,\n .dx-header-surface,\n .dx-l0-surface,\n .dx-l1-surface,\n .dx-r0-surface,\n .dx-r1-surface,\n .dx-base-surface,\n .dx-attention-surface,\n .dx-card-surface,\n .dx-modal-surface,\n .dx-popover-surface,\n .dx-main-sidebar {\n --color-toolbar-surface: oklch(\n from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-bar) * 0.025) c h\n );\n --color-group-surface: oklch(from var(--surface-bg) calc(l + var(--dx-lift) * var(--dx-attenuate-well) * 0.05) c h);\n --color-group-alt-surface: oklch(from var(--surface-bg) calc(l + var(--dx-lift) * 0.08) c h);\n\n /* Re-declared for the same reason as the state aliases above. */\n --color-input-surface: var(--color-group-surface);\n --color-focus-surface: var(--color-group-surface);\n }\n}\n", "/**\n * Tag\n */\n\n@layer dx-components {\n .dx-tag {\n @apply inline-block text-xs font-semibold m-0.5 px-1 rounded-sm cursor-default truncate;\n padding-block: var(--spacing-tag-padding-block);\n user-select: none;\n }\n\n .dx-tag--anchor {\n /* NOTE: Margin offsets padding so that border is flush with text. This should only apply to anchor tags inside of Codemirror. */\n @apply inline-block cursor-pointer px-[8px];\n /* \n * Vertical padding on an inline-block grows the line box, so a line carrying a chip would be\n * taller than its neighbours. The negative margin cancels that contribution, keeping editor\n * rows a uniform height whether or not an item has been converted to a link.\n */\n padding-block: 2px;\n margin-block: -2px;\n /* \n * `inline-block` makes this a block container, so an inherited hanging indent \n * (list rows set a negative `text-indent`) would shift the label out of its own box. \n */\n text-indent: 0;\n /** TODO(burdon): Configure secondary color. */\n @apply bg-input-surface ring-inset ring ring-neutral-border rounded-sm;\n &:hover {\n @apply bg-hover-surface;\n }\n }\n\n .dx-tag[data-hue='neutral'],\n .dx-tag--neutral {\n @apply bg-neutral-surface text-neutral-fg;\n }\n\n .dx-tag[data-hue='red'],\n .dx-tag--red {\n @apply bg-red-surface text-red-fg;\n }\n\n .dx-tag[data-hue='orange'],\n .dx-tag--orange {\n @apply bg-orange-surface text-orange-fg;\n }\n\n .dx-tag[data-hue='amber'],\n .dx-tag--amber {\n @apply bg-amber-surface text-amber-fg;\n }\n\n .dx-tag[data-hue='yellow'],\n .dx-tag--yellow {\n @apply bg-yellow-surface text-yellow-fg;\n }\n\n .dx-tag[data-hue='lime'],\n .dx-tag--lime {\n @apply bg-lime-surface text-lime-fg;\n }\n\n .dx-tag[data-hue='green'],\n .dx-tag--green {\n @apply bg-green-surface text-green-fg;\n }\n\n .dx-tag[data-hue='emerald'],\n .dx-tag--emerald {\n @apply bg-emerald-surface text-emerald-fg;\n }\n\n .dx-tag[data-hue='teal'],\n .dx-tag--teal {\n @apply bg-teal-surface text-teal-fg;\n }\n\n .dx-tag[data-hue='cyan'],\n .dx-tag--cyan {\n @apply bg-cyan-surface text-cyan-fg;\n }\n\n .dx-tag[data-hue='sky'],\n .dx-tag--sky {\n @apply bg-sky-surface text-sky-fg;\n }\n\n .dx-tag[data-hue='blue'],\n .dx-tag--blue {\n @apply bg-blue-surface text-blue-fg;\n }\n\n .dx-tag[data-hue='indigo'],\n .dx-tag--indigo {\n @apply bg-indigo-surface text-indigo-fg;\n }\n\n .dx-tag[data-hue='violet'],\n .dx-tag--violet {\n @apply bg-violet-surface text-violet-fg;\n }\n\n .dx-tag[data-hue='purple'],\n .dx-tag--purple {\n @apply bg-purple-surface text-purple-fg;\n }\n\n .dx-tag[data-hue='fuchsia'],\n .dx-tag--fuchsia {\n @apply bg-fuchsia-surface text-fuchsia-fg;\n }\n\n .dx-tag[data-hue='pink'],\n .dx-tag--pink {\n @apply bg-pink-surface text-pink-fg;\n }\n\n .dx-tag[data-hue='rose'],\n .dx-tag--rose {\n @apply bg-rose-surface text-rose-fg;\n }\n\n .dx-tag[data-hue='info'],\n .dx-tag--info {\n @apply bg-cyan-surface text-cyan-fg;\n }\n\n .dx-tag[data-hue='success'],\n .dx-tag--success {\n @apply bg-emerald-surface text-emerald-fg;\n }\n\n .dx-tag[data-hue='warning'],\n .dx-tag--warning {\n @apply bg-amber-surface text-amber-fg;\n }\n\n .dx-tag[data-hue='error'],\n .dx-tag--error {\n @apply bg-rose-surface text-rose-fg;\n }\n}\n", "/**\n * Text\n * Example: <span className='dx-text' data-hue={getHashHue(object.id)}>\n */\n\n@layer dx-components {\n /*\n * System\n */\n\n .dx-text[data-hue='info'],\n .dx-text--info {\n @apply text-cyan-text;\n }\n\n .dx-text[data-hue='success'],\n .dx-text--success {\n @apply text-emerald-text;\n }\n\n .dx-text[data-hue='warning'],\n .dx-text--warning {\n @apply text-amber-text;\n }\n\n .dx-text[data-hue='error'],\n .dx-text--error {\n @apply text-rose-text;\n }\n\n /*\n * Colors\n */\n\n .dx-text[data-hue='neutral'],\n .dx-text--neutral {\n @apply text-neutral-text;\n }\n\n .dx-text[data-hue='red'],\n .dx-text--red {\n @apply text-red-text;\n }\n\n .dx-text[data-hue='orange'],\n .dx-text--orange {\n @apply text-orange-text;\n }\n\n .dx-text[data-hue='amber'],\n .dx-text--amber {\n @apply text-amber-text;\n }\n\n .dx-text[data-hue='yellow'],\n .dx-text--yellow {\n @apply text-yellow-text;\n }\n\n .dx-text[data-hue='lime'],\n .dx-text--lime {\n @apply text-lime-text;\n }\n\n .dx-text[data-hue='green'],\n .dx-text--green {\n @apply text-green-text;\n }\n\n .dx-text[data-hue='emerald'],\n .dx-text--emerald {\n @apply text-emerald-text;\n }\n\n .dx-text[data-hue='teal'],\n .dx-text--teal {\n @apply text-teal-text;\n }\n\n .dx-text[data-hue='cyan'],\n .dx-text--cyan {\n @apply text-cyan-text;\n }\n\n .dx-text[data-hue='sky'],\n .dx-text--sky {\n @apply text-sky-text;\n }\n\n .dx-text[data-hue='blue'],\n .dx-text--blue {\n @apply text-blue-text;\n }\n\n .dx-text[data-hue='indigo'],\n .dx-text--indigo {\n @apply text-indigo-text;\n }\n\n .dx-text[data-hue='violet'],\n .dx-text--violet {\n @apply text-violet-text;\n }\n\n .dx-text[data-hue='purple'],\n .dx-text--purple {\n @apply text-purple-text;\n }\n\n .dx-text[data-hue='fuchsia'],\n .dx-text--fuchsia {\n @apply text-fuchsia-text;\n }\n\n .dx-text[data-hue='pink'],\n .dx-text--pink {\n @apply text-pink-text;\n }\n\n .dx-text[data-hue='rose'],\n .dx-text--rose {\n @apply text-rose-text;\n }\n}\n", "/**\n * Main\n */\n\n@layer dx-components {\n /**\n * Main Web app.\n */\n .dx-main-bounce-layout {\n @apply fixed overflow-auto overscroll-auto;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n transition-property: padding-inline-start, padding-inline-end, scroll-padding-start, scroll-padding-end;\n inset-inline-start: 0;\n inset-inline-end: 0;\n inset-block-start: 0;\n inset-block-end: 0;\n z-index: 0;\n }\n\n /** TODO(burdon): Reconcile with dx-main-bounce-layout */\n .dx-main-content-padding-transitions {\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n transition-property: padding-inline-start, padding-inline-end, scroll-padding-start, scroll-padding-end;\n }\n\n /**\n *\n */\n .dx-main-intrinsic-size {\n inline-size: calc(100dvw - 2 * var(--main-spacing));\n transition-property: inline-size;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n\n @media (width >= theme(--breakpoint-lg)) {\n &[data-sidebar-left-state='closed'][data-sidebar-right-state='closed'] {\n inline-size: calc(100dvw - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='collapsed'][data-sidebar-right-state='closed'] {\n inline-size: calc(100dvw - var(--dx-l0-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='expanded'][data-sidebar-right-state='closed'] {\n inline-size: calc(100dvw - var(--dx-nav-sidebar-size) - 2 * var(--main-spacing));\n }\n\n &[data-sidebar-left-state='closed'][data-sidebar-right-state='collapsed'] {\n inline-size: calc(100dvw - var(--dx-r0-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='collapsed'][data-sidebar-right-state='collapsed'] {\n inline-size: calc(100dvw - var(--dx-l0-size) - var(--dx-r0-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='expanded'][data-sidebar-right-state='collapsed'] {\n inline-size: calc(100dvw - var(--dx-nav-sidebar-size) - var(--dx-r0-size) - 2 * var(--main-spacing));\n }\n\n &[data-sidebar-left-state='closed'][data-sidebar-right-state='expanded'] {\n inline-size: calc(100dvw - var(--dx-complementary-sidebar-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='collapsed'][data-sidebar-right-state='expanded'] {\n inline-size: calc(100dvw - var(--dx-l0-size) - var(--dx-complementary-sidebar-size) - 2 * var(--main-spacing));\n }\n &[data-sidebar-left-state='expanded'][data-sidebar-right-state='expanded'] {\n inline-size: calc(\n 100dvw - var(--dx-nav-sidebar-size) - var(--dx-complementary-sidebar-size) - 2 * var(--main-spacing)\n );\n }\n }\n }\n}\n\n@layer dx-components {\n .dx-main-sidebar {\n @apply fixed overscroll-contain overflow-x-hidden overflow-y-auto;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n @apply border-primary-separator rounded-md;\n @apply backdrop-blur-md;\n .dark & {\n @apply backdrop-blur-lg;\n }\n /*\n * The sidebars ARE L1/R1 \u2014 nothing else applies `dx-l1-surface`, so this is where those tokens\n * have to land or they have no effect at all. Aspect derivation for the subtree keys off\n * `--surface-bg` (see surface.css); the chrome default covers a sidebar rendered without a side.\n */\n --surface-bg: var(--dx-surface-chrome);\n background-color: var(--surface-bg);\n\n &[data-side='is'] {\n --surface-bg: var(--color-l1-surface);\n\n /* Collapsed, the sidebar is exactly the rail's width and the rail overlays it, so the only\n pixels that show are the rail's own. Wearing the rail's tone keeps the edges and the rail's\n border from revealing a second surface behind it. */\n &[data-state='collapsed'] {\n --surface-bg: var(--color-l0-surface);\n }\n }\n\n &[data-side='ie'] {\n --surface-bg: var(--color-r1-surface);\n\n &[data-state='collapsed'] {\n --surface-bg: var(--color-r0-surface);\n }\n }\n color: var(--color-sidebar-fg);\n\n /* Current / selected items read one stop brighter than default body text. */\n & :is([aria-current]:not([aria-current='false']), [aria-selected='true']) {\n color: var(--color-sidebar-current-fg);\n }\n\n transition-property: inset-inline-start, inset-inline-end, inline-size;\n inset-block-start: max(0.5rem, env(safe-area-inset-top));\n inset-block-end: max(0.5rem, env(safe-area-inset-bottom));\n inline-size: calc(100dvw - 3rem);\n z-index: 7;\n\n @media (width >= theme(--breakpoint-lg)) {\n @apply top-0 bottom-0 rounded-none border-y-0;\n }\n\n &[data-resizing='false'] {\n @apply duration-200;\n }\n\n &[data-side='is'] {\n @apply -start-[100vw] border-e;\n border-inline-end-width: var(--border-width-landmark-line) !important;\n border-inline-end-style: solid;\n z-index: 8;\n\n &[data-state='expanded'] {\n inset-inline-start: max(0.5rem, env(safe-area-inset-left));\n @media (width >= theme(--breakpoint-lg)) {\n @apply start-0;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n @apply w-(--dx-nav-sidebar-size);\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n border-inline-start-width: 0;\n border-inline-end-width: 0;\n\n &[data-state='collapsed'] {\n @apply w-(--dx-l0-size) start-0;\n }\n &[data-state='expanded'] {\n @apply w-(--dx-nav-sidebar-size);\n }\n }\n }\n\n &[data-side='ie'] {\n @apply -end-[100vw] border-s;\n border-inline-start-width: var(--border-width-landmark-line);\n border-inline-start-style: solid;\n\n &[data-state='expanded'] {\n inset-inline-end: max(0.5rem, env(safe-area-inset-right));\n @media (width >= theme(--breakpoint-lg)) {\n @apply end-0;\n }\n }\n\n @media (width >= theme(--breakpoint-sm)) {\n @apply w-(--dx-complementary-sidebar-size);\n }\n\n @media (width >= theme(--breakpoint-lg)) {\n border-inline-end-width: 0;\n\n &[data-state='collapsed'] {\n @apply w-(--dx-r0-size) end-0;\n }\n &[data-state='expanded'] {\n @apply w-(--dx-complementary-sidebar-size);\n }\n }\n }\n }\n\n .dx-main-overlay {\n @apply fixed inset-0 bg-scrim-surface;\n transition-property: opacity;\n transition-duration: 200ms;\n transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n @apply opacity-0 hidden;\n z-index: 6;\n\n &[data-state='open'] {\n @apply opacity-100 block;\n\n @media (width >= theme(--breakpoint-lg)) {\n @apply opacity-100 hidden;\n }\n }\n }\n\n /**\n * Main content padding.\n */\n .dx-main-content-padding {\n padding-inline-start: 0;\n scroll-padding-inline-start: 0;\n padding-inline-end: 0;\n scroll-padding-inline-end: 0;\n\n @media (width >= theme(--breakpoint-lg)) {\n &[data-sidebar-left-state='collapsed'] {\n padding-inline-start: var(--dx-l0-size);\n scroll-padding-inline-start: var(--dx-l0-size);\n }\n &[data-sidebar-left-state='expanded'] {\n padding-inline-start: var(--dx-nav-sidebar-size);\n scroll-padding-inline-start: var(--dx-nav-sidebar-size);\n }\n\n &[data-sidebar-right-state='collapsed'] {\n padding-inline-end: var(--dx-r0-size);\n scroll-padding-inline-end: var(--dx-r0-size);\n }\n &[data-sidebar-right-state='expanded'] {\n padding-inline-end: var(--dx-complementary-sidebar-size);\n scroll-padding-inline-end: var(--dx-complementary-sidebar-size);\n }\n }\n }\n}\n", "/**\n * Native app\n */\n\n@layer dx-components {\n /**\n * Native app drag regions.\n * For Tauri apps, the data-tauri-drag-region attribute is applied\n * automatically by plugin-native (Tauri doesn't support -webkit-app-region).\n * The CSS properties below are for Electron/PWA compatibility.\n */\n .dx-app-drag {\n user-select: none;\n -webkit-user-select: none;\n -webkit-app-region: drag;\n --app-region: drag;\n }\n\n .dx-app-no-drag {\n -webkit-app-region: no-drag;\n --app-region: no-drag;\n }\n}\n", "/**\n * Positioning\n */\n\n@layer dx-components {\n .dx-contain-layout {\n contain: layout;\n }\n\n .dx-sticky-top-0 {\n --sticky-top: 0;\n }\n .dx-sticky-top-from-topbar-bottom {\n --sticky-top: var(--dx-topbar-size);\n }\n .dx-sticky-bottom-from-statusbar-bottom {\n --sticky-bottom: var(--dx-statusbar-size);\n }\n}\n", "/**\n * Sizes\n */\n\n@layer dx-components {\n /**\n * Registers the element as a size query container.\n * Children can use @container queries to apply styles based on the container's dimensions (both width and height).\n * Also enables children to use cqi/cqb units (e.g., max-w-[100cqi]).\n * NOTE: `container-type: size` implies layout/size containment, which breaks CodeMirror's\n * coordinate measurement (causes blank viewport sections during scroll until a click forces\n * a re-measure). For editor content where only inline (width-based) queries are needed,\n * use `.dx-inline-size-container` instead.\n */\n .dx-size-container {\n container-type: size;\n }\n\n /**\n * Inline-only size query container. Provides cqi units for children without the layout\n * containment side-effects of `container-type: size`. Use this in CodeMirror content\n * wrappers where size containment would break viewport measurement.\n */\n .dx-inline-size-container {\n container-type: inline-size;\n }\n\n /**\n * Document width.\n */\n .dx-document {\n @apply mx-auto w-full max-w-document-max-width;\n }\n\n /**\n * Card\n */\n\n .dx-card {\n @apply flex flex-col w-full;\n }\n\n .dx-card-square {\n inline-size: min(\n min(var(--radix-popper-available-width), var(--spacing-card-max-width)),\n min(var(--radix-popper-available-height), 100dvh)\n );\n block-size: min(\n min(var(--radix-popper-available-width), var(--spacing-card-max-width)),\n min(var(--radix-popper-available-height), 100dvh)\n );\n }\n\n .dx-card-default-width {\n @apply w-card-default-width;\n }\n\n .dx-card-min-width {\n @apply min-w-card-min-width;\n }\n\n .dx-card-max-width {\n @apply w-full max-w-card-max-width;\n }\n\n .dx-card-popover {\n @apply inline-card-max-width bg-popover-surface;\n max-width: min(var(--radix-popper-available-width), var(--spacing-card-max-width));\n max-height: min(var(--radix-popper-available-height), var(--spacing-card-max-height));\n }\n}\n\n@layer dx-components {\n /* Block size */\n [data-size='0'],\n [data-block-size='0'] {\n @apply h-0;\n }\n\n [data-size='px'],\n [data-block-size='px'] {\n @apply h-px;\n }\n\n [data-size='0.5'],\n [data-block-size='0.5'] {\n @apply h-0.5;\n }\n\n [data-size='1'],\n [data-block-size='1'] {\n @apply h-1;\n }\n\n [data-size='1.5'],\n [data-block-size='1.5'] {\n @apply h-1.5;\n }\n\n [data-size='2'],\n [data-block-size='2'] {\n @apply h-2;\n }\n\n [data-size='2.5'],\n [data-block-size='2.5'] {\n @apply h-2.5;\n }\n\n [data-size='3'],\n [data-block-size='3'] {\n @apply h-3;\n }\n\n [data-size='3.5'],\n [data-block-size='3.5'] {\n @apply h-3.5;\n }\n\n [data-size='4'],\n [data-block-size='4'] {\n @apply h-4;\n }\n\n [data-size='5'],\n [data-block-size='5'] {\n @apply h-5;\n }\n\n [data-size='6'],\n [data-block-size='6'] {\n @apply h-6;\n }\n\n [data-size='7'],\n [data-block-size='7'] {\n @apply h-7;\n }\n\n [data-size='8'],\n [data-block-size='8'] {\n @apply h-8;\n }\n\n [data-size='9'],\n [data-block-size='9'] {\n @apply h-9;\n }\n\n [data-size='10'],\n [data-block-size='10'] {\n @apply h-10;\n }\n\n [data-size='11'],\n [data-block-size='11'] {\n @apply h-11;\n }\n\n [data-size='12'],\n [data-block-size='12'] {\n @apply h-12;\n }\n\n [data-size='14'],\n [data-block-size='14'] {\n @apply h-14;\n }\n\n [data-size='16'],\n [data-block-size='16'] {\n @apply h-16;\n }\n\n [data-size='20'],\n [data-block-size='20'] {\n @apply h-20;\n }\n\n [data-size='24'],\n [data-block-size='24'] {\n @apply h-24;\n }\n\n [data-size='28'],\n [data-block-size='28'] {\n @apply h-28;\n }\n\n [data-size='32'],\n [data-block-size='32'] {\n @apply h-32;\n }\n\n [data-size='36'],\n [data-block-size='36'] {\n @apply h-36;\n }\n\n [data-size='40'],\n [data-block-size='40'] {\n @apply h-40;\n }\n\n [data-size='44'],\n [data-block-size='44'] {\n @apply h-44;\n }\n\n [data-size='48'],\n [data-block-size='48'] {\n @apply h-48;\n }\n\n [data-size='52'],\n [data-block-size='52'] {\n @apply h-52;\n }\n\n [data-size='56'],\n [data-block-size='56'] {\n @apply h-56;\n }\n\n [data-size='60'],\n [data-block-size='60'] {\n @apply h-60;\n }\n\n [data-size='64'],\n [data-block-size='64'] {\n @apply h-64;\n }\n\n [data-size='72'],\n [data-block-size='72'] {\n @apply h-72;\n }\n\n [data-size='80'],\n [data-block-size='80'] {\n @apply h-80;\n }\n\n [data-size='96'],\n [data-block-size='96'] {\n @apply h-96;\n }\n\n /* Inline size */\n [data-size='0'],\n [data-inline-size='0'] {\n @apply w-0;\n }\n\n [data-size='px'],\n [data-inline-size='px'] {\n @apply w-px;\n }\n\n [data-size='0.5'],\n [data-inline-size='0.5'] {\n @apply w-0.5;\n }\n\n [data-size='1'],\n [data-inline-size='1'] {\n @apply w-1;\n }\n\n [data-size='1.5'],\n [data-inline-size='1.5'] {\n @apply w-1.5;\n }\n\n [data-size='2'],\n [data-inline-size='2'] {\n @apply w-2;\n }\n\n [data-size='2.5'],\n [data-inline-size='2.5'] {\n @apply w-2.5;\n }\n\n [data-size='3'],\n [data-inline-size='3'] {\n @apply w-3;\n }\n\n [data-size='3.5'],\n [data-inline-size='3.5'] {\n @apply w-3.5;\n }\n\n [data-size='4'],\n [data-inline-size='4'] {\n @apply w-4;\n }\n\n [data-size='5'],\n [data-inline-size='5'] {\n @apply w-5;\n }\n\n [data-size='6'],\n [data-inline-size='6'] {\n @apply w-6;\n }\n\n [data-size='7'],\n [data-inline-size='7'] {\n @apply w-7;\n }\n\n [data-size='8'],\n [data-inline-size='8'] {\n @apply w-8;\n }\n\n [data-size='9'],\n [data-inline-size='9'] {\n @apply w-9;\n }\n\n [data-size='10'],\n [data-inline-size='10'] {\n @apply w-10;\n }\n\n [data-size='11'],\n [data-inline-size='11'] {\n @apply w-11;\n }\n\n [data-size='12'],\n [data-inline-size='12'] {\n @apply w-12;\n }\n\n [data-size='14'],\n [data-inline-size='14'] {\n @apply w-14;\n }\n\n [data-size='16'],\n [data-inline-size='16'] {\n @apply w-16;\n }\n\n [data-size='20'],\n [data-inline-size='20'] {\n @apply w-20;\n }\n\n [data-size='24'],\n [data-inline-size='24'] {\n @apply w-24;\n }\n\n [data-size='28'],\n [data-inline-size='28'] {\n @apply w-28;\n }\n\n [data-size='32'],\n [data-inline-size='32'] {\n @apply w-32;\n }\n\n [data-size='36'],\n [data-inline-size='36'] {\n @apply w-36;\n }\n\n [data-size='40'],\n [data-inline-size='40'] {\n @apply w-40;\n }\n\n [data-size='44'],\n [data-inline-size='44'] {\n @apply w-44;\n }\n\n [data-size='48'],\n [data-inline-size='48'] {\n @apply w-48;\n }\n\n [data-size='52'],\n [data-inline-size='52'] {\n @apply w-52;\n }\n\n [data-size='56'],\n [data-inline-size='56'] {\n @apply w-56;\n }\n\n [data-size='60'],\n [data-inline-size='60'] {\n @apply w-60;\n }\n\n [data-size='64'],\n [data-inline-size='64'] {\n @apply w-64;\n }\n\n [data-size='72'],\n [data-inline-size='72'] {\n @apply w-72;\n }\n\n [data-size='80'],\n [data-inline-size='80'] {\n @apply w-80;\n }\n\n [data-size='96'],\n [data-inline-size='96'] {\n @apply w-96;\n }\n}\n", "/**\n * Tailwind utility classes.\n */\n\n/**\n * Layout rules for flex-based scroll containment:\n * `flex flex-col`\n * On a container: makes it a flex column so children stack and can use `flex-1`.\n * `flex-1`\n * On a child: grows to fill the flex parent. Requires the parent to be `flex`.\n * `min-h-0` (alongside `flex-1`):\n * Overrides default flex children: `min-height:auto` (sized to content), which prevents shrinking.\n * Allows element to shrink and trigger overflow/scrolling.\n * Always pair with `flex-1` when scroll is needed.\n * `h-full`:\n * Fills 100% of the parent's *computed* height.\n * Use when the parent has a definite height but is not a flex container (e.g. `overflow:hidden` wrapper).\n * Unlike `flex-1`, does not require the parent to be flex.\n *\n * Pattern for a scrollable region inside a flex ancestor:\n * ancestor \u2192 `flex flex-col` (or `flex flex-row`)\n * scroll root \u2192 `flex-1 min-h-0` (fills ancestor, can shrink)\n * scroll viewport \u2192 `h-full overflow-y-scroll` (fills root, scrolls)\n */\n\n/**\n * Fills the available space.\n */\n@utility dx-expander {\n @apply flex-1 min-h-0 min-w-0 h-full w-full;\n}\n\n/**\n * Container that fills the available space (extends dx-expander with overflow clipping).\n */\n@utility dx-container {\n @apply dx-expander overflow-hidden;\n}\n\n/**\n * Fullscreen\n */\n@utility dx-fullscreen {\n @apply absolute inset-0;\n}\n\n/**\n * Visual warning to indicate incorrect usage of `slottable` \u2014 an `asChild` whose child is not\n * composable, so Radix `Slot` silently drops the injected className and ref.\n *\n * An outline rather than a border: it is applied to the part's own element (not a wrapper), so it\n * must not consume layout space or fight a border the part already has. Dev builds only.\n */\n@utility dx-slot-warning {\n /* No layout box of its own: these parts live in grids and subgrids, where an extra element\n re-flows the layout \u2014 the diagnostic must not corrupt the thing it is diagnosing. */\n display: contents;\n\n & > * {\n outline: 2px dashed var(--color-rose-500);\n outline-offset: -2px;\n }\n}\n\n/**\n * Pseudo-element overlay for ring indicators (focus, current, etc.).\n *\n * A standard CSS `box-shadow` ring is painted behind child content, so children with\n * opaque backgrounds (e.g., cards, avatars) obscure it. By painting the ring on an\n * absolutely-positioned `::after` pseudo-element that sits above the element's children\n * in stacking order, the ring is always visible regardless of child backgrounds.\n *\n * The pseudo-element inherits `border-radius` from its parent and is `pointer-events-none`\n * so it doesn't interfere with interactions. The ring starts transparent; consumers\n * activate it conditionally (e.g., `focus:after:ring-*`, `aria-[current=true]:after:ring-*`).\n */\n@utility dx-ring-pseudo {\n @apply relative after:content-[\"\"] after:absolute after:inset-0 after:rounded-[inherit]\n after:pointer-events-none after:ring after:ring-inset after:ring-transparent;\n}\n\n/**\n * Shimmer text \u2014 animates opacity left \u2192 right across the contained text.\n * See @keyframes shimmer-text in theme/animation.css for the keyframe definition.\n * Geometry: mask-size 200% 100% with mask-repeat: repeat-x means each tile is\n * 2\u00D7 the element width; the keyframe slides mask-position-x by 200% (one full\n * tile period), giving a seamless loop. The 5-stop gradient (0.4 \u2192 1.0 \u2192 0.4)\n * produces a single bright pulse per cycle that traverses left \u2192 right during\n * the first half, with a brief calm interval during the second half.\n */\n@utility shimmer-text {\n mask-image: linear-gradient(\n 90deg,\n rgba(0, 0, 0, 0.4) 0%,\n rgba(0, 0, 0, 0.4) 30%,\n rgba(0, 0, 0, 1) 50%,\n rgba(0, 0, 0, 0.4) 70%,\n rgba(0, 0, 0, 0.4) 100%\n );\n -webkit-mask-image: linear-gradient(\n 90deg,\n rgba(0, 0, 0, 0.4) 0%,\n rgba(0, 0, 0, 0.4) 30%,\n rgba(0, 0, 0, 1) 50%,\n rgba(0, 0, 0, 0.4) 70%,\n rgba(0, 0, 0, 0.4) 100%\n );\n mask-size: 200% 100%;\n -webkit-mask-size: 200% 100%;\n mask-repeat: repeat-x;\n -webkit-mask-repeat: repeat-x;\n animation: shimmer-text 2s linear infinite;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .shimmer-text {\n animation: none;\n mask-image: none;\n -webkit-mask-image: none;\n opacity: 0.6;\n }\n}\n", "/**\n * CodeMirror\n * Uses @theme (not @layer) so Tailwind generates text-cm-* / bg-cm-* utility classes\n * consumed by ui-editor. Compare: tldraw.css uses @layer to map tokens onto tldraw's\n * own variables without generating utilities.\n * TODO(burdon): This could move into the ui-editor package (similar to graph.css).\n */\n\n/** TODO(burdon): Move to ui-editor */\n@theme {\n --color-cm-codeblock: oklch(from var(--color-neutral-500) l c h / 0.1);\n --color-cm-active-line: light-dark(\n oklch(from var(--color-neutral-200) l c h / 0.5),\n oklch(from var(--color-neutral-800) l c h / 0.5)\n );\n --color-cm-separator: var(--color-blue-500);\n --color-cm-cursor: light-dark(var(--color-neutral-900), var(--color-neutral-100));\n --color-cm-selection: light-dark(\n oklch(from var(--color-blue-400) l c h / 0.5),\n oklch(from var(--color-blue-600) l c h / 0.5)\n );\n --color-cm-focused-selection: light-dark(var(--color-blue-400), oklch(0.445 0.057 256)); /* #3f5573 */\n --color-cm-highlight: light-dark(var(--color-neutral-950), var(--color-neutral-50));\n --color-cm-highlight-surface: light-dark(var(--color-sky-200), var(--color-cyan-800));\n --color-cm-comment-text: light-dark(var(--color-neutral-950), var(--color-neutral-950));\n --color-cm-comment-surface: light-dark(var(--color-teal-200), var(--color-teal-200));\n --color-cm-comment-current-surface: light-dark(var(--color-orange-200), var(--color-orange-200));\n\n /* Branch diff: oriented as a preview of accepting the compare branch into the current branch \u2014\n the compare branch's content (what accepting adds) is shown as an addition, the current\n branch's deviating content (what accepting removes) as a removal. */\n --color-cm-diff-add-surface: light-dark(\n oklch(from var(--color-green-500) l c h / 0.18),\n oklch(from var(--color-green-400) l c h / 0.22)\n );\n --color-cm-diff-remove-surface: light-dark(\n oklch(from var(--color-red-500) l c h / 0.16),\n oklch(from var(--color-red-400) l c h / 0.22)\n );\n /* Saturated variants for the change-gutter markers (thin bars), kept aligned with the surfaces. */\n --color-cm-diff-add-gutter: light-dark(var(--color-green-600), var(--color-green-400));\n --color-cm-diff-remove-gutter: light-dark(var(--color-red-500), var(--color-red-400));\n\n /* Markdown syntax highlighting */\n --color-cm-code: light-dark(var(--color-stone-600), var(--color-stone-400));\n --color-cm-code-inline: light-dark(var(--color-green-500), var(--color-green-500));\n --color-cm-code-mark: var(--color-blue-500);\n --color-cm-heading: light-dark(var(--color-blue-700), var(--color-blue-300));\n --color-cm-heading-number: light-dark(var(--color-blue-600), var(--color-blue-400));\n}\n", "/**\n * Tldraw\n */\n\n/** TODO(burdon): Move to tldraw */\n.tl-background {\n --color-background: var(--color-base-surface);\n}\n.tl-container.tl-theme__light,\n.tl-container.tl-theme__dark {\n --color-selected: var(--color-accent-bg);\n --color-panel: var(--color-modal-surface);\n --color-panel-contrast: var(--color-separator);\n}\n", "/**\n * Main theme.\n */\n\n/**\n * Establish CSS cascade layer order before Tailwind sets its own.\n * First mention of a layer name wins its position in the order.\n *\n * NOTE: `utilities` must be last so it overrides all base and component layers.\n * NOTE: This must be in sync with the `transformIndexHtml` function in `packages/ui/ui-theme/src/plugins/plugin.ts`.\n */\n@layer properties, theme, dx-tokens, user-tokens, base, tw-base, dx-base, components, tw-components, dx-components, utilities;\n\n/**\n * `source(none)` disables Tailwind 4's automatic content discovery (which\n * scans the project root, including `publicDir`). With auto-detection on,\n * every write to `public/icons.svg` from `vite-plugin-icons` triggers a\n * Tailwind CSS regeneration, which invalidates `main.css` through its\n * import graph and produces a 3\u20135-ping HMR storm per icon-sprite write\n * during cold-start (icons land in tight bursts as plugin chunks stream\n * in). Explicit `@source` directives below replace the auto-scan with a\n * stable, source-only set.\n */\n@import 'tailwindcss' source(none);\n\n/* Theme extensions; also exported as tokens.css for stylesheets built outside this repo. */\n@import './tokens.css';\n\n/* @layer dx-base, dx-tokens */\n@import './css/base/base.css';\n@import './css/base/typography.css';\n\n/* @layer dx-components (components) */\n@import './css/components/button.css';\n@import './css/components/card.css';\n@import './css/components/checkbox.css';\n@import './css/components/dialog.css';\n@import './css/components/focus.css';\n@import './css/components/icon.css';\n@import './css/components/input.css';\n@import './css/components/callout.css';\n@import './css/components/link.css';\n@import './css/components/scrollbar.css';\n@import './css/components/state.css';\n@import './css/components/surface.css';\n@import './css/components/tag.css';\n@import './css/components/text.css';\n\n/* @layer dx-components (layout) */\n@import './css/layout/main.css';\n@import './css/layout/native.css';\n@import './css/layout/positioning.css';\n@import './css/layout/size.css';\n\n/* @layer dx-utilities */\n@import './css/utilities.css';\n\n/* Third-party integrations */\n@import './css/integrations/codemirror.css';\n@import './css/integrations/tldraw.css';\n\n/**\n * With `source(none)` on the Tailwind import above, these are the *only*\n * paths Tailwind scans for utility classes. Cover every workspace source\n * directory so lazy-loaded plugin / UI / SDK chunks don't surface new\n * utilities mid-session, and root-level HTML entrypoints (index.html,\n * internal.html, \u2026) are visible too.\n *\n * Paths are relative to this file (`packages/ui/ui-theme/src/main.css`):\n * ../../../ \u2192 `packages/`\n * ../../../../tools/ \u2192 `tools/`\n *\n * Tailwind ignores `node_modules` and common build/output dirs by default,\n * so a broad workspace glob is safe *for scanning*.\n *\n * NOTE: Tailwind's scanner respects `.gitignore` (so `dist/` is never\n * scanned), but it hands Vite a coarse `dir-dependency` glob and Vite\n * re-expands that itself, ignoring only `node_modules`. That re-expansion\n * sweeps `dist/**` `.d.ts` files into the watch set and causes a `main.css`\n * HMR storm on every package rebuild. Build outputs are excluded from the\n * dev watcher in `plugins/ThemePlugin.ts` (`server.watch.ignored`) rather\n * than here, because `@source not` does NOT propagate to the glob Vite\n * re-expands.\n */\n@source '../../../**/*.{ts,tsx,html}';\n@source '../../../../tools/**/*.{ts,tsx,html}';\n\n/**\n * Exclude generated/static data files that have no Tailwind classes but are\n * large enough to dominate scan time. The oxide scanner tokenizes every byte;\n * a single 5MB geo-data file can pin Vite at 100% CPU for tens of seconds on\n * a cold start.\n */\n@source not '../../../ui/react-ui-geo/data/**';\n@source not '../../../ui/solid-ui-geo/data/**';\n@source not '../../../apps/composer-app/src/plugins/welcome/components/Welcome/hero-image.ts';\n\n/**\n * Force-emit CSS variables for the full color palette for all:\n * --color-{hue}-{shade}\n * --color-{hue}-{style}\n */\n@source inline('bg-{neutral,red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose}-{50,100,200,300,400,500,600,700,800,900,950}');\n@source inline('bg-{neutral,red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose}-{bg,bg-hover,fg,surface,text,border}');\n@source inline('bg-{primary,secondary}-{50,100,200,300,400,500,600,700,800,900,950}');\n@source inline('border-{neutral,red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose}-border');\n@source inline('bg-{info,success,warning,error}-{bg,surface,fg,text,border}');\n@source inline('border-{info,success,warning,error}-border');\n\n/**\n * Force-emit tokens consumed by web components / .pcss files outside the\n * Tailwind source-scan graph (e.g. lit-grid's dx-grid.pcss uses var(--color-grid-line)).\n */\n@source inline('bg-grid-{surface,fg,line,highlight,comment,comment-active,selection-surface,selection-fg}');\n/* \n * Sidebar surfaces alias each other (e.g. header-surface -> l0-surface); force-emit so the vars\n * exist in apps that use the alias but not the underlying utility (e.g. devtools). \n */\n@source inline('bg-{l0,r0,l1,r1}-surface');\n\n/**\n * Plugins must come after all imports.\n */\n@plugin '@tailwindcss/forms';\n@plugin 'tailwind-scrollbar';\n@plugin 'tailwindcss-radix';\n\n/**\n * Class-based dark mode.\n * The `.dark` class on an ancestor toggles `dark:` utilities.\n */\n@custom-variant dark (&:where(.dark, .dark *));\n\n/** Mobile */\n@custom-variant pointer-coarse (@media (pointer: coarse));\n\n/** Web */\n@custom-variant pointer-fine (@media (pointer: fine));\n\n/** Supports mouse/trackpad (Web) */\n@custom-variant hover-hover (@media (hover: hover));\n\n/** Active navigation */\n@custom-variant is-current (&[aria-current]:not([aria-current='false']));\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|