summaryrefslogtreecommitdiffstats
path: root/vendor/plotters/src/style/mod.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/plotters/src/style/mod.rs
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/plotters/src/style/mod.rs')
-rw-r--r--vendor/plotters/src/style/mod.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/plotters/src/style/mod.rs b/vendor/plotters/src/style/mod.rs
new file mode 100644
index 000000000..7d7c9ac35
--- /dev/null
+++ b/vendor/plotters/src/style/mod.rs
@@ -0,0 +1,26 @@
+/*!
+ The style for shapes and text, font, color, etc.
+*/
+mod color;
+pub mod colors;
+mod font;
+mod palette;
+mod shape;
+mod size;
+mod text;
+
+/// Definitions of palettes of accessibility
+pub use self::palette::*;
+pub use color::{Color, HSLColor, PaletteColor, RGBAColor, RGBColor};
+pub use colors::{BLACK, BLUE, CYAN, GREEN, MAGENTA, RED, TRANSPARENT, WHITE, YELLOW};
+
+#[cfg(feature = "full_palette")]
+pub use colors::full_palette;
+
+pub use font::{
+ FontDesc, FontError, FontFamily, FontResult, FontStyle, FontTransform, IntoFont, LayoutBox,
+};
+pub use shape::ShapeStyle;
+pub use size::{AsRelative, RelativeSize, SizeDesc};
+pub use text::text_anchor;
+pub use text::{IntoTextStyle, TextStyle};