diff --git a/src/lib.rs b/src/lib.rs index 7fdc402..e4015af 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,15 +18,10 @@ pub enum ShhhError { #[derive(Debug, Clone)] pub struct ShadowOptions { - /// Corner rounding radius in pixels (default 8). pub corner_radius: u32, - /// Shadow offset as (x, y) pixels (default (-20, -20)). pub offset: (i32, i32), - /// Shadow opacity 0–255 (default 150). pub shadow_alpha: u8, - /// Shadow spread distance in pixels (default 26). pub spread: u32, - /// Internal blur radius applied to the shadow layer (default 5). pub blur_radius: u32, }