Skip to content

Commit

Permalink
fix: correct blue and green in get_source_color
Browse files Browse the repository at this point in the history
  • Loading branch information
InioX committed Aug 12, 2023
1 parent 11b339b commit dc1d205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ fn get_source_color(args: &Cli) -> Result<[u8; 4], Report> {
[
src.alpha() as u8,
src.red() as u8,
src.blue() as u8,
src.green() as u8,
src.blue() as u8,
]
}
};
Expand Down

0 comments on commit dc1d205

Please sign in to comment.