//! # Shadow System
//!
//! Complete shadow system for Element Plus components.
/// Base shadows
pub const BOX_SHADOW_BASE: &str = "0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04)";
pub const BOX_SHADOW_LIGHT: &str = "0 2px 12px 0 rgba(0, 0, 0, 0.1)";
pub const BOX_SHADOW_LIGHTER: &str = "0 1px 3px 0 rgba(0, 0, 0, 0.1)";
pub const BOX_SHADOW_DARK: &str = "0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .12)";