tunein-cli 0.7.1

Browse and listen to thousands of radio stations across the globe right from your terminal 🌎 📻 🎵✨
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared color palette so the CLI `--help` output and the interactive
//! TUI share one coherent look.

#![allow(dead_code)]

use ratatui::style::Color;

pub const PRIMARY: Color = Color::Rgb(0, 232, 198);
pub const SECONDARY: Color = Color::Rgb(0, 198, 232);
pub const ACCENT: Color = Color::Rgb(130, 100, 255);
pub const HIGHLIGHT: Color = Color::Rgb(100, 232, 130);
pub const MUTED: Color = Color::Rgb(200, 210, 220);
pub const LINK: Color = Color::Rgb(255, 160, 100);
pub const SKY: Color = Color::Rgb(0, 210, 255);
pub const ERROR: Color = Color::Rgb(255, 100, 100);