summaryrefslogtreecommitdiff
path: root/tvg/src/colors.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2023-02-13 00:56:03 -0500
committerMicha White <botahamec@outlook.com>2023-02-13 00:56:03 -0500
commitbcc14d80b3d29651c228efcecc05ceec9a922773 (patch)
tree9d56af63e7f132c972e8efd4bbbe0301e2d9c7bc /tvg/src/colors.rs
parent38008d6a84457afad717e4524adcf963305fb0b7 (diff)
Expose the color module
Diffstat (limited to 'tvg/src/colors.rs')
-rw-r--r--tvg/src/colors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvg/src/colors.rs b/tvg/src/colors.rs
index 9f4e7e5..494e6aa 100644
--- a/tvg/src/colors.rs
+++ b/tvg/src/colors.rs
@@ -11,7 +11,7 @@ use crate::TvgError;
/// For the three defined color encodings, each will yield a list of
/// `color_count` RGBA tuples.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
-pub struct ColorTable<C: Color> {
+pub(crate) struct ColorTable<C: Color> {
colors: Box<[C]>,
}