diff --git a/changelog.md b/changelog.md index 31a904d..789956c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-04-03 - 3.52.4 - fix(appui-maincontent) +adjust main content background theme colors + +- Update the main content background from pure white/near-black to softer light and dark theme values. + ## 2026-04-03 - 3.52.3 - fix(input-richtext) resolve rich text editor initialization and layout issues by bundling Tiptap locally and anchoring editor containers diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index a443663..f25eb68 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '3.52.3', + version: '3.52.4', description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' } diff --git a/ts_web/elements/00group-appui/dees-appui-maincontent/dees-appui-maincontent.ts b/ts_web/elements/00group-appui/dees-appui-maincontent/dees-appui-maincontent.ts index 578585f..ccc4584 100644 --- a/ts_web/elements/00group-appui/dees-appui-maincontent/dees-appui-maincontent.ts +++ b/ts_web/elements/00group-appui/dees-appui-maincontent/dees-appui-maincontent.ts @@ -70,7 +70,7 @@ export class DeesAppuiMaincontent extends DeesElement { grid-template-rows: auto 1fr; width: 100%; height: 100%; - background: ${cssManager.bdTheme('#ffffff', '#161616')}; + background: ${cssManager.bdTheme('#fafafa', '#0a0a0a')}; } .maincontainer {