//! Catppuccin Mocha palette. use super::palette::Palette; pub fn palette() -> Palette { Palette { bg: (30, 30, 46), surface: (49, 50, 68), surface2: (69, 71, 90), fg: (205, 214, 244), fg_dim: (166, 173, 200), fg_muted: (127, 132, 156), accent: (203, 166, 247), // mauve red: (243, 139, 168), green: (166, 227, 161), yellow: (249, 226, 175), blue: (116, 199, 236), // sapphire purple: (203, 166, 247), // mauve cyan: (148, 226, 213), // teal orange: (250, 179, 135), // peach tempo_color: (203, 166, 247), bank_color: (116, 199, 236), pattern_color: (148, 226, 213), title_accent: (203, 166, 247), title_author: (180, 190, 254), secondary: (235, 160, 172), // maroon link_bright: [ (203, 166, 247), (245, 194, 231), (250, 179, 135), (137, 220, 235), (166, 227, 161), ], link_dim: [ (70, 55, 85), (85, 65, 80), (85, 60, 45), (45, 75, 80), (55, 80, 55), ], sparkle: [ (200, 220, 255), (250, 179, 135), (166, 227, 161), (245, 194, 231), (203, 166, 247), ], meter: [(40, 180, 80), (220, 180, 40), (220, 60, 40)], } }