Skip to content
Open
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
5 changes: 2 additions & 3 deletions src/tabbed-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ export class TabbedCard extends LitElement {
@state() private _tabs!: Tab[];
@property() protected _styles = {
"--mdc-theme-primary": "var(--primary-text-color)", // Color of the activated tab's text, indicator, and ripple.
"--mdc-tab-text-label-color-default":
"rgba(var(--rgb-primary-text-color), 0.8)", // Color of an unactivated tab label.
"--mdc-tab-color-default": "rgba(var(--rgb-primary-text-color), 0.7)", // Color of an unactivated icon.
"--mdc-tab-text-label-color-default": "rgba(from var(--primary-text-color) r g b / 0.8)", // Color of an unactivated tab label.
"--mdc-tab-color-default": "rgba(from var(--primary-text-color) r g b / 0.7)", // Color of an unactivated icon.
"--mdc-typography-button-font-size": "14px",
};

Expand Down