ghgrab 0.1.15

A TUI-based tool to download specific files or folders from GitHub repositories
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use ratatui::style::Color;

// just one theme for now XD
pub const BG_COLOR: Color = Color::Rgb(36, 40, 59);
pub const FG_COLOR: Color = Color::Rgb(192, 202, 245);
pub const ACCENT_COLOR: Color = Color::Rgb(122, 162, 247);
pub const WARNING_COLOR: Color = Color::Rgb(224, 175, 104);
pub const ERROR_COLOR: Color = Color::Rgb(247, 120, 107);
pub const SUCCESS_COLOR: Color = Color::Rgb(158, 206, 106);
pub const FOLDER_COLOR: Color = Color::Rgb(130, 170, 255);
pub const _SELECTED_COLOR: Color = Color::Rgb(255, 158, 100);
pub const BORDER_COLOR: Color = Color::Rgb(86, 95, 137);
pub const HIGHLIGHT_BG: Color = Color::Rgb(41, 46, 66);