qt - Change color of purple tab text in Konsole CSS -
when input comes in on tab not active, text tab changes purple color. css selectors need use change this?
i using custom stylesheet in konsole change how tabs look, can't figure out how change 1 value. this page makes no mention of it.
i'm using konsole 2.13.2(kde 4.13.3) on xubuntu 14.04(xfce).
as of today, tab-activity color appears set by
void tabbedviewcontainer::settabactivity(int index , bool activity) { const qpalette& palette = _tabbar->palette(); kcolorscheme colorscheme(palette.currentcolorgroup()); const qcolor colorschemeactive = colorscheme.foreground(kcolorscheme::activetext).color(); const qcolor normalcolor = palette.text().color(); const qcolor activitycolor = kcolorutils::mix(normalcolor, colorschemeactive); qcolor color = activity ? activitycolor : qcolor(); if (color != _tabbar->tabtextcolor(index)) _tabbar->settabtextcolor(index, color); }
in konsole's src/viewcontainer.cpp
, therefore beyond reach of custom stylesheet configured in konsole.
note how kcolorscheme::activetext
mixed normalcolor
. can have influence on color changing "active text" color in kde system settings -> color -> colors tab -> active text. konsole has restarted changes take effect.
Comments
Post a Comment