diff --git a/.changeset/bui-themer-bui-palette-additions.md b/.changeset/bui-themer-bui-palette-additions.md
new file mode 100644
index 0000000000..645641b787
--- /dev/null
+++ b/.changeset/bui-themer-bui-palette-additions.md
@@ -0,0 +1,5 @@
+---
+'@backstage/plugin-mui-to-bui': minor
+---
+
+This is the first release of the Material UI to Backstage UI migration helper plugin. It adds a new page at `/mui-to-bui` that converts an existing MUI v5 theme into Backstage UI (BUI) CSS variables, with live preview and copy/download.
diff --git a/.changeset/unified-theme-attr-stack.md b/.changeset/unified-theme-attr-stack.md
new file mode 100644
index 0000000000..003e05018f
--- /dev/null
+++ b/.changeset/unified-theme-attr-stack.md
@@ -0,0 +1,5 @@
+---
+'@backstage/theme': patch
+---
+
+The `UnifiedThemeProvider` now coordinates theme attributes on the document `body` in case multiple theme providers are rendered.
diff --git a/packages/app/package.json b/packages/app/package.json
index 56b5178692..1623ca09e5 100644
--- a/packages/app/package.json
+++ b/packages/app/package.json
@@ -56,6 +56,7 @@
"@backstage/plugin-home": "workspace:^",
"@backstage/plugin-kubernetes": "workspace:^",
"@backstage/plugin-kubernetes-cluster": "workspace:^",
+ "@backstage/plugin-mui-to-bui": "workspace:^",
"@backstage/plugin-notifications": "workspace:^",
"@backstage/plugin-org": "workspace:^",
"@backstage/plugin-permission-react": "workspace:^",
diff --git a/packages/app/src/App.tsx b/packages/app/src/App.tsx
index ad525420a7..45f91ce8a9 100644
--- a/packages/app/src/App.tsx
+++ b/packages/app/src/App.tsx
@@ -73,6 +73,7 @@ import {
} from '@backstage/plugin-notifications';
import { CustomizableHomePage } from './components/home/CustomizableHomePage';
import { HomePage } from './components/home/HomePage';
+import { BuiThemerPage } from '@backstage/plugin-mui-to-bui';
const app = createApp({
apis,
@@ -208,6 +209,7 @@ const routes = (
{customDevToolsPage}