mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
move header curpath color into THEME system
This commit is contained in:
parent
6b59f81f20
commit
a690dfc69b
2 changed files with 2 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
[tabs]
|
[tabs]
|
||||||
active = { fg = "#1E2031", bg = "#80AEFA" }
|
active = { fg = "#1E2031", bg = "#80AEFA" }
|
||||||
inactive = { fg = "#C8D3F8", bg = "#484D66" }
|
inactive = { fg = "#C8D3F8", bg = "#484D66" }
|
||||||
|
header = { fg = "#00FFFF" }
|
||||||
max_width = 1
|
max_width = 1
|
||||||
|
|
||||||
[status]
|
[status]
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ use crate::{validation::check_validation, MERGED_THEME};
|
||||||
pub struct Tabs {
|
pub struct Tabs {
|
||||||
pub active: Style,
|
pub active: Style,
|
||||||
pub inactive: Style,
|
pub inactive: Style,
|
||||||
|
pub header: Style,
|
||||||
#[validate(range(min = 1, message = "Must be greater than 0"))]
|
#[validate(range(min = 1, message = "Must be greater than 0"))]
|
||||||
pub max_width: u8,
|
pub max_width: u8,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue