@astryxdesign/theme-neutral 0.0.0-bootstrap.0 → 0.1.0-canary.0b5b49f

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Meta Platforms, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,3 +1,52 @@
1
1
  # @astryxdesign/theme-neutral
2
2
 
3
- This is a `0.0.0-bootstrap.0` placeholder published only to claim the npm name while configuring npm trusted publishing. Do not install it; it will be superseded by the first real release.
3
+ Muted, minimal aesthetic with system fonts. Uses [Lucide](https://lucide.dev) icons.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @astryxdesign/theme-neutral
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Wrap your app with `XDSTheme` and pass the theme:
14
+
15
+ ```tsx
16
+ import {XDSTheme} from '@astryxdesign/core/theme';
17
+ import {neutralTheme} from '@astryxdesign/theme-neutral/built';
18
+
19
+ function App() {
20
+ return <XDSTheme theme={neutralTheme}>{/* your app */}</XDSTheme>;
21
+ }
22
+ ```
23
+
24
+ ### Import paths
25
+
26
+ | Path | Use case |
27
+ | ------------------------------ | ------------------------------------------------------ |
28
+ | `@astryxdesign/theme-neutral` | Source build (StyleX compilation via `@astryxdesign/build`) |
29
+ | `@astryxdesign/theme-neutral/built` | Pre-built dist (Tailwind, plain CSS, or no build step) |
30
+ | `@astryxdesign/theme-neutral/theme.css` | Pre-built CSS file (import in your stylesheet) |
31
+
32
+ If you're using `@astryxdesign/build` for StyleX source compilation, import from the bare path. Otherwise, use `/built`.
33
+
34
+ ### CSS import
35
+
36
+ Add the theme CSS to your stylesheet:
37
+
38
+ ```css
39
+ @import '@astryxdesign/theme-neutral/theme.css';
40
+ ```
41
+
42
+ This is required for component-level theme overrides (colors, radii, typography) to take effect.
43
+
44
+ This theme uses system fonts; no external font loading is required.
45
+
46
+ ## Related Packages
47
+
48
+ | Package | Description |
49
+ | ------------------------------------------------------------------------------------ | -------------------------------------- |
50
+ | [`@astryxdesign/core`](https://github.com/facebook/astryx/tree/main/packages/core) | Core components and theme system |
51
+ | [`@astryxdesign/build`](https://github.com/facebook/astryx/tree/main/packages/build) | Build plugins for StyleX source builds |
52
+ | [`@astryxdesign/cli`](https://github.com/facebook/astryx/tree/main/packages/cli) | CLI tooling including `astryx docs theme` |
@@ -0,0 +1,66 @@
1
+ // src/icons.tsx
2
+ import {
3
+ X,
4
+ ChevronDown,
5
+ ChevronLeft,
6
+ ChevronRight,
7
+ Check,
8
+ CheckCircle,
9
+ XCircle,
10
+ AlertTriangle,
11
+ Info,
12
+ Calendar,
13
+ Clock,
14
+ ExternalLink,
15
+ Menu,
16
+ MoreHorizontal,
17
+ Search,
18
+ ArrowUp,
19
+ ArrowDown,
20
+ ArrowUpDown,
21
+ Filter,
22
+ EyeOff,
23
+ Columns,
24
+ Copy,
25
+ CheckCheck,
26
+ Wrench,
27
+ Square,
28
+ Mic
29
+ } from "lucide-react";
30
+ import { jsx } from "react/jsx-runtime";
31
+ var iconProps = {
32
+ size: "1em",
33
+ "aria-hidden": true
34
+ };
35
+ var neutralIconRegistry = {
36
+ close: /* @__PURE__ */ jsx(X, { ...iconProps }),
37
+ chevronDown: /* @__PURE__ */ jsx(ChevronDown, { ...iconProps }),
38
+ chevronLeft: /* @__PURE__ */ jsx(ChevronLeft, { ...iconProps }),
39
+ chevronRight: /* @__PURE__ */ jsx(ChevronRight, { ...iconProps }),
40
+ check: /* @__PURE__ */ jsx(Check, { ...iconProps }),
41
+ success: /* @__PURE__ */ jsx(CheckCircle, { ...iconProps }),
42
+ error: /* @__PURE__ */ jsx(XCircle, { ...iconProps }),
43
+ warning: /* @__PURE__ */ jsx(AlertTriangle, { ...iconProps }),
44
+ info: /* @__PURE__ */ jsx(Info, { ...iconProps }),
45
+ calendar: /* @__PURE__ */ jsx(Calendar, { ...iconProps }),
46
+ clock: /* @__PURE__ */ jsx(Clock, { ...iconProps }),
47
+ externalLink: /* @__PURE__ */ jsx(ExternalLink, { ...iconProps }),
48
+ menu: /* @__PURE__ */ jsx(Menu, { ...iconProps }),
49
+ moreHorizontal: /* @__PURE__ */ jsx(MoreHorizontal, { ...iconProps }),
50
+ search: /* @__PURE__ */ jsx(Search, { ...iconProps }),
51
+ arrowUp: /* @__PURE__ */ jsx(ArrowUp, { ...iconProps }),
52
+ arrowDown: /* @__PURE__ */ jsx(ArrowDown, { ...iconProps }),
53
+ arrowsUpDown: /* @__PURE__ */ jsx(ArrowUpDown, { ...iconProps }),
54
+ funnel: /* @__PURE__ */ jsx(Filter, { ...iconProps }),
55
+ eyeSlash: /* @__PURE__ */ jsx(EyeOff, { ...iconProps }),
56
+ viewColumns: /* @__PURE__ */ jsx(Columns, { ...iconProps }),
57
+ copy: /* @__PURE__ */ jsx(Copy, { ...iconProps }),
58
+ checkDouble: /* @__PURE__ */ jsx(CheckCheck, { ...iconProps }),
59
+ wrench: /* @__PURE__ */ jsx(Wrench, { ...iconProps }),
60
+ stop: /* @__PURE__ */ jsx(Square, { ...iconProps }),
61
+ microphone: /* @__PURE__ */ jsx(Mic, { ...iconProps })
62
+ };
63
+
64
+ export {
65
+ neutralIconRegistry
66
+ };
@@ -0,0 +1,3 @@
1
+ import type { IconRegistry } from '@astryxdesign/core/Icon';
2
+ export declare const neutralIconRegistry: IconRegistry;
3
+ //# sourceMappingURL=icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../src/icons.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,yBAAyB,CAAC;AAoC1D,eAAO,MAAM,mBAAmB,EAAE,YA2BjC,CAAC"}
package/dist/icons.js ADDED
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/icons.tsx
21
+ var icons_exports = {};
22
+ __export(icons_exports, {
23
+ neutralIconRegistry: () => neutralIconRegistry
24
+ });
25
+ module.exports = __toCommonJS(icons_exports);
26
+ var import_lucide_react = require("lucide-react");
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var iconProps = {
29
+ size: "1em",
30
+ "aria-hidden": true
31
+ };
32
+ var neutralIconRegistry = {
33
+ close: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.X, { ...iconProps }),
34
+ chevronDown: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ChevronDown, { ...iconProps }),
35
+ chevronLeft: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ChevronLeft, { ...iconProps }),
36
+ chevronRight: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ChevronRight, { ...iconProps }),
37
+ check: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Check, { ...iconProps }),
38
+ success: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.CheckCircle, { ...iconProps }),
39
+ error: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.XCircle, { ...iconProps }),
40
+ warning: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.AlertTriangle, { ...iconProps }),
41
+ info: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Info, { ...iconProps }),
42
+ calendar: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Calendar, { ...iconProps }),
43
+ clock: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Clock, { ...iconProps }),
44
+ externalLink: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ExternalLink, { ...iconProps }),
45
+ menu: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Menu, { ...iconProps }),
46
+ moreHorizontal: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.MoreHorizontal, { ...iconProps }),
47
+ search: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Search, { ...iconProps }),
48
+ arrowUp: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ArrowUp, { ...iconProps }),
49
+ arrowDown: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ArrowDown, { ...iconProps }),
50
+ arrowsUpDown: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ArrowUpDown, { ...iconProps }),
51
+ funnel: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Filter, { ...iconProps }),
52
+ eyeSlash: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.EyeOff, { ...iconProps }),
53
+ viewColumns: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Columns, { ...iconProps }),
54
+ copy: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Copy, { ...iconProps }),
55
+ checkDouble: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.CheckCheck, { ...iconProps }),
56
+ wrench: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Wrench, { ...iconProps }),
57
+ stop: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Square, { ...iconProps }),
58
+ microphone: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Mic, { ...iconProps })
59
+ };
60
+ // Annotate the CommonJS export names for ESM import in node:
61
+ 0 && (module.exports = {
62
+ neutralIconRegistry
63
+ });
package/dist/icons.mjs ADDED
@@ -0,0 +1,6 @@
1
+ import {
2
+ neutralIconRegistry
3
+ } from "./chunk-TC7YR7RU.mjs";
4
+ export {
5
+ neutralIconRegistry
6
+ };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @generated by `astryx theme build` — do not edit manually.
3
+ * Source: src/neutralTheme.ts
4
+ * Command: astryx theme build src/neutralTheme.ts --out dist/theme.css
5
+ * Generated: 2026-06-24T22:42:03.569Z
6
+ */
7
+
8
+ import type { DefinedTheme } from '@astryxdesign/core/theme';
9
+ import type { IconRegistry } from '@astryxdesign/core/Icon';
10
+ export declare const neutralIconRegistry: IconRegistry;
11
+ export declare const neutralTheme: DefinedTheme;
@@ -0,0 +1,194 @@
1
+ /**
2
+ * @generated by `astryx theme build` — do not edit manually.
3
+ * Source: src/neutralTheme.ts
4
+ * Command: astryx theme build src/neutralTheme.ts --out dist/theme.css
5
+ * Generated: 2026-06-24T22:42:03.569Z
6
+ */
7
+
8
+ import { neutralIconRegistry } from './icons';
9
+ /**
10
+ * neutral theme — built by `pnpm exec astryx theme build`
11
+ * Import the CSS file alongside this module:
12
+ *
13
+ * import { neutralTheme } from './neutral';
14
+ * import './neutral.css';
15
+ */
16
+ export const neutralTheme = {
17
+ name: 'neutral',
18
+ __built: true,
19
+ tokens: {
20
+ "--font-size-4xs": "0.375rem",
21
+ "--font-size-3xs": "0.4375rem",
22
+ "--font-size-2xs": "0.5rem",
23
+ "--font-size-xs": "0.625rem",
24
+ "--font-size-sm": "0.75rem",
25
+ "--font-size-base": "0.875rem",
26
+ "--font-size-lg": "1.0625rem",
27
+ "--font-size-xl": "1.25rem",
28
+ "--font-size-2xl": "1.5rem",
29
+ "--font-size-3xl": "1.8125rem",
30
+ "--font-size-4xl": "2.1875rem",
31
+ "--font-size-5xl": "2.625rem",
32
+ "--text-heading-1-size": "var(--font-size-2xl)",
33
+ "--text-heading-1-weight": "var(--font-weight-semibold)",
34
+ "--text-heading-1-leading": "1.3333",
35
+ "--text-heading-2-size": "var(--font-size-xl)",
36
+ "--text-heading-2-weight": "var(--font-weight-semibold)",
37
+ "--text-heading-2-leading": "1.4",
38
+ "--text-heading-3-size": "var(--font-size-lg)",
39
+ "--text-heading-3-weight": "var(--font-weight-bold)",
40
+ "--text-heading-3-leading": "1.4118",
41
+ "--text-heading-4-size": "var(--font-size-base)",
42
+ "--text-heading-4-weight": "var(--font-weight-bold)",
43
+ "--text-heading-4-leading": "1.4286",
44
+ "--text-heading-5-size": "var(--font-size-sm)",
45
+ "--text-heading-5-weight": "var(--font-weight-semibold)",
46
+ "--text-heading-5-leading": "1.6667",
47
+ "--text-heading-6-size": "var(--font-size-xs)",
48
+ "--text-heading-6-weight": "var(--font-weight-semibold)",
49
+ "--text-heading-6-leading": "1.6",
50
+ "--text-body-size": "var(--font-size-base)",
51
+ "--text-body-weight": "var(--font-weight-normal)",
52
+ "--text-body-leading": "1.4286",
53
+ "--text-large-size": "var(--font-size-lg)",
54
+ "--text-large-weight": "var(--font-weight-semibold)",
55
+ "--text-large-leading": "1.4118",
56
+ "--text-label-size": "var(--font-size-base)",
57
+ "--text-label-weight": "var(--font-weight-medium)",
58
+ "--text-label-leading": "1.4286",
59
+ "--text-code-size": "var(--font-size-base)",
60
+ "--text-code-weight": "var(--font-weight-normal)",
61
+ "--text-code-leading": "1.4286",
62
+ "--text-supporting-size": "var(--font-size-sm)",
63
+ "--text-supporting-weight": "var(--font-weight-normal)",
64
+ "--text-supporting-leading": "1.6667",
65
+ "--text-display-1-size": "var(--font-size-5xl)",
66
+ "--text-display-1-weight": "var(--font-weight-normal)",
67
+ "--text-display-1-leading": "1.2381",
68
+ "--text-display-2-size": "var(--font-size-4xl)",
69
+ "--text-display-2-weight": "var(--font-weight-normal)",
70
+ "--text-display-2-leading": "1.2571",
71
+ "--text-display-3-size": "var(--font-size-3xl)",
72
+ "--text-display-3-weight": "var(--font-weight-normal)",
73
+ "--text-display-3-leading": "1.3793",
74
+ "--duration-fast-min": "95ms",
75
+ "--duration-fast": "125ms",
76
+ "--duration-fast-max": "165ms",
77
+ "--duration-medium-min": "225ms",
78
+ "--duration-medium": "300ms",
79
+ "--duration-medium-max": "400ms",
80
+ "--duration-slow-min": "525ms",
81
+ "--duration-slow": "700ms",
82
+ "--duration-slow-max": "935ms",
83
+ "--font-family-body": "Figtree, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif",
84
+ "--font-family-heading": "Figtree, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif",
85
+ "--font-family-code": "ui-monospace, \"SF Mono\", Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace",
86
+ "--color-syntax-keyword": "light-dark(#700084, #efa8ff)",
87
+ "--color-syntax-string": "light-dark(#005600, #a6d2a2)",
88
+ "--color-syntax-comment": "light-dark(#737373, #a3a3a3)",
89
+ "--color-syntax-number": "light-dark(#6e3500, #ffb37f)",
90
+ "--color-syntax-function": "light-dark(#00458c, #a0caff)",
91
+ "--color-syntax-type": "light-dark(#700084, #efa8ff)",
92
+ "--color-syntax-variable": "light-dark(#171717, #e5e5e5)",
93
+ "--color-syntax-operator": "light-dark(#737373, #a3a3a3)",
94
+ "--color-syntax-constant": "light-dark(#6e3500, #ffb37f)",
95
+ "--color-syntax-tag": "light-dark(#89001a, #ffaeaa)",
96
+ "--color-syntax-attribute": "light-dark(#584400, #eec12f)",
97
+ "--color-syntax-property": "light-dark(#005348, #83dac9)",
98
+ "--color-syntax-punctuation": "light-dark(#a3a3a3, #525252)",
99
+ "--color-syntax-background": "light-dark(#fafafa, #0a0a0a)",
100
+ "--color-background-surface": "light-dark(#ffffff, #262626)",
101
+ "--color-background-body": "light-dark(#f1f1f1, #1b1b1b)",
102
+ "--color-background-card": "light-dark(#ffffff, #1b1b1b)",
103
+ "--color-background-popover": "light-dark(#ffffff, #1b1b1b)",
104
+ "--color-background-muted": "light-dark(#f1f1f1, #1b1b1b)",
105
+ "--color-accent": "light-dark(#262626, #ebebeb)",
106
+ "--color-accent-muted": "light-dark(#f1f1f1, #262626)",
107
+ "--color-neutral": "light-dark(#0000000F, #FFFFFF1A)",
108
+ "--color-overlay": "light-dark(#00000080, #000000CC)",
109
+ "--color-overlay-hover": "light-dark(#0000000D, #FFFFFF0D)",
110
+ "--color-overlay-pressed": "light-dark(#0000001A, #FFFFFF1A)",
111
+ "--color-text-primary": "light-dark(#171717, #fafafa)",
112
+ "--color-text-secondary": "light-dark(#737373, #a3a3a3)",
113
+ "--color-text-disabled": "light-dark(#a3a3a3, #525252)",
114
+ "--color-text-accent": "light-dark(#262626, #ebebeb)",
115
+ "--color-on-dark": "#ffffff",
116
+ "--color-on-light": "#171717",
117
+ "--color-on-accent": "light-dark(#ffffff, #171717)",
118
+ "--color-on-success": "light-dark(#ffffff, #171717)",
119
+ "--color-on-error": "light-dark(#ffffff, #171717)",
120
+ "--color-on-warning": "#171717",
121
+ "--color-icon-accent": "light-dark(#262626, #ebebeb)",
122
+ "--color-icon-primary": "light-dark(#171717, #fafafa)",
123
+ "--color-icon-secondary": "light-dark(#737373, #a3a3a3)",
124
+ "--color-icon-disabled": "light-dark(#a3a3a3, #525252)",
125
+ "--color-success": "light-dark(#007004, #9fe59b)",
126
+ "--color-error": "light-dark(#a50c25, #ffc6c1)",
127
+ "--color-warning": "light-dark(#745b00, #fdcf4f)",
128
+ "--color-success-muted": "light-dark(#c5e5c0, #84c9803D)",
129
+ "--color-error-muted": "light-dark(#facecb, #ff9e973D)",
130
+ "--color-warning-muted": "light-dark(#f8da9d, #deb4333D)",
131
+ "--color-border": "light-dark(#ebebeb, #FFFFFF1A)",
132
+ "--color-border-emphasized": "light-dark(#d4d4d4, #525252)",
133
+ "--color-skeleton": "light-dark(#ebebeb, #525252)",
134
+ "--color-shadow": "light-dark(#0000001A, #0000004D)",
135
+ "--color-tint-hover": "light-dark(black, white)",
136
+ "--color-background-red": "light-dark(#facecb, #ff9e973D)",
137
+ "--color-border-red": "light-dark(#e6bab8, #ff6f6c)",
138
+ "--color-icon-red": "light-dark(#89001a, #ff9e97)",
139
+ "--color-text-red": "light-dark(#89001a, #ffc6c1)",
140
+ "--color-background-orange": "light-dark(#fad0b5, #ffa2583D)",
141
+ "--color-border-orange": "light-dark(#e6bda2, #e2883e)",
142
+ "--color-icon-orange": "light-dark(#6e3500, #ffa258)",
143
+ "--color-text-orange": "light-dark(#6e3500, #ffc9a2)",
144
+ "--color-background-yellow": "light-dark(#f8da9d, #deb4333D)",
145
+ "--color-border-yellow": "light-dark(#e4c279, #c0990e)",
146
+ "--color-icon-yellow": "light-dark(#584400, #deb433)",
147
+ "--color-text-yellow": "light-dark(#584400, #fdcf4f)",
148
+ "--color-background-green": "light-dark(#c5e5c0, #84c9803D)",
149
+ "--color-border-green": "light-dark(#b2d1ac, #69ad67)",
150
+ "--color-icon-green": "light-dark(#0c5700, #84c980)",
151
+ "--color-text-green": "light-dark(#0c5700, #9fe59b)",
152
+ "--color-background-teal": "light-dark(#a5e3d6, #7ec6b83D)",
153
+ "--color-border-teal": "light-dark(#94d6c8, #63ab9d)",
154
+ "--color-icon-teal": "light-dark(#005348, #7ec6b8)",
155
+ "--color-text-teal": "light-dark(#005348, #99e2d3)",
156
+ "--color-background-cyan": "light-dark(#a3e0ef, #83c2d43D)",
157
+ "--color-border-cyan": "light-dark(#91d3e3, #67a7b8)",
158
+ "--color-icon-cyan": "light-dark(#00505f, #83c2d4)",
159
+ "--color-text-cyan": "light-dark(#00505f, #9edef0)",
160
+ "--color-background-blue": "light-dark(#c4ddfb, #9eb7ff3D)",
161
+ "--color-border-blue": "light-dark(#b1c9e7, #6d9cfe)",
162
+ "--color-icon-blue": "light-dark(#00458c, #9eb7ff)",
163
+ "--color-text-blue": "light-dark(#00458c, #c7d3ff)",
164
+ "--color-background-purple": "light-dark(#eccef3, #f297ff3D)",
165
+ "--color-border-purple": "light-dark(#d8bbdf, #dd74f0)",
166
+ "--color-icon-purple": "light-dark(#700084, #f297ff)",
167
+ "--color-text-purple": "light-dark(#700084, #fac1ff)",
168
+ "--color-background-pink": "light-dark(#fccadc, #ff99c33D)",
169
+ "--color-border-pink": "light-dark(#e7b7c8, #f273aa)",
170
+ "--color-icon-pink": "light-dark(#83004b, #ff99c3)",
171
+ "--color-text-pink": "light-dark(#83004b, #ffc3da)",
172
+ "--color-background-gray": "light-dark(#e5e5e5, var(--color-neutral))",
173
+ "--color-border-gray": "light-dark(#d4d4d4, #262626)",
174
+ "--color-icon-gray": "light-dark(#525252, #a3a3a3)",
175
+ "--color-text-gray": "light-dark(#262626, #e5e5e5)",
176
+ "--radius-none": "0.25rem",
177
+ "--radius-inner": "0.375rem",
178
+ "--radius-element": "0.625rem",
179
+ "--radius-container": "0.75rem",
180
+ "--radius-page": "1.75rem",
181
+ "--radius-full": "9999px",
182
+ "--shadow-low": "0 2px 4px light-dark(oklch(0 0 0 / 5%), oklch(0 0 0 / 25%)), 0 4px 8px light-dark(oklch(0 0 0 / 10%), oklch(0 0 0 / 40%)), inset 0 0 0 1px light-dark(transparent, oklch(1 0 0 / 8%))",
183
+ "--shadow-med": "0 2px 4px light-dark(oklch(0 0 0 / 5%), oklch(0 0 0 / 35%)), 0 4px 12px light-dark(oklch(0 0 0 / 10%), oklch(0 0 0 / 50%)), inset 0 0 0 1px light-dark(transparent, oklch(1 0 0 / 12%))",
184
+ "--shadow-high": "0 4px 6px light-dark(oklch(0 0 0 / 10%), oklch(0 0 0 / 50%)), 0 12px 24px light-dark(oklch(0 0 0 / 15%), oklch(0 0 0 / 70%)), inset 0 0 0 1px light-dark(transparent, oklch(1 0 0 / 15%))",
185
+ "--shadow-inset-hover": "inset 0px 0px 0px 2px #0074e24D",
186
+ "--shadow-inset-selected": "inset 0px 0px 0px 2px #0074e280",
187
+ "--shadow-inset-success": "inset 0px 0px 0px 2px #1981004D",
188
+ "--shadow-inset-warning": "inset 0px 0px 0px 2px #ffce2f4D",
189
+ "--shadow-inset-error": "inset 0px 0px 0px 2px #e33f4a4D"
190
+ },
191
+ icons: neutralIconRegistry,
192
+ };
193
+
194
+ export { neutralIconRegistry };
@@ -0,0 +1,26 @@
1
+ /**
2
+ * @generated by `astryx theme build` — do not edit manually.
3
+ * Source: src/neutralTheme.ts
4
+ * Command: astryx theme build src/neutralTheme.ts --out dist/theme.css
5
+ * Generated: 2026-06-24T22:42:03.576Z
6
+ */
7
+
8
+ // Generated by astryx theme build
9
+ export {};
10
+
11
+ declare module '@astryxdesign/core/Heading' {
12
+ interface XDSHeadingLevelMap {
13
+ '1': true;
14
+ '2': true;
15
+ '3': true;
16
+ '4': true;
17
+ '5': true;
18
+ '6': true;
19
+ }
20
+ }
21
+
22
+ declare module '@astryxdesign/core/Badge' {
23
+ interface XDSBadgeVariantMap {
24
+ 'gray': true;
25
+ }
26
+ }
@@ -0,0 +1,2 @@
1
+ export declare const neutralTheme: import("@astryxdesign/core/theme").DefinedTheme;
2
+ //# sourceMappingURL=neutralTheme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"neutralTheme.d.ts","sourceRoot":"","sources":["../src/neutralTheme.ts"],"names":[],"mappings":"AA0DA,eAAO,MAAM,YAAY,iDAgiBvB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export { neutralTheme } from './neutralTheme';
2
+ export { neutralIconRegistry } from './icons';
3
+ //# sourceMappingURL=source.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"source.d.ts","sourceRoot":"","sources":["../src/source.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,YAAY,EAAC,MAAM,gBAAgB,CAAC;AAC5C,OAAO,EAAC,mBAAmB,EAAC,MAAM,SAAS,CAAC"}