Last active
August 9, 2019 21:45
-
-
Save ar-lex/65d9dc41487950a91d84c470cf97cca7 to your computer and use it in GitHub Desktop.
A style for Konsole tab bar that matches Breeze Dark Plasma theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QTabBar, | |
QTabBar::tab | |
{ | |
height: 20; | |
padding: 4; | |
border-top-width: 2; | |
border-top-style: solid; | |
border-top-color: #3b4045; | |
background-color: #232627; | |
color: #eff0f1; | |
} | |
QTabBar::tab:selected | |
{ | |
border-top-color: #398bb6; | |
} | |
QTabBar::tab:hover | |
{ | |
border-top-color: #91cce6; | |
background-color: #506672; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment