uzor 1.0.20

Core UI engine — geometry, interaction, input state
Documentation
//! Dark appearance mode color palette

use super::ColorPalette;

pub const DARK: ColorPalette = ColorPalette {
    // Labels
    label: "#FFFFFF",
    secondary_label: "#EBEBF5",
    tertiary_label: "#EBEBF599",
    quaternary_label: "#EBEBF52E",

    // Text
    text: "#FFFFFF",
    placeholder_text: "#EBEBF54C",
    selected_text: "#FFFFFF",
    text_background: "#1E1E1E",
    selected_text_background: "#3A5570",

    // Content
    link: "#419CFF",
    separator: "#FFFFFF1F",
    selected_content_background: "#0A5BCC",
    unemphasized_selected_content_background: "#464646",

    // Menu
    selected_menu_item_text: "#FFFFFF",

    // Table
    grid: "#1E1E1E",
    header_text: "#FFFFFF",
    alternating_even: "#1E1E1E",
    alternating_odd: "#2A2A2A",

    // Controls
    control_accent: "#0A84FF",
    control: "#3A3A3C",
    control_background: "#1E1E1E",
    control_text: "#FFFFFF",
    disabled_control_text: "#EBEBF54C",
    selected_control: "#0A84FF",
    selected_control_text: "#FFFFFF",

    // Windows
    window_background: "#1E1E1E",
    window_frame_text: "#FFFFFF",
    under_page_background: "#282828",

    // System accent colors
    system_blue: "#0A84FF",
    system_brown: "#AC8E68",
    system_gray: "#98989D",
    system_green: "#32D74B",
    system_indigo: "#5E5CE6",
    system_orange: "#FF9F0A",
    system_pink: "#FF375F",
    system_purple: "#BF5AF2",
    system_red: "#FF453A",
    system_teal: "#64D2FF",
    system_yellow: "#FFD60A",

    // Fills
    fill_primary: "#FFFFFF14",
    fill_secondary: "#FFFFFF0F",
    fill_tertiary: "#FFFFFF0A",
    fill_quaternary: "#FFFFFF05",

    // Shadows
    shadow_color: "#00000080",
};