You just need to change some values in your installed SoulsyHUD_Layout.toml.
The backgrounds are already 50% transparent (a = 128), so if you want about half of that you need to change all bg_color lines to bg_color = { r = 255, g = 255, b = 255, a = 64 } and if you want to change the icon transparency, change all icon_color to icon_color = { r = 200, g = 200, b = 200, a = 128 } -- same with name_color if you want the item names to be more transparent. It's easiest to use the search feature in your text editor to find them. The a = XXX changes the transparency; 255 being completely visible and 0 being invisible.
7 comments
It looks beautiful
The backgrounds are already 50% transparent (a = 128), so if you want about half of that you need to change all bg_color lines to
bg_color = { r = 255, g = 255, b = 255, a = 64 }
and if you want to change the icon transparency, change all icon_color toicon_color = { r = 200, g = 200, b = 200, a = 128 }
-- same with name_color if you want the item names to be more transparent. It's easiest to use the search feature in your text editor to find them.The a = XXX changes the transparency; 255 being completely visible and 0 being invisible.