pub use Color;
pub use ;
pub use ;
/// Create a gradient from a slice of colors.
///
/// Colors can be hex strings like `"#ff0000"`, CSS-style `"rgb(255,0,0)"`,
/// or named colors like `"red"`.
///
/// ```
/// use chromakopia::gradient;
/// let text = gradient(&["#ff0000", "#00ff00", "#0000ff"]).apply("Hello, world!");
/// ```