Bump csscolorparser from 0.7.0 to 0.7.2 (#7344)

This commit is contained in:
Jonathan Tran
2025-06-03 12:50:09 -04:00
committed by GitHub
parent d3979edb41
commit a3551e4b2f
3 changed files with 4 additions and 4 deletions

View File

@ -529,7 +529,7 @@ impl Node<Program> {
let new_color = csscolorparser::Color::new(color.red, color.green, color.blue, color.alpha);
Ok(Some(ColorPresentation {
// The label will be what they replace the color with.
label: new_color.to_hex_string(),
label: new_color.to_css_hex(),
text_edit: None,
additional_text_edits: None,
}))