Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
Notable API additions and breaking changes. For the full commit log, see
[GitHub Releases](https://github.com/mirrorstack-ai/web-ui-kit/releases).

## 0.5.11

- **`secondary` is now the brand teal.** The secondary tonal family shifts from
the M3-generated blue-grey to the brand teal — light `#006973`, a solid
`#0e8a97` on dark (white `on-secondary`, so filled secondary buttons read like
a deep-teal CTA) — with its container/on/fixed tones in the same teal ramp.
This gives apps a second on-brand accent (the dark `primary` remains the M3
light-blue); `color="secondary"` now reads as teal in both modes. Only the
secondary family changes; primary and the neutrals are untouched.

## 0.5.10

- **Warm dark theme.** The dark-mode neutral tokens shift from cool near-black
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mirrorstack-ai/web-ui-kit",
"packageManager": "pnpm@10.29.3",
"version": "0.5.10",
"version": "0.5.11",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
18 changes: 9 additions & 9 deletions src/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
--color-primary-fixed: #c7e7ff;
--color-on-primary-fixed: #001e2e;

--color-secondary: #39656b;
--color-secondary: #006973;
--color-on-secondary: #ffffff;
--color-secondary-container: #beecf3;
--color-on-secondary-container: #224f55;
--color-secondary-fixed-dim: #b4dfe6;
--color-secondary-container: #9ceaf0;
--color-on-secondary-container: #00474e;
--color-secondary-fixed-dim: #82d3db;

--color-tertiary: #7a4a97;
--color-on-tertiary: #ffffff;
Expand Down Expand Up @@ -86,11 +86,11 @@
--color-primary-fixed: #c7e7ff;
--color-on-primary-fixed: #001e2e;

--color-secondary: #b6c9d8;
--color-on-secondary: #21323e;
--color-secondary-container: #384956;
--color-on-secondary-container: #d2e5f5;
--color-secondary-fixed-dim: #154a51;
--color-secondary: #0e8a97;
--color-on-secondary: #ffffff;
--color-secondary-container: #094a50;
--color-on-secondary-container: #a7e9f0;
--color-secondary-fixed-dim: #00525a;

--color-tertiary: #cdc0e9;
--color-on-tertiary: #342b4b;
Expand Down