agent-air-tui 0.7.0

TUI frontend for agent-air - ratatui-based terminal interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Theme definitions for TUI
//
// Each theme module exports a Theme instance with colors ported from doom-emacs themes.

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

crate::register_themes! {
    // Dark themes
    dark => { name: "dark", display: "Dark", dark: true },
    // Light themes
    light => { name: "light", display: "Light", dark: false },
}