window-vibrancy

Chat Server

Make your windows vibrant.

Platform-specific

Available methods

Example

```rs use windowvibrancy::{applyblur, apply_vibrancy, NSVisualEffectMaterial};

[cfg(target_os = "macos")]

applyvibrancy(&window, NSVisualEffectMaterial::AppearanceBased).expect("Unsupported platform! 'applyvibrancy' is only supported on macOS");

[cfg(target_os = "windows")]

applyblur(&window, Some((18, 18, 18, 125))).expect("Unsupported platform! 'applyblur' is only supported on Windows"); ```