We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e16f5a9 commit 728138fCopy full SHA for 728138f
src/components/tab-bar/tab-bar.scss
@@ -97,6 +97,9 @@ $tab-separator-background-color: rgb(var(--contrast-600));
97
}
98
99
.mdc-tab__icon {
100
+ color: rgb(
101
+ var(--contrast-800)
102
+ ); // inactive tab's icon color, unless defined by tab item itself
103
margin-left: -0.25rem;
104
105
@@ -138,6 +141,12 @@ $tab-separator-background-color: rgb(var(--contrast-600));
138
141
transition: background-color 1s ease;
139
142
140
143
144
+
145
+ .mdc-tab__icon {
146
+ color: var(
147
+ --mdc-theme-primary
148
+ ); // active tab's icon color, unless defined by tab item itself
149
+ }
150
151
152
.mdc-tab__content {
0 commit comments