plotters/style/
mod.rs

1/*!
2  The style for shapes and text, font, color, etc.
3*/
4mod color;
5pub mod colors;
6mod font;
7mod palette;
8mod shape;
9mod size;
10mod text;
11
12/// Definitions of palettes of accessibility
13pub use self::palette::*;
14pub use color::{Color, HSLColor, PaletteColor, RGBAColor, RGBColor};
15pub use colors::{BLACK, BLUE, CYAN, GREEN, MAGENTA, RED, TRANSPARENT, WHITE, YELLOW};
16pub use font::{
17    FontDesc, FontError, FontFamily, FontResult, FontStyle, FontTransform, IntoFont, LayoutBox,
18};
19pub use shape::ShapeStyle;
20pub use size::{AsRelative, RelativeSize, SizeDesc};
21pub use text::text_anchor;
22pub use text::{IntoTextStyle, TextStyle};