////
///
/// Root and Theme Styles
/// ===========================================================================
///
/// Base styles for the document root and theme variations.
/// Establishes visibility inheritance and provides hooks for
/// light/dark theme CSS custom property overrides.
///
/// @group Root
/// @author Scape Agency
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

// ============================================================================
// Root Styles
// ============================================================================

/// Ensures that visibility is inherited by all elements by default.
* {
    visibility: inherit;
}

:root,
[theme="light"] {
}
