Last active
July 25, 2023 06:45
-
-
Save moisadoru/5fd9ee1584ed4022958cfa40c90064e9 to your computer and use it in GitHub Desktop.
Tilda custom GTK style (including a fix for the scrollbar). Do a backup of the old file, and copy this one to ~/.config/tilda/style.css
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
/* | |
The .8 transparency value can be calculated using the transparency config value (V) | |
with the formula: (100-V)/100. I have the transparency set to 20, so when I apply the | |
formula, I get: (100-20)/100 = 80/100 = 0.8 = .8 | |
For no transparency (V = 0), set the value to 1. | |
*/ | |
notebook > header { | |
background-color: rgba(0,0,0,.8); | |
border: none; | |
} | |
notebook > header > tabs { | |
background-color: transparent; | |
} | |
notebook > header > tabs > tab { | |
background: #000; | |
opacity: .8; | |
border-radius: 0; | |
color: gray; | |
border: 0; | |
margin: 0 1px; | |
padding: 6px; | |
min-width: 100px; | |
} | |
notebook > header > tabs > tab:checked { | |
color: orange; | |
background-color: transparent; | |
} | |
scrollbar { | |
background: #000; | |
opacity: .8; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've adjusted it to my colorsheme which is base16-railscast