#blur #mica #windowing #acrylic #vibrancy

window-vibrancy

Make your windows vibrant

20 releases

0.7.1 Nov 12, 2025
0.6.0 Feb 21, 2025
0.5.2 Sep 8, 2024
0.5.0 Feb 7, 2024
0.1.1 Mar 29, 2022

#95 in GUI

Download history 138262/week @ 2026-01-25 170853/week @ 2026-02-01 200375/week @ 2026-02-08 213424/week @ 2026-02-15 249454/week @ 2026-02-22 279274/week @ 2026-03-01 330683/week @ 2026-03-08 288456/week @ 2026-03-15 293849/week @ 2026-03-22 302684/week @ 2026-03-29 327651/week @ 2026-04-05 339808/week @ 2026-04-12 320057/week @ 2026-04-19 328665/week @ 2026-04-26 343592/week @ 2026-05-03 356624/week @ 2026-05-10

1,384,916 downloads per month
Used in 447 crates (4 directly)

Apache-2.0 OR MIT

1.5MB
773 lines

window-vibrancy

Chat Server

Make your windows vibrant.

Tip

If you're using tauri@v1, you need to use version 0.4 of this crate.

Platform-specific

  • Linux: Unsupported, Blur and any vibrancy effects are controlled by the compositor installed on the end-user system.

Example

use window_vibrancy::{apply_blur, apply_vibrancy, NSVisualEffectMaterial};

#[cfg(target_os = "macos")]
apply_vibrancy(&window, NSVisualEffectMaterial::HudWindow, None, None).expect("Unsupported platform! 'apply_vibrancy' is only supported on macOS");

#[cfg(target_os = "windows")]
apply_blur(&window, Some((18, 18, 18, 125))).expect("Unsupported platform! 'apply_blur' is only supported on Windows");

Tauri

if you are using tauri, don't forget to:

For a more complete example of usage with tauri, see examples/tauri.

Available functions

Function Supported platforms Notes
apply_blur&clear_blur Windows 7/10/11 (22H1 only) Bad performance when resizing/dragging the window on Windows 11 build 22621+.
apply_acrylic&clear_acrylic Windows 10/11 Bad performance when resizing/dragging the window on Windows 10 v1903+ and Windows 11 build 22000.
apply_mica&clear_mica Windows 11
apply_vibrancy&clear_vibrancy macOS 10.10 and newer

Screenshots

apply_blur apply_acrylic apply_mica apply_vibrancy
apply_blur screenshot apply_blur screenshot apply_mica screenshot apply_vibrancy screenshot

Dependencies

~0–16MB
~130K SLoC