feat: add status-based row colors for torrents

This commit is contained in:
2026-01-01 04:27:21 +02:00
parent 35e6e420ea
commit ae6f4fd216
2 changed files with 34 additions and 3 deletions

View File

@@ -10,4 +10,16 @@ pub struct ColorConfig {
pub header_foreground: String,
#[from_file(default = "blue")]
pub info_foreground: String,
// Status colors
#[from_file(default = "cyan")]
pub status_downloading: String,
#[from_file(default = "white")]
pub status_seeding: String,
#[from_file(default = "dark_gray")]
pub status_stopped: String,
#[from_file(default = "yellow")]
pub status_verifying: String,
#[from_file(default = "light_blue")]
pub status_queued: String,
}