@cere/cere-design-system 0.0.40 → 0.0.42

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/index.mjs CHANGED
@@ -3,6 +3,18 @@ import { createTheme } from "@mui/material/styles";
3
3
 
4
4
  // src/theme/primitives.ts
5
5
  var primitives = {
6
+ /**
7
+ * Cere brand violet — the company's primary action color across web
8
+ * surfaces. Use via `semantic.action.primary` rather than reaching for
9
+ * raw hex.
10
+ */
11
+ violet: {
12
+ 100: "#f0e0fb",
13
+ 300: "#d0bcff",
14
+ 500: "#aa44f2",
15
+ 600: "#7c59ac"
16
+ },
17
+ /** Legacy MUI blue. Retained for code paths that still reach for blue tokens by name (e.g. ROB highlights). Not the brand primary. */
6
18
  blue: {
7
19
  500: "#1976d2",
8
20
  600: "#1565c0"
@@ -144,8 +156,8 @@ var workflowConnectionColors = {
144
156
  // src/theme/semantic.ts
145
157
  var semantic = {
146
158
  action: {
147
- primary: primitives.blue[500],
148
- primaryHover: primitives.blue[600],
159
+ primary: primitives.violet[500],
160
+ primaryHover: primitives.violet[600],
149
161
  disabled: primitives.grey[400]
150
162
  },
151
163
  surface: {