How to change the color of the current tab in the tabs bar?

All tabs have the same color. The current tab is highlighted with a thin line - this is very inconvenient. How to change the background color of the current tab header?

You can add custom css when editing the Interface colors in the color scheme editor. The editor on the right side of the window will allow you to input the custom css (or LESS). To access the color scheme editor simply hit Tools > Color Scheme Editor.

To change the color of active tabs you could use something like:

tab[selected] {
  background: red;
}

I tried this and it doesn’t work https://yadi.sk/i/3UAGtGcr32SCEe
(I restarted komodo)
What am I doing wrong?

Add !important after your color:

tab[selected] {
  background: red !important;
}
1 Like

Big thanx! It works!!