fix(appui-maincontent): adjust main content background theme colors

This commit is contained in:
2026-04-03 19:25:18 +00:00
parent cde2a833ef
commit 4370efe6fb
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # 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) ## 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 resolve rich text editor initialization and layout issues by bundling Tiptap locally and anchoring editor containers

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', 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.' description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
} }

View File

@@ -70,7 +70,7 @@ export class DeesAppuiMaincontent extends DeesElement {
grid-template-rows: auto 1fr; grid-template-rows: auto 1fr;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: ${cssManager.bdTheme('#ffffff', '#161616')}; background: ${cssManager.bdTheme('#fafafa', '#0a0a0a')};
} }
.maincontainer { .maincontainer {