Skip to content

Commit

Permalink
fix: Fix yellow checkpoint color.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Nov 2, 2024
1 parent 25b4d29 commit af3897e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/console/src/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const PASSED_COLORS: [u8; 4] = [35, 42, 49, 86]; // green
const FAILED_COLORS: [u8; 4] = [124, 125, 126, 127]; // red
const MUTED_COLORS: [u8; 4] = [240, 242, 244, 246]; // gray
const SETUP_COLORS: [u8; 4] = [198, 205, 212, 219]; // pink
const ANNOUNCEMENT_COLORS: [u8; 4] = [200, 214, 220, 226]; // yellow
const ANNOUNCEMENT_COLORS: [u8; 4] = [208, 214, 220, 226]; // yellow

#[derive(Clone, Copy)]
pub enum Checkpoint {
Expand Down

0 comments on commit af3897e

Please sign in to comment.