@amulet-laboratories/hex 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +120 -0
  3. package/dist/aldricpace.css +5 -0
  4. package/dist/briarcove.css +5 -0
  5. package/dist/briarcovelib.css +5 -0
  6. package/dist/compass.css +5 -0
  7. package/dist/duskline.css +5 -0
  8. package/dist/forge.css +5 -0
  9. package/dist/garden.css +5 -0
  10. package/dist/greyline.css +5 -0
  11. package/dist/hex.css +5 -0
  12. package/dist/kbcv.css +5 -0
  13. package/dist/lanternhouse.css +5 -0
  14. package/dist/marenlys.css +5 -0
  15. package/dist/quizbit.css +5 -0
  16. package/dist/saltsignal.css +5 -0
  17. package/dist/scoped.css +1 -0
  18. package/dist/spacewizard.css +5 -0
  19. package/dist/tidemark.css +5 -0
  20. package/dist/undertow.css +5 -0
  21. package/dist/vscode.css +5 -0
  22. package/package.json +119 -0
  23. package/src/index.css +10 -0
  24. package/src/scoped/bridge.css +47 -0
  25. package/src/scoped/index.css +51 -0
  26. package/src/scoped/themes/aldricpace.css +115 -0
  27. package/src/scoped/themes/briarcove.css +123 -0
  28. package/src/scoped/themes/briarcovelib.css +111 -0
  29. package/src/scoped/themes/compass.css +111 -0
  30. package/src/scoped/themes/duskline.css +117 -0
  31. package/src/scoped/themes/forge.css +123 -0
  32. package/src/scoped/themes/garden.css +123 -0
  33. package/src/scoped/themes/greyline.css +116 -0
  34. package/src/scoped/themes/kbcv.css +111 -0
  35. package/src/scoped/themes/lanternhouse.css +111 -0
  36. package/src/scoped/themes/marenlys.css +112 -0
  37. package/src/scoped/themes/quizbit.css +101 -0
  38. package/src/scoped/themes/saltsignal.css +114 -0
  39. package/src/scoped/themes/spacewizard.css +115 -0
  40. package/src/scoped/themes/tidemark.css +119 -0
  41. package/src/scoped/themes/undertow.css +113 -0
  42. package/src/scoped/themes/vscode.css +230 -0
  43. package/src/scoped/tokens.css +21 -0
  44. package/src/shared/a11y.css +175 -0
  45. package/src/shared/components/core.css +1654 -0
  46. package/src/shared/components/data.css +418 -0
  47. package/src/shared/components/editor.css +358 -0
  48. package/src/shared/components/extras.css +897 -0
  49. package/src/shared/components/layout.css +663 -0
  50. package/src/shared/components/lists.css +278 -0
  51. package/src/shared/components/menus.css +377 -0
  52. package/src/shared/components/nav.css +943 -0
  53. package/src/shared/components/prose.css +302 -0
  54. package/src/shared/components/shell.css +528 -0
  55. package/src/shared/components/spatial.css +184 -0
  56. package/src/shared/components/temporal.css +191 -0
  57. package/src/shared/components/web.css +1689 -0
  58. package/src/shared/rig-defaults.css +121 -0
  59. package/src/shared/scroll-animations.css +176 -0
  60. package/src/shared/tokens.css +125 -0
  61. package/src/shared/utilities.css +204 -0
  62. package/src/themes/aldricpace/base.css +114 -0
  63. package/src/themes/aldricpace/components.css +22 -0
  64. package/src/themes/aldricpace/domains.css +19 -0
  65. package/src/themes/aldricpace/index.css +6 -0
  66. package/src/themes/aldricpace/tokens.css +169 -0
  67. package/src/themes/andrewpassanisi/base.css +192 -0
  68. package/src/themes/andrewpassanisi/index.css +11 -0
  69. package/src/themes/andrewpassanisi/tokens.css +136 -0
  70. package/src/themes/briarcove/base.css +170 -0
  71. package/src/themes/briarcove/components.css +27 -0
  72. package/src/themes/briarcove/domains.css +72 -0
  73. package/src/themes/briarcove/index.css +6 -0
  74. package/src/themes/briarcove/tokens.css +179 -0
  75. package/src/themes/briarcovelib/base.css +111 -0
  76. package/src/themes/briarcovelib/components.css +22 -0
  77. package/src/themes/briarcovelib/domains.css +19 -0
  78. package/src/themes/briarcovelib/index.css +6 -0
  79. package/src/themes/briarcovelib/tokens.css +167 -0
  80. package/src/themes/compass/base.css +112 -0
  81. package/src/themes/compass/components.css +22 -0
  82. package/src/themes/compass/domains.css +19 -0
  83. package/src/themes/compass/index.css +6 -0
  84. package/src/themes/compass/tokens.css +167 -0
  85. package/src/themes/duskline/base.css +167 -0
  86. package/src/themes/duskline/components.css +27 -0
  87. package/src/themes/duskline/domains.css +72 -0
  88. package/src/themes/duskline/index.css +6 -0
  89. package/src/themes/duskline/tokens.css +171 -0
  90. package/src/themes/forge/base.css +165 -0
  91. package/src/themes/forge/components.css +24 -0
  92. package/src/themes/forge/domains.css +72 -0
  93. package/src/themes/forge/index.css +6 -0
  94. package/src/themes/forge/tokens.css +178 -0
  95. package/src/themes/garden/base.css +167 -0
  96. package/src/themes/garden/components.css +27 -0
  97. package/src/themes/garden/domains.css +72 -0
  98. package/src/themes/garden/index.css +6 -0
  99. package/src/themes/garden/tokens.css +178 -0
  100. package/src/themes/greyline/base.css +165 -0
  101. package/src/themes/greyline/components.css +24 -0
  102. package/src/themes/greyline/domains.css +70 -0
  103. package/src/themes/greyline/index.css +6 -0
  104. package/src/themes/greyline/tokens.css +161 -0
  105. package/src/themes/kbcv/base.css +112 -0
  106. package/src/themes/kbcv/components.css +22 -0
  107. package/src/themes/kbcv/domains.css +19 -0
  108. package/src/themes/kbcv/index.css +6 -0
  109. package/src/themes/kbcv/tokens.css +167 -0
  110. package/src/themes/lanternhouse/base.css +170 -0
  111. package/src/themes/lanternhouse/components.css +27 -0
  112. package/src/themes/lanternhouse/domains.css +72 -0
  113. package/src/themes/lanternhouse/index.css +6 -0
  114. package/src/themes/lanternhouse/tokens.css +167 -0
  115. package/src/themes/marenlys/base.css +181 -0
  116. package/src/themes/marenlys/components.css +27 -0
  117. package/src/themes/marenlys/domains.css +72 -0
  118. package/src/themes/marenlys/index.css +6 -0
  119. package/src/themes/marenlys/tokens.css +167 -0
  120. package/src/themes/quizbit/base.css +120 -0
  121. package/src/themes/quizbit/components.css +27 -0
  122. package/src/themes/quizbit/domains.css +7 -0
  123. package/src/themes/quizbit/index.css +6 -0
  124. package/src/themes/quizbit/tokens.css +132 -0
  125. package/src/themes/saltsignal/base.css +168 -0
  126. package/src/themes/saltsignal/components.css +27 -0
  127. package/src/themes/saltsignal/domains.css +72 -0
  128. package/src/themes/saltsignal/index.css +6 -0
  129. package/src/themes/saltsignal/tokens.css +170 -0
  130. package/src/themes/spacewizard/base.css +165 -0
  131. package/src/themes/spacewizard/components.css +24 -0
  132. package/src/themes/spacewizard/domains.css +70 -0
  133. package/src/themes/spacewizard/index.css +6 -0
  134. package/src/themes/spacewizard/tokens.css +160 -0
  135. package/src/themes/tidemark/base.css +169 -0
  136. package/src/themes/tidemark/components.css +27 -0
  137. package/src/themes/tidemark/domains.css +72 -0
  138. package/src/themes/tidemark/index.css +6 -0
  139. package/src/themes/tidemark/tokens.css +175 -0
  140. package/src/themes/undertow/base.css +114 -0
  141. package/src/themes/undertow/components.css +22 -0
  142. package/src/themes/undertow/domains.css +19 -0
  143. package/src/themes/undertow/index.css +6 -0
  144. package/src/themes/undertow/tokens.css +171 -0
  145. package/src/themes/vscode/base.css +104 -0
  146. package/src/themes/vscode/components.css +24 -0
  147. package/src/themes/vscode/domains.css +132 -0
  148. package/src/themes/vscode/index.css +13 -0
  149. package/src/themes/vscode/tokens.css +346 -0
@@ -0,0 +1,171 @@
1
+ /* Hex — Undertow Design Tokens
2
+ * Industrial craft brewery. Gritty dark mode with blaze orange and grain gold.
3
+ * Warehouse taproom energy — loud, unpretentious, industrial warm.
4
+ *
5
+ * Full palette (7 swatch colors):
6
+ * #1C1917 tar — background
7
+ * #292524 soot — card, popover
8
+ * #3B3633 worn iron — secondary, muted
9
+ * #F5F0EB bone — foreground text
10
+ * #A8A09A ash — muted foreground
11
+ * #D95F2A blaze orange — primary, ring
12
+ * #C9B458 grain gold — accent
13
+ *
14
+ * @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
15
+ * :root provides standalone CSS custom property access for non-Tailwind consumers.
16
+ */
17
+
18
+ @theme {
19
+ /* Surface colors */
20
+ --color-background: #1c1917;
21
+ --color-foreground: #f5f0eb;
22
+ --color-card: #292524;
23
+ --color-card-foreground: #f5f0eb;
24
+ --color-popover: #292524;
25
+ --color-popover-foreground: #f5f0eb;
26
+
27
+ /* Brand */
28
+ --color-primary: #d95f2a;
29
+ --color-primary-foreground: #1c1917;
30
+
31
+ /* Soft accents */
32
+ --color-secondary: #3b3633;
33
+ --color-secondary-foreground: #f5f0eb;
34
+ --color-muted: #3b3633;
35
+ --color-muted-foreground: #a8a09a;
36
+ --color-accent: #c9b458;
37
+ --color-accent-foreground: #1c1917;
38
+
39
+ /* Semantic status */
40
+ --color-destructive: #cc3333;
41
+ --color-destructive-foreground: #f5f0eb;
42
+ --color-success: #5a8a5a;
43
+ --color-warning: #c9b458;
44
+ --color-info: #6b8faa;
45
+
46
+ /* Borders and focus */
47
+ --color-border: #4a4440;
48
+ --color-input: #4a4440;
49
+ --color-ring: #d95f2a;
50
+
51
+ /* Typography */
52
+ --font-sans: 'Work Sans', 'Inter', system-ui, sans-serif;
53
+ --font-mono: 'Space Mono', 'SF Mono', ui-monospace, monospace;
54
+ --font-serif: 'Archivo Black', 'Archivo', Impact, sans-serif;
55
+ --font-heading: 'Archivo Black', 'Archivo', Impact, sans-serif;
56
+
57
+ /* Radius */
58
+ /* Typography — IDE-density type scale */
59
+ --font-size-2xs: 0.625rem;
60
+ --font-size-2xs--line-height: 1.25;
61
+ --font-size-xs: 0.75rem;
62
+ --font-size-xs--line-height: 1.5;
63
+ --font-size-sm: 0.8125rem;
64
+ --font-size-sm--line-height: 1.5;
65
+ --font-size-base: 0.875rem;
66
+ --font-size-base--line-height: 1.5;
67
+ --font-size-lg: 1.125rem;
68
+ --font-size-lg--line-height: 1.25;
69
+ --font-size-xl: 1.25rem;
70
+ --font-size-xl--line-height: 1.25;
71
+
72
+ /* Display font family */
73
+ --font-display: var(--font-sans);
74
+
75
+ --radius: 4px;
76
+ }
77
+
78
+ :root {
79
+ --background: #1c1917;
80
+ --foreground: #f5f0eb;
81
+ --card: #292524;
82
+ --card-foreground: #f5f0eb;
83
+ --popover: #292524;
84
+ --popover-foreground: #f5f0eb;
85
+ --primary: #d95f2a;
86
+ --primary-foreground: #1c1917;
87
+ --secondary: #3b3633;
88
+ --secondary-foreground: #f5f0eb;
89
+ --muted: #3b3633;
90
+ --muted-foreground: #a8a09a;
91
+ --accent: #c9b458;
92
+ --accent-foreground: #1c1917;
93
+ --destructive: #cc3333;
94
+ --destructive-foreground: #f5f0eb;
95
+ --success: #5a8a5a;
96
+ --warning: #c9b458;
97
+ --info: #6b8faa;
98
+ --border: #4a4440;
99
+ --input: #4a4440;
100
+ --ring: #d95f2a;
101
+ /* Typography — IDE-density type scale */
102
+ --font-size-2xs: 0.625rem;
103
+ --font-size-2xs--line-height: 1.25;
104
+ --font-size-xs: 0.75rem;
105
+ --font-size-xs--line-height: 1.5;
106
+ --font-size-sm: 0.8125rem;
107
+ --font-size-sm--line-height: 1.5;
108
+ --font-size-base: 0.875rem;
109
+ --font-size-base--line-height: 1.5;
110
+ --font-size-lg: 1.125rem;
111
+ --font-size-lg--line-height: 1.25;
112
+ --font-size-xl: 1.25rem;
113
+ --font-size-xl--line-height: 1.25;
114
+
115
+ /* Display font family */
116
+ --font-display: var(--font-sans);
117
+
118
+ --radius: 4px;
119
+
120
+ /* Typography — IDE-density type scale (shorthand aliases) */
121
+ --text-2xs: 0.625rem;
122
+ --text-xs: 0.75rem;
123
+ --text-sm: 0.8125rem;
124
+ --text-base: 0.875rem;
125
+ --text-lg: 1.125rem;
126
+ --text-xl: 1.25rem;
127
+ --leading-tight: 1.25;
128
+ --leading-snug: 1.375;
129
+ --leading-normal: 1.5;
130
+ --leading-relaxed: 1.625;
131
+ --weight-normal: 400;
132
+ --weight-medium: 500;
133
+ --weight-semibold: 600;
134
+ --weight-bold: 700;
135
+ --tracking-tight: -0.01em;
136
+ --tracking-normal: 0;
137
+ --tracking-wide: 0.05em;
138
+ --tracking-wider: 0.08em;
139
+ --font-display: var(--font-sans);
140
+ --font-sans: 'Work Sans', 'Inter', system-ui, sans-serif;
141
+ --font-mono: 'Space Mono', 'SF Mono', ui-monospace, monospace;
142
+ --font-serif: 'Archivo Black', 'Archivo', Impact, sans-serif;
143
+ --font-heading: 'Archivo Black', 'Archivo', Impact, sans-serif;
144
+
145
+ /* ── Named palette aliases ──────────────────────────────────────────────
146
+ * All 7 swatch colors available for direct template use.
147
+ */
148
+ --uw-tar: #1c1917;
149
+ --uw-soot: #292524;
150
+ --uw-iron: #3b3633;
151
+ --uw-bone: #f5f0eb;
152
+ --uw-ash: #a8a09a;
153
+ --uw-blaze: #d95f2a;
154
+ --uw-gold: #c9b458;
155
+
156
+ /* ── Rig component token bridge ─────────────────────────────────────────
157
+ * Overrides shared/tokens.css defaults where the Undertow palette needs
158
+ * values that can't be derived directly from --color-* semantics.
159
+ */
160
+
161
+ /* Site footer — card background, not primary */
162
+ --site-footer-bg: var(--color-card);
163
+ --site-footer-color: var(--color-foreground);
164
+
165
+ /* Button — worn iron for hover feedback */
166
+ --rig-button-hover-bg: #3b3633;
167
+
168
+ /* Scrollbar — bone tint for dark mode */
169
+ --rig-scrollbar-thumb: rgba(245, 240, 235, 0.12);
170
+ --rig-scrollbar-thumb-hover: rgba(245, 240, 235, 0.25);
171
+ }
@@ -0,0 +1,104 @@
1
+ /* Hex — VSCode Base Styles
2
+ * html/body defaults, scrollbar, focus, selection, transitions.
3
+ * Matched 1:1 to VSCode Dark Modern.
4
+ */
5
+
6
+ @reference 'tailwindcss';
7
+ @reference './tokens.css';
8
+
9
+ /* Base styles */
10
+ html,
11
+ body {
12
+ @apply bg-background text-foreground font-sans leading-tight;
13
+
14
+ font-size: 12px;
15
+
16
+ color-scheme: dark;
17
+ -webkit-font-smoothing: antialiased;
18
+ -moz-osx-font-smoothing: grayscale;
19
+ }
20
+
21
+ /* Scrollbar — VSCode: scrollbarSlider.background / hover / active */
22
+ ::-webkit-scrollbar {
23
+ width: 10px;
24
+ height: 10px;
25
+ }
26
+
27
+ ::-webkit-scrollbar-track {
28
+ background: transparent;
29
+ }
30
+
31
+ ::-webkit-scrollbar-thumb {
32
+ background: var(--vsc-scrollbar-thumb);
33
+ border-radius: 0;
34
+ }
35
+
36
+ ::-webkit-scrollbar-thumb:hover {
37
+ background: var(--vsc-scrollbar-thumb-hover);
38
+ }
39
+
40
+ ::-webkit-scrollbar-thumb:active {
41
+ background: var(--vsc-scrollbar-thumb-active);
42
+ }
43
+
44
+ /* Focus styles — VSCode focusBorder: #0078D4 */
45
+ *:focus-visible {
46
+ outline: 1px solid var(--color-ring);
47
+ outline-offset: -1px;
48
+ }
49
+
50
+ /* Selection — editor.selectionBackground */
51
+ ::selection {
52
+ background: var(--vsc-selection-bg);
53
+ color: var(--color-foreground);
54
+ }
55
+
56
+ /* Command palette transitions */
57
+ .palette-enter-active,
58
+ .palette-leave-active {
59
+ transition:
60
+ opacity 0.15s ease,
61
+ transform 0.15s ease;
62
+ }
63
+
64
+ .palette-enter-from,
65
+ .palette-leave-to {
66
+ opacity: 0;
67
+ transform: scale(0.97) translateY(-8px);
68
+ }
69
+
70
+ /* Toast transitions */
71
+ .toast-enter-active,
72
+ .toast-leave-active {
73
+ transition:
74
+ opacity 0.2s ease,
75
+ transform 0.2s ease;
76
+ }
77
+
78
+ .toast-enter-from {
79
+ opacity: 0;
80
+ transform: translateY(-12px);
81
+ }
82
+
83
+ .toast-leave-to {
84
+ opacity: 0;
85
+ transform: translateY(12px);
86
+ }
87
+
88
+ /* Reduced motion — disable animations and transitions */
89
+ @media (prefers-reduced-motion: reduce) {
90
+ *,
91
+ *::before,
92
+ *::after {
93
+ animation-duration: 0.01ms !important;
94
+ animation-iteration-count: 1 !important;
95
+ transition-duration: 0.01ms !important;
96
+ scroll-behavior: auto !important;
97
+ }
98
+ }
99
+
100
+ /* Firefox scrollbar */
101
+ * {
102
+ scrollbar-width: thin;
103
+ scrollbar-color: var(--vsc-scrollbar-thumb) transparent;
104
+ }
@@ -0,0 +1,24 @@
1
+ /* Hex — VSCode Component Barrel
2
+ * Imports shared component CSS (one file per Rig package).
3
+ * Components use only semantic tokens — Tailwind resolves them
4
+ * against this theme's tokens.css at build time.
5
+ * @import rules must precede @reference so postcss-import can inline them.
6
+ */
7
+
8
+ @import '../../shared/rig-defaults.css';
9
+ @import '../../shared/components/core.css';
10
+ @import '../../shared/components/layout.css';
11
+ @import '../../shared/components/nav.css';
12
+ @import '../../shared/components/editor.css';
13
+ @import '../../shared/components/lists.css';
14
+ @import '../../shared/components/menus.css';
15
+ @import '../../shared/components/extras.css';
16
+ @import '../../shared/components/shell.css';
17
+ @import '../../shared/components/data.css';
18
+ @import '../../shared/components/spatial.css';
19
+ @import '../../shared/components/temporal.css';
20
+ @import '../../shared/a11y.css';
21
+ @import '../../shared/components/prose.css';
22
+
23
+ @reference 'tailwindcss';
24
+ @reference './tokens.css';
@@ -0,0 +1,132 @@
1
+ /* Hex — VSCode Domains
2
+ * Domain accent colors, focus accent utility, responsive breakpoints,
3
+ * and unstyled theme escape hatch.
4
+ */
5
+
6
+ @reference 'tailwindcss';
7
+ @reference './tokens.css';
8
+
9
+ /* ───────── Domain accent colors ───────── */
10
+
11
+ [data-domain='legal'] {
12
+ --domain-accent: #3b82f6;
13
+ }
14
+
15
+ [data-domain='life'] {
16
+ --domain-accent: #eab308;
17
+ }
18
+
19
+ [data-domain='software'] {
20
+ --domain-accent: #ef4444;
21
+ }
22
+
23
+ [data-domain='business'] {
24
+ --domain-accent: #f97316;
25
+ }
26
+
27
+ [data-domain='history'] {
28
+ --domain-accent: #22c55e;
29
+ }
30
+
31
+ [data-domain='world'] {
32
+ --domain-accent: #a855f7;
33
+ }
34
+
35
+ /* ───────── Focus accent utility ───────── */
36
+
37
+ .focus-accent:focus-visible {
38
+ outline: none;
39
+ box-shadow: 0 0 0 1px var(--color-ring);
40
+ }
41
+
42
+ /* ───────── Responsive: Mobile-first ───────── */
43
+
44
+ /* Below 640px: collapse activity bar and sidebar, single-column layout */
45
+
46
+ @media (width <= 639px) {
47
+ [data-rig-shell-grid] {
48
+ grid-template-areas:
49
+ 'editor'
50
+ 'panel'
51
+ 'statusbar';
52
+ grid-template-columns: 1fr;
53
+ grid-template-rows: 1fr auto auto;
54
+ }
55
+
56
+ [data-rig-shell-activity] {
57
+ display: none;
58
+ }
59
+
60
+ [data-rig-shell-sidebar] {
61
+ display: none;
62
+ }
63
+
64
+ [data-rig-shell-statusbar] {
65
+ @apply px-2;
66
+ }
67
+
68
+ [data-rig-editor-workbench-tabs] {
69
+ @apply overflow-x-auto;
70
+ }
71
+
72
+ [data-rig-editor-tab-label] {
73
+ max-width: 100px;
74
+ }
75
+
76
+ /* Command palette needs more room on mobile */
77
+ [data-rig-command-palette-overlay] {
78
+ @apply pt-[8vh];
79
+ }
80
+
81
+ [data-rig-command-palette] {
82
+ @apply mx-3 max-w-none;
83
+ }
84
+
85
+ /* Panel takes more height on small screens */
86
+ [data-rig-panel] [data-rig-panel-content] {
87
+ max-height: 40vh;
88
+ }
89
+ }
90
+
91
+ /* 640px–1023px: narrow sidebar, activity bar still visible */
92
+ @media (width >= 640px) and (width <= 1023px) {
93
+ [data-rig-shell-sidebar] {
94
+ max-width: 200px;
95
+ }
96
+
97
+ [data-rig-editor-tab-label] {
98
+ max-width: 120px;
99
+ }
100
+ }
101
+
102
+ /* ───────── Unstyled theme overrides ───────── */
103
+
104
+ /* Strips visual styling (colors, borders, backgrounds, shadows)
105
+ while preserving layout (flex, grid, sizing, positioning, overflow). */
106
+
107
+ [data-theme='unstyled'] *,
108
+ [data-theme='unstyled'] *::before,
109
+ [data-theme='unstyled'] *::after {
110
+ color: revert !important;
111
+ background-color: revert !important;
112
+ background: revert !important;
113
+ border-color: revert !important;
114
+ box-shadow: none !important;
115
+ text-shadow: none !important;
116
+ backdrop-filter: none !important;
117
+ opacity: 1 !important;
118
+
119
+ --domain-accent: initial !important;
120
+ }
121
+
122
+ [data-theme='unstyled'] [data-rig-shell-statusbar],
123
+ [data-theme='unstyled'] [data-rig-shell-sidebar],
124
+ [data-theme='unstyled'] [data-rig-shell-panel],
125
+ [data-theme='unstyled'] [data-rig-sidebar-header],
126
+ [data-theme='unstyled'] [data-rig-editor-workbench-tabs],
127
+ [data-theme='unstyled'] [data-rig-panel-header],
128
+ [data-theme='unstyled'] [data-rig-activity-bar],
129
+ [data-theme='unstyled'] [data-rig-activity-bar-item][data-state='active'] {
130
+ border-color: #ccc !important;
131
+ border-left-color: #ccc !important;
132
+ }
@@ -0,0 +1,13 @@
1
+ /* Hex — VSCode Full Bundle
2
+ * Import this single file to get everything:
3
+ * Tailwind + tokens + base styles + all component styles + domains.
4
+ *
5
+ * Usage: import '@amulet-laboratories/hex/vscode/source'
6
+ */
7
+
8
+ @import 'tailwindcss';
9
+ @import '../../shared/tokens.css';
10
+ @import './base.css';
11
+ @import './components.css';
12
+ @import './tokens.css';
13
+ @import './domains.css';