diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs index af8f03bca..7c04d7304 100644 --- a/helix-view/src/theme.rs +++ b/helix-view/src/theme.rs @@ -298,25 +298,18 @@ impl Theme { const RGB_START: usize = (usize::MAX << (8 + 8 + 8)) - 1; /// Interpret a Highlight with the RGB foreground - fn decode_rgb_highlight(rgb: usize) -> Option<(u8, u8, u8)> { - (rgb > Self::RGB_START).then(|| { - let [b, g, r, ..] = rgb.to_ne_bytes(); - (r, g, b) - }) + const fn decode_rgb_highlight(rgb: usize) -> Option<(u8, u8, u8)> { + if rgb > Self::RGB_START { + let [.., r, g, b] = rgb.to_be_bytes(); + Some((r, g, b)) + } else { + None + } } /// Create a Highlight that represents an RGB color - pub fn rgb_highlight(r: u8, g: u8, b: u8) -> Highlight { - Highlight(usize::from_ne_bytes([ - b, - g, - r, - u8::MAX, - u8::MAX, - u8::MAX, - u8::MAX, - u8::MAX, - ])) + pub const fn rgb_highlight(r: u8, g: u8, b: u8) -> Highlight { + Highlight(Self::RGB_START + 1 + ((r as usize) << 16) + ((g as usize) << 8) + b as usize) } #[inline]