Current section
Files
Jump to
Current section
Files
src/catppuccin/latte.gleam
import catppuccin.{type CatppuccinColor, CatppuccinColor, to_community_colour}
pub const name = "Latte"
pub const order = 0
pub const dark = False
pub fn rosewater() -> CatppuccinColor {
CatppuccinColor(
name: "Rosewater",
order: 0,
accent: True,
color: to_community_colour(
r: 220,
g: 138,
b: 120,
),
)
}
pub fn flamingo() -> CatppuccinColor {
CatppuccinColor(
name: "Flamingo",
order: 1,
accent: True,
color: to_community_colour(
r: 221,
g: 120,
b: 120,
),
)
}
pub fn pink() -> CatppuccinColor {
CatppuccinColor(
name: "Pink",
order: 2,
accent: True,
color: to_community_colour(
r: 234,
g: 118,
b: 203,
),
)
}
pub fn mauve() -> CatppuccinColor {
CatppuccinColor(
name: "Mauve",
order: 3,
accent: True,
color: to_community_colour(
r: 136,
g: 57,
b: 239,
),
)
}
pub fn red() -> CatppuccinColor {
CatppuccinColor(
name: "Red",
order: 4,
accent: True,
color: to_community_colour(
r: 210,
g: 15,
b: 57,
),
)
}
pub fn maroon() -> CatppuccinColor {
CatppuccinColor(
name: "Maroon",
order: 5,
accent: True,
color: to_community_colour(
r: 230,
g: 69,
b: 83,
),
)
}
pub fn peach() -> CatppuccinColor {
CatppuccinColor(
name: "Peach",
order: 6,
accent: True,
color: to_community_colour(
r: 254,
g: 100,
b: 11,
),
)
}
pub fn yellow() -> CatppuccinColor {
CatppuccinColor(
name: "Yellow",
order: 7,
accent: True,
color: to_community_colour(
r: 223,
g: 142,
b: 29,
),
)
}
pub fn green() -> CatppuccinColor {
CatppuccinColor(
name: "Green",
order: 8,
accent: True,
color: to_community_colour(
r: 64,
g: 160,
b: 43,
),
)
}
pub fn teal() -> CatppuccinColor {
CatppuccinColor(
name: "Teal",
order: 9,
accent: True,
color: to_community_colour(
r: 23,
g: 146,
b: 153,
),
)
}
pub fn sky() -> CatppuccinColor {
CatppuccinColor(
name: "Sky",
order: 10,
accent: True,
color: to_community_colour(
r: 4,
g: 165,
b: 229,
),
)
}
pub fn sapphire() -> CatppuccinColor {
CatppuccinColor(
name: "Sapphire",
order: 11,
accent: True,
color: to_community_colour(
r: 32,
g: 159,
b: 181,
),
)
}
pub fn blue() -> CatppuccinColor {
CatppuccinColor(
name: "Blue",
order: 12,
accent: True,
color: to_community_colour(
r: 30,
g: 102,
b: 245,
),
)
}
pub fn lavender() -> CatppuccinColor {
CatppuccinColor(
name: "Lavender",
order: 13,
accent: True,
color: to_community_colour(
r: 114,
g: 135,
b: 253,
),
)
}
pub fn text() -> CatppuccinColor {
CatppuccinColor(
name: "Text",
order: 14,
accent: False,
color: to_community_colour(
r: 76,
g: 79,
b: 105,
),
)
}
pub fn subtext1() -> CatppuccinColor {
CatppuccinColor(
name: "Subtext 1",
order: 15,
accent: False,
color: to_community_colour(
r: 92,
g: 95,
b: 119,
),
)
}
pub fn subtext0() -> CatppuccinColor {
CatppuccinColor(
name: "Subtext 0",
order: 16,
accent: False,
color: to_community_colour(
r: 108,
g: 111,
b: 133,
),
)
}
pub fn overlay2() -> CatppuccinColor {
CatppuccinColor(
name: "Overlay 2",
order: 17,
accent: False,
color: to_community_colour(
r: 124,
g: 127,
b: 147,
),
)
}
pub fn overlay1() -> CatppuccinColor {
CatppuccinColor(
name: "Overlay 1",
order: 18,
accent: False,
color: to_community_colour(
r: 140,
g: 143,
b: 161,
),
)
}
pub fn overlay0() -> CatppuccinColor {
CatppuccinColor(
name: "Overlay 0",
order: 19,
accent: False,
color: to_community_colour(
r: 156,
g: 160,
b: 176,
),
)
}
pub fn surface2() -> CatppuccinColor {
CatppuccinColor(
name: "Surface 2",
order: 20,
accent: False,
color: to_community_colour(
r: 172,
g: 176,
b: 190,
),
)
}
pub fn surface1() -> CatppuccinColor {
CatppuccinColor(
name: "Surface 1",
order: 21,
accent: False,
color: to_community_colour(
r: 188,
g: 192,
b: 204,
),
)
}
pub fn surface0() -> CatppuccinColor {
CatppuccinColor(
name: "Surface 0",
order: 22,
accent: False,
color: to_community_colour(
r: 204,
g: 208,
b: 218,
),
)
}
pub fn base() -> CatppuccinColor {
CatppuccinColor(
name: "Base",
order: 23,
accent: False,
color: to_community_colour(
r: 239,
g: 241,
b: 245,
),
)
}
pub fn mantle() -> CatppuccinColor {
CatppuccinColor(
name: "Mantle",
order: 24,
accent: False,
color: to_community_colour(
r: 230,
g: 233,
b: 239,
),
)
}
pub fn crust() -> CatppuccinColor {
CatppuccinColor(
name: "Crust",
order: 25,
accent: False,
color: to_community_colour(
r: 220,
g: 224,
b: 232,
),
)
}