//! tiny-skia 2D rendering integration.
//!
//! Provides [`From<Color>`](crate::Color) for
//! [`tiny_skia::PremultipliedColorU8`].
//!
//! # Enable
//!
//! ```toml
//! [dependencies]
//! chromata = { version = "1", features = ["tiny-skia-integration"] }
//! ```
//!
//! # Example
//!
//! ```rust,ignore
//! use chromata::popular::gruvbox;
//!
//! let theme = gruvbox::DARK_HARD;
//! let color: tiny_skia::PremultipliedColorU8 = theme.bg.into();
//! ```
use crateColor;
/// Convert a chromata Color to a tiny-skia premultiplied RGBA color (alpha = 255).