summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorextrawurst <mail@rusticorn.com>2022-09-20 10:01:53 +0200
committerextrawurst <mail@rusticorn.com>2022-09-20 10:01:53 +0200
commitff0c1232937ccc8f388c3f76fcb709b157413edf (patch)
tree34828b7c40e0dea6bdfa6134c71d31ba2ead989b /src/ui
parent16a537c1025c2bdf3b1abea6dee49399882a29e2 (diff)
cleanup
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/style.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ui/style.rs b/src/ui/style.rs
index 3a33948f..51ed90f8 100644
--- a/src/ui/style.rs
+++ b/src/ui/style.rs
@@ -18,39 +18,22 @@ pub type SharedTheme = Rc<Theme>;
#[derive(Serialize, Deserialize, Debug, Copy, Clone)]
pub struct Theme {
selected_tab: Color,
- #[serde(with = "Color")]
command_fg: Color,
- #[serde(with = "Color")]
selection_bg: Color,
- #[serde(with = "Color")]
cmdbar_bg: Color,
- #[serde(with = "Color")]
cmdbar_extra_lines_bg: Color,
- #[serde(with = "Color")]
disabled_fg: Color,
- #[serde(with = "Color")]
diff_line_add: Color,
- #[serde(with = "Color")]
diff_line_delete: Color,
- #[serde(with = "Color")]
diff_file_added: Color,
- #[serde(with = "Color")]
diff_file_removed: Color,
- #[serde(with = "Color")]
diff_file_moved: Color,
- #[serde(with = "Color")]
diff_file_modified: Color,
- #[serde(with = "Color")]
commit_hash: Color,
- #[serde(with = "Color")]
commit_time: Color,
- #[serde(with = "Color")]
commit_author: Color,
- #[serde(with = "Color")]
danger_fg: Color,
- #[serde(with = "Color")]
push_gauge_bg: Color,
- #[serde(with = "Color")]
push_gauge_fg: Color,
}