I have been searching the web for a way to get a transparent background using Chromium running on Linux. Most of the posts are over 5 years old and any code snippet that is shown is not present in the latest Chromium code. I have been digging through the Chromium code and have made some slight modifications to get a window created with a depth of 32, but the rendered HTML is always over a white background.
<!DOCTYPE html>
<html>
<head>
</head>
<body style="background-color: rgba(80,80,80,0.25)">
<div style="width: 100px; height: 100px; background: rgba(255,0,0,1.0);"></div>
<div style="width: 100px; height: 100px; background: rgba(255,0,0,0.75);"></div>
<div style="width: 100px; height: 100px; background: rgba(255,0,0,0.5);"></div>
<div style="width: 100px; height: 100px; background: rgba(255,0,0,0.25);"></div>
</body>
</html>
Does anyone know if Chromium running on Linux can support a transparent background (ie I want to be able to see the background through the browser window).
Thanks in advance!