//! Iced framework integration.
//!
//! Provides [`From<Color>`](crate::Color) for [`iced_core::Color`].
//!
//! # Enable
//!
//! ```toml
//! [dependencies]
//! chromata = { version = "1", features = ["iced-integration"] }
//! ```
//!
//! # Example
//!
//! ```rust,ignore
//! use chromata::popular::gruvbox;
//!
//! let theme = gruvbox::DARK_HARD;
//! let bg: iced_core::Color = theme.bg.into();
//! let fg: iced_core::Color = theme.fg.into();
//! ```
use crateColor;
/// Convert a chromata Color to an iced RGBA color (alpha = 1.0).