fix(dees-heading): adjust heading hr text color to use muted theme values

This commit is contained in:
2026-04-04 20:20:34 +00:00
parent 2104b3bdce
commit 0722f362f3
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026-04-04 - 3.55.6 - fix(dees-heading)
adjust heading hr text color to use muted theme values
- Updates the dees-heading horizontal rule variant to use softer light and dark theme text colors instead of pure black and white.
## 2026-04-04 - 3.55.5 - fix(chart) ## 2026-04-04 - 3.55.5 - fix(chart)
refine ECharts series styling and legend color handling across bar, donut, and radar charts refine ECharts series styling and legend color handling across bar, donut, and radar charts

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '3.55.5', version: '3.55.6',
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

@@ -56,7 +56,7 @@ export class DeesHeading extends DeesElement {
align-items: center; align-items: center;
text-align: center; text-align: center;
margin: 16px 0; margin: 16px 0;
color: ${cssManager.bdTheme('#000', '#fff')}; color: ${cssManager.bdTheme('#999', '#555')};
} }
/* Fade lines toward and away from text for hr style */ /* Fade lines toward and away from text for hr style */
.heading-hr::before { .heading-hr::before {