-
The tauri/core/tauri-utils/src/lib.rs Lines 171 to 185 in 803c3a7 I would like the title bar's color to match the background color, but I haven't found any interface to set the title bar color or make it transparent on the I have set the window to be transparent, but this does not affect the title bar: let window = builder.transparent(true).build().unwrap(); ![]() I am not sure if this is a documentation issue or a new feature. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
On Windows, you can't really have a transparent native titlebar, instead, most apps will hide the native titlebar ( A few references: |
Beta Was this translation helpful? Give feedback.
On Windows, you can't really have a transparent native titlebar, instead, most apps will hide the native titlebar (
.decorations(false)
) and create a custom one using HTML/CSS/JS.A few references:
https://tauri.app/v1/guides/features/window-customization/
https://github.com/agmmnn/tauri-controls