Make SAO UI base colors more opaque

This commit is contained in:
mars 2022-11-20 12:18:47 -07:00
parent e0ec4190fc
commit 415d9e7845
1 changed files with 2 additions and 2 deletions

View File

@ -40,10 +40,10 @@ impl Palette {
}
/// The common base color alpha shared between all themes.
pub const BASE_ALPHA: u8 = 0xc0;
pub const BASE_ALPHA: u8 = 230;
/// The common base_hover color alpha shared between all themes.
pub const BASE_HOVER_ALPHA: u8 = 0xe0;
pub const BASE_HOVER_ALPHA: u8 = 242;
/// Converts 0xrrggbb hex to an opaque [Color].
pub const fn hex(rgb: u32) -> Color {