@conscia-labs/design-system 1.1.2 → 1.2.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/AGENT_GUIDE.md +9 -0
- package/README.md +112 -939
- package/agent-manifest.json +1 -1
- package/dist/foundation.css +43 -19
- package/dist/standalone.css +1 -1
- package/dist/styles.css +43 -19
- package/package.json +1 -1
package/AGENT_GUIDE.md
CHANGED
|
@@ -181,6 +181,9 @@ Use semantic tokens and utilities rather than palette colors:
|
|
|
181
181
|
- Surfaces: `canvas`, `surface`, `surface-raised`, `surface-muted`, and
|
|
182
182
|
`surface-floating`.
|
|
183
183
|
- Text: `text-primary`, `text-secondary`, `text-supporting`, and `text-muted`.
|
|
184
|
+
- Brand: `brand` with `brand-foreground` for burgundy identity surfaces,
|
|
185
|
+
`brand-accent` for blue emphasis, and `brand-supporting-*` for restrained
|
|
186
|
+
green expression. Use the matching foreground token on filled surfaces.
|
|
184
187
|
- Actions and selection: `action-*` and `selection-*`.
|
|
185
188
|
- Status: `information-*`, `success-*`, `warning-*`, and `danger-*`.
|
|
186
189
|
- Neutral structure: `border-subtle`, `control-border`, and shared radius,
|
|
@@ -190,6 +193,12 @@ Use `className` for layout and local composition. Override semantic variables
|
|
|
190
193
|
only when the product intentionally changes a system-level decision. Avoid
|
|
191
194
|
component descendant selectors.
|
|
192
195
|
|
|
196
|
+
The low-level `palette-burgundy`, `palette-electric-blue`, and `palette-green`
|
|
197
|
+
variables preserve official brand values, but applications should compose with
|
|
198
|
+
the semantic brand roles above. Do not use `text-brand` as ordinary text on a
|
|
199
|
+
dark canvas; burgundy is intentionally stable across appearances and is
|
|
200
|
+
designed as an identity surface with `text-brand-foreground`.
|
|
201
|
+
|
|
193
202
|
## Accessibility ownership
|
|
194
203
|
|
|
195
204
|
The package provides component-level keyboard behavior, focus management, and
|