There is a way you can hack transparency settings in Budgie Panels using a css file. My only experience with using this is setting a persistant, non-dynamic transparency.
However the transparency levels are more configurable than using the Dynamic/Transparent settings in Budgie Desktop Settings.
First turn on hidden files.
Then navigate to /home/user/.config/gtk-3.0
There may be a file called gtk.css
in this location. If there isn't, create it.
Inside the editor write the following:
.budgie-panel {
background-image: none;
background-color: rgba(0,0,0,0.60);
}
rgba(0,0,0,0.60) 0.60 = the transparency.
1.0 is fully opaque, 0.00 is fully transparent
I assume it's possible but have not tried to manipulate the RGB aspect
Save the file to: /home/user/.config/gtk-3.0/gtk.css
NOTE: The Budgie Panel will not show any transparency changes until after you logout and login again. Yes, this is a pain. However you have a great deal more control over exact color, hue, and transparency of your panels. This will remove all dynamic functions however.
I am not aware of any other usages that can be done with this file or other css code. This is the only way I know to tweak transparency in this way.
Hope it helps some of you.. it's much less complicated than installing the theme I saw you guys with! 😃