fix(theme): include alpha value in to_hex

This commit is contained in:
Ashley Wulber 2024-05-21 09:55:12 -04:00 committed by Ashley Wulber
parent b8266b6100
commit e302e9505c

View file

@ -42,5 +42,8 @@ impl Theme {
pub fn to_hex(c: Srgba) -> String {
let c_u8: Rgba<palette::encoding::Srgb, u8> = c.into_format();
format!("{:02x}{:02x}{:02x}", c_u8.red, c_u8.green, c_u8.blue)
format!(
"{:02x}{:02x}{:02x}{:02x}",
c_u8.red, c_u8.green, c_u8.blue, c_u8.alpha
)
}