Often I like to open several panels and have tabs in all of them. With multiple panels, several active tabs appear . Other answers here will display the βactiveβ tab in all panels, rather than specifically setting the tabs you have selected.
The problem is the specificity of the selector .
Here is one way to specifically target only the selected tab, regardless of how many panels you open:
Open the Atom command palette (when shifting MAC + cmd + p) and find "style".
Select the "Application: Open Your Style Sheet" option.
Add this style:
.pane.active { .tab.active { background-color:
Save the style.less sheet and see your changes!
Note. This has been tested using the Atom Material interface theme , although it doesn't matter which theme you use.
source share