Skip to content

Commit

Permalink
adjust alice blue to be the blue color specified in the wikipedia art…
Browse files Browse the repository at this point in the history
…icle about alice blue instead of off-white
  • Loading branch information
CleanCut committed Sep 10, 2023
1 parent 17edf4f commit 3a6d5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_render/src/color/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub enum Color {

impl Color {
/// <div style="background-color:rgb(94%, 97%, 100%); width: 10px; padding: 10px; border: 1px solid;"></div>
pub const ALICE_BLUE: Color = Color::rgb(0.94, 0.97, 1.0);
pub const ALICE_BLUE: Color = Color::rgb(0.61, 0.84, 0.894);
/// <div style="background-color:rgb(98%, 92%, 84%); width: 10px; padding: 10px; border: 1px solid;"></div>
pub const ANTIQUE_WHITE: Color = Color::rgb(0.98, 0.92, 0.84);
/// <div style="background-color:rgb(49%, 100%, 83%); width: 10px; padding: 10px; border: 1px solid;"></div>
Expand Down

0 comments on commit 3a6d5ba

Please sign in to comment.