Last active
July 10, 2019 08:23
-
-
Save stevenferrer/a76c0a564c64703f7623b8242ddc140f to your computer and use it in GitHub Desktop.
Konsole breeze dark tab style
This file contains hidden or 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::tab { | |
color: #808080; | |
background-color: #444c53; | |
font-size: 12px; | |
font-family: "Roboto"; | |
height: 25px; | |
padding: 0px; | |
border: 1px; | |
} | |
QTabBar::tab:hover { | |
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #1e5799, stop: 0.01 #2989d8, stop: 0.11 #444c53); | |
} | |
QTabBar::tab:selected { | |
font-weight: bold; | |
color: #FFFFFF; | |
background-color: #41464A; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment