1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! Catppuccin Mocha color palette constants.
//!
//! The Catppuccin Mocha palette is one of the most popular modern terminal
//! color schemes, known for its soothing pastel colors and warm dark
//! background. These colors are the official Catppuccin Mocha values.
//!
//! See <https://catppuccin.com/palette> for the full palette specification.
use Color;
// =============================================================================
// Base Colors
// =============================================================================
/// Catppuccin Mocha - Crust (darkest background, #11111B)
pub const CATPPUCCIN_CRUST: Color = Rgb;
/// Catppuccin Mocha - Mantle (darker background, #181825)
pub const CATPPUCCIN_MANTLE: Color = Rgb;
/// Catppuccin Mocha - Base (primary background, #1E1E2E)
pub const CATPPUCCIN_BASE: Color = Rgb;
// =============================================================================
// Surface Colors
// =============================================================================
/// Catppuccin Mocha - Surface0 (#313244)
pub const CATPPUCCIN_SURFACE0: Color = Rgb;
/// Catppuccin Mocha - Surface1 (#45475A)
pub const CATPPUCCIN_SURFACE1: Color = Rgb;
/// Catppuccin Mocha - Surface2 (#585B70)
pub const CATPPUCCIN_SURFACE2: Color = Rgb;
// =============================================================================
// Overlay Colors
// =============================================================================
/// Catppuccin Mocha - Overlay0 (#6C7086)
pub const CATPPUCCIN_OVERLAY0: Color = Rgb;
/// Catppuccin Mocha - Overlay1 (#7F849C)
pub const CATPPUCCIN_OVERLAY1: Color = Rgb;
/// Catppuccin Mocha - Overlay2 (#9399B2)
pub const CATPPUCCIN_OVERLAY2: Color = Rgb;
// =============================================================================
// Text Colors
// =============================================================================
/// Catppuccin Mocha - Subtext0 (#A6ADC8)
pub const CATPPUCCIN_SUBTEXT0: Color = Rgb;
/// Catppuccin Mocha - Subtext1 (#BAC2DE)
pub const CATPPUCCIN_SUBTEXT1: Color = Rgb;
/// Catppuccin Mocha - Text (#CDD6F4)
pub const CATPPUCCIN_TEXT: Color = Rgb;
// =============================================================================
// Accent Colors
// =============================================================================
/// Catppuccin Mocha - Rosewater (#F5E0DC)
pub const CATPPUCCIN_ROSEWATER: Color = Rgb;
/// Catppuccin Mocha - Flamingo (#F2CDCD)
pub const CATPPUCCIN_FLAMINGO: Color = Rgb;
/// Catppuccin Mocha - Pink (#F5C2E7)
pub const CATPPUCCIN_PINK: Color = Rgb;
/// Catppuccin Mocha - Mauve (#CBA6F7)
pub const CATPPUCCIN_MAUVE: Color = Rgb;
/// Catppuccin Mocha - Red (#F38BA8)
pub const CATPPUCCIN_RED: Color = Rgb;
/// Catppuccin Mocha - Maroon (#EBA0AC)
pub const CATPPUCCIN_MAROON: Color = Rgb;
/// Catppuccin Mocha - Peach (#FAB387)
pub const CATPPUCCIN_PEACH: Color = Rgb;
/// Catppuccin Mocha - Yellow (#F9E2AF)
pub const CATPPUCCIN_YELLOW: Color = Rgb;
/// Catppuccin Mocha - Green (#A6E3A1)
pub const CATPPUCCIN_GREEN: Color = Rgb;
/// Catppuccin Mocha - Teal (#94E2D5)
pub const CATPPUCCIN_TEAL: Color = Rgb;
/// Catppuccin Mocha - Sky (#89DCEB)
pub const CATPPUCCIN_SKY: Color = Rgb;
/// Catppuccin Mocha - Sapphire (#74C7EC)
pub const CATPPUCCIN_SAPPHIRE: Color = Rgb;
/// Catppuccin Mocha - Blue (#89B4FA)
pub const CATPPUCCIN_BLUE: Color = Rgb;
/// Catppuccin Mocha - Lavender (#B4BEFE)
pub const CATPPUCCIN_LAVENDER: Color = Rgb;