material-ui-rs 0.5.1

A Material3 inspired theme for `iced`
Documentation
pub const SPACING_BETWEEN_TOOLTIP_AND_ANCHOR: f32 = 4.0;
pub const PLAIN_MIN_HEIGHT: f32 = 24.0;
pub const PLAIN_MIN_WIDTH: f32 = 40.0;
pub const PLAIN_MAX_WIDTH: f32 = 200.0;
pub const PLAIN_HORIZONTAL_SPACE: f32 = 8.0;
pub const PLAIN_VERTICAL_SPACE: f32 = 4.0;
pub const PLAIN_CONTAINER_SHAPE: f32 = super::super::shape::CORNER_EXTRA_SMALL;
pub const PLAIN_SUPPORTING_TEXT: super::super::typography::TypeScale =
    super::super::typography::BODY_SMALL;

// AndroidX Compose Material3 Tooltip.kt animateTooltip.
pub const FADE_IN_DURATION_MS: u16 = 150;
pub const FADE_OUT_DURATION_MS: u16 = 75;
pub const SCALE_START: f32 = 0.8;
pub const ANIMATION_DURATION_MS: u16 = FADE_IN_DURATION_MS;

pub const RICH_MAX_WIDTH: f32 = 320.0;
pub const RICH_MIN_HEIGHT: f32 = 24.0;
pub const RICH_MIN_WIDTH: f32 = 40.0;
pub const RICH_HORIZONTAL_SPACE: f32 = 16.0;
pub const RICH_TEXT_VERTICAL_SPACE_WITHOUT_TITLE_OR_ACTION: f32 = 4.0;
pub const RICH_HEIGHT_TO_SUBHEAD_FIRST_LINE: f32 = 28.0;
pub const RICH_HEIGHT_FROM_SUBHEAD_TO_TEXT_FIRST_LINE: f32 = 24.0;
pub const RICH_TEXT_BOTTOM_PADDING: f32 = 16.0;
pub const RICH_ACTION_LABEL_MIN_HEIGHT: f32 = 36.0;
pub const RICH_ACTION_LABEL_BOTTOM_PADDING: f32 = 8.0;
pub const RICH_CONTAINER_SHAPE: f32 = super::super::shape::CORNER_MEDIUM;
pub const RICH_CONTAINER_ELEVATION_LEVEL: u8 = 2;
pub const RICH_SUBHEAD_TEXT: super::super::typography::TypeScale =
    super::super::typography::TITLE_SMALL;
pub const RICH_SUPPORTING_TEXT: super::super::typography::TypeScale =
    super::super::typography::BODY_MEDIUM;
pub const RICH_ACTION_LABEL_TEXT: super::super::typography::TypeScale =
    super::super::typography::LABEL_LARGE;