//! Catppuccin Latte palette. use super::palette::Palette; pub fn palette() -> Palette { Palette { bg: (239, 241, 245), surface: (204, 208, 218), surface2: (188, 192, 204), fg: (76, 79, 105), fg_dim: (108, 111, 133), fg_muted: (140, 143, 161), accent: (136, 57, 239), // mauve red: (210, 15, 57), green: (64, 160, 43), yellow: (223, 142, 29), blue: (32, 159, 181), // sapphire purple: (136, 57, 239), cyan: (23, 146, 153), // teal orange: (254, 100, 11), // peach tempo_color: (136, 57, 239), bank_color: (32, 159, 181), pattern_color: (23, 146, 153), title_accent: (136, 57, 239), title_author: (114, 135, 253), secondary: (230, 69, 83), // maroon link_bright: [ (136, 57, 239), (234, 118, 203), (254, 100, 11), (4, 165, 229), (64, 160, 43), ], link_dim: [ (210, 200, 240), (240, 210, 230), (250, 220, 200), (200, 230, 240), (210, 235, 210), ], sparkle: [ (114, 135, 253), (254, 100, 11), (64, 160, 43), (234, 118, 203), (136, 57, 239), ], meter: [(50, 150, 40), (200, 140, 30), (200, 40, 50)], } }