Files
Cagire/crates/ratatui/src/theme/georges.rs

42 lines
1.3 KiB
Rust

//! Georges palette (C64 colors on black).
use super::palette::Palette;
pub fn palette() -> Palette {
Palette {
bg: (0, 0, 0),
surface: (16, 16, 16),
surface2: (24, 24, 24),
fg: (187, 187, 187),
fg_dim: (119, 119, 119),
fg_muted: (51, 51, 51),
accent: (0, 136, 255), // lightblue
red: (255, 119, 119), // lightred
green: (0, 204, 85),
yellow: (238, 238, 119),
blue: (0, 136, 255), // lightblue
purple: (204, 68, 204), // violet
cyan: (170, 255, 238),
orange: (221, 136, 85),
tempo_color: (204, 68, 204),
bank_color: (0, 136, 255),
pattern_color: (0, 204, 85),
title_accent: (0, 136, 255),
title_author: (0, 204, 85),
secondary: (221, 136, 85),
link_bright: [
(0, 136, 255), (0, 204, 85), (238, 238, 119),
(204, 68, 204), (170, 255, 238),
],
link_dim: [
(0, 20, 40), (0, 30, 12), (34, 34, 16),
(30, 10, 30), (24, 36, 34),
],
sparkle: [
(0, 136, 255), (170, 255, 238), (0, 204, 85),
(238, 238, 119), (204, 68, 204),
],
meter: [(0, 204, 85), (238, 238, 119), (255, 119, 119)],
}
}