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