@dbx-tools/shared-core 0.3.31 → 0.3.32

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/brand.ts +1 -1
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
- "version": "0.3.31",
25
+ "version": "0.3.32",
26
26
  "types": "index.ts",
27
27
  "type": "module",
28
28
  "exports": {
package/src/brand.ts CHANGED
@@ -35,7 +35,7 @@ export const BrandColorsSchema = z
35
35
  .object({
36
36
  primary: color.default("#FF3621").describe("Primary action and identity color."),
37
37
  primaryHover: color.default("#D92D18").describe("Primary hover or pressed color."),
38
- accent: color.default("#00A972").describe("Secondary accent color."),
38
+ accent: color.default("#2EB88A").describe("Secondary accent color."),
39
39
  foreground: color.default("#0B2026").describe("Default text and mark color."),
40
40
  background: color.default("#FFFFFF").describe("Default page background."),
41
41
  surface: color.default("#F6F7F8").describe("Secondary surface background."),