move header curpath color into THEME system

This commit is contained in:
Yifan Song 2023-09-27 00:56:24 +02:00 committed by sxyazi
parent 6b59f81f20
commit a690dfc69b
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
[tabs]
active = { fg = "#1E2031", bg = "#80AEFA" }
inactive = { fg = "#C8D3F8", bg = "#484D66" }
header = { fg = "#00FFFF" }
max_width = 1
[status]

View file

@ -11,6 +11,7 @@ use crate::{validation::check_validation, MERGED_THEME};
pub struct Tabs {
pub active: Style,
pub inactive: Style,
pub header: Style,
#[validate(range(min = 1, message = "Must be greater than 0"))]
pub max_width: u8,
}