1pub mod css;
2mod utils;
3
4#[allow(non_camel_case_types)]
5#[deprecated(
6 since = "1.2.0",
7 note = "Please use `css::{color, colors, Color, Colors, COLORS_DATA}` instead, This will no longer exist above version 1.3.0 ."
8)]
9pub type color = css::color;
10
11#[deprecated(
12 since = "1.2.0",
13 note = "Please use `css::colors` instead, This will no longer exist above version 1.3.0 ."
14)]
15pub mod colors {
16 pub use crate::css::colors::*;
17}
18
19#[allow(non_snake_case)]
20#[deprecated(
21 since = "1.2.0",
22 note = "Please use `css::Color` instead, This will no longer exist above version 1.3.0 ."
23)]
24pub type Color = css::Color;
25
26#[allow(non_snake_case)]
27#[deprecated(
28 since = "1.2.0",
29 note = "Please use `css::Colors` instead, This will no longer exist above version 1.3.0 ."
30)]
31pub mod Colors {
32 pub use crate::css::Colors::*;
33}
34
35#[deprecated(
36 since = "1.2.0",
37 note = "Please use `css::COLORS_DATA` instead, This will no longer exist above version 1.3.0 ."
38)]
39pub static COLORS_DATA: [(&str, [u8; 3]); 148] = css::COLORS_DATA;