agent-air-tui 0.7.0

TUI frontend for agent-air - ratatui-based terminal interface
Documentation
// One Light theme
// Ported from: https://github.com/doomemacs/themes

use crate::themes::theme::Theme;

crate::define_theme! {
    bg: (0xfa, 0xfa, 0xfa),
    bg_alt: (0xf0, 0xf0, 0xf0),
    fg: (0x38, 0x3a, 0x42),
    fg_alt: (0x9c, 0xa0, 0xa4),
    base4: (0x9c, 0xa0, 0xa4),
    red: (0xe4, 0x56, 0x49),
    orange: (0xda, 0x85, 0x48),
    yellow: (0x98, 0x68, 0x01),
    green: (0x50, 0xa1, 0x4f),
    cyan: (0x01, 0x84, 0xbc),
    blue: (0x40, 0x78, 0xf2),
    magenta: (0xa6, 0x26, 0xa4),
    violet: (0xb7, 0x51, 0xb6)
}