Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion crates/bevy_color/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ mod linear_rgba;
mod oklaba;
mod oklcha;
pub mod palettes;
mod spectral;
mod srgba;
#[cfg(test)]
mod test_colors;
Expand All @@ -125,7 +126,7 @@ mod xyza;
pub mod prelude {
pub use crate::{
color::*, color_ops::*, hsla::*, hsva::*, hwba::*, laba::*, lcha::*, linear_rgba::*,
oklaba::*, oklcha::*, srgba::*, xyza::*,
oklaba::*, oklcha::*, spectral::*, srgba::*, xyza::*,
};
}

Expand All @@ -142,6 +143,7 @@ pub use lcha::*;
pub use linear_rgba::*;
pub use oklaba::*;
pub use oklcha::*;
pub use spectral::*;
pub use srgba::*;
pub use xyza::*;

Expand Down
Loading
Loading