File tree Expand file tree Collapse file tree
theme-neo-dark/apps/portal/shared
theme-neo-light/apps/portal/shared Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99 .neo-tab-strip {
1010 .neo-active-tab-indicator {
11- background-color : #3E63DD ;
11+ background-color : var ( --portal-tab-indicator-bg ) ;
1212 }
1313 }
1414}
1515
1616// must not be inside the root class to honor the styling for tab button drag&drop
1717.portal-shared-tab-header-toolbar.neo-tab-header-toolbar {
18- background-color : #8BA6FF ;
18+ background-color : var ( --portal-tab-toolbar-bg ) ;
1919
2020 .neo-tab-header-button.neo-button {
2121 .neo-button-glyph {
22- color : #fff ;
22+ color : var ( --portal-tab-text-color ) ;
2323 }
2424
2525 .neo-button-ripple {
26- background-color : #3E63DD ;
26+ background-color : var ( --portal-tab-indicator-bg ) ;
2727 }
2828
2929 & .neo-button.pressed .neo-tab-button-indicator {
30- background-color : #3E63DD ;
30+ background-color : var ( --portal-tab-indicator-bg ) ;
3131 }
3232
3333 .neo-button-text {
34- color : #fff ;
34+ color : var ( --portal-tab-text-color ) ;
3535 }
3636
3737 & .pressed {
3838 .neo-button-glyph {
39- color : #3E63DD ;
39+ color : var ( --portal-tab-text-color-pressed ) ;
4040 }
4141 }
4242 }
4343
4444 .neo-tab-strip .neo-active-tab-indicator {
45- background-color : #3E63DD ;
45+ background-color : var ( --portal-tab-indicator-bg ) ;
4646 }
4747}
Original file line number Diff line number Diff line change 1+ :root .neo-theme-neo-dark {
2+ --portal-tab-indicator-bg : var (--sem-color-bg-primary-default );
3+ --portal-tab-text-color : var (--sem-color-text-neutral-contrast );
4+ --portal-tab-text-color-pressed : var (--sem-color-text-primary-default );
5+ --portal-tab-toolbar-bg : var (--sem-color-bg-primary-hover );
6+ }
Original file line number Diff line number Diff line change 1+ :root .neo-theme-neo-light {
2+ --portal-tab-indicator-bg : #3E63DD ;
3+ --portal-tab-text-color : #fff ;
4+ --portal-tab-text-color-pressed : #3E63DD ;
5+ --portal-tab-toolbar-bg : #8BA6FF ;
6+ }
You can’t perform that action at this time.
0 commit comments