generated from Xithrius/rust-binary-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathstyles.rs
74 lines (66 loc) · 1.81 KB
/
styles.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
use tui::style::{Color, Modifier, Style};
#[allow(dead_code)]
pub const BORDER_NAME_DARK: Style = Style {
fg: Some(Color::White),
bg: None,
underline_color: None,
add_modifier: Modifier::empty(),
sub_modifier: Modifier::empty(),
};
#[allow(dead_code)]
pub const BORDER_NAME_LIGHT: Style = Style {
fg: Some(Color::Black),
bg: None,
underline_color: None,
add_modifier: Modifier::empty(),
sub_modifier: Modifier::empty(),
};
pub const DATETIME_DARK: Style = Style {
fg: Some(Color::Rgb(173, 173, 184)),
bg: None,
underline_color: None,
add_modifier: Modifier::empty(),
sub_modifier: Modifier::empty(),
};
pub const DATETIME_LIGHT: Style = Style {
fg: Some(Color::Rgb(83, 83, 95)),
bg: None,
underline_color: None,
add_modifier: Modifier::empty(),
sub_modifier: Modifier::empty(),
};
pub const HIGHLIGHT_NAME_DARK: Style = Style {
fg: Some(Color::Black),
bg: Some(Color::White),
underline_color: None,
add_modifier: Modifier::BOLD,
sub_modifier: Modifier::empty(),
};
pub const HIGHLIGHT_NAME_LIGHT: Style = Style {
fg: Some(Color::White),
bg: Some(Color::Black),
underline_color: None,
add_modifier: Modifier::BOLD,
sub_modifier: Modifier::empty(),
};
pub const COLUMN_TITLE: Style = Style {
fg: Some(Color::LightCyan),
bg: None,
underline_color: None,
add_modifier: Modifier::BOLD,
sub_modifier: Modifier::empty(),
};
pub const SYSTEM_CHAT: Style = Style {
fg: Some(Color::Red),
bg: None,
underline_color: None,
add_modifier: Modifier::BOLD,
sub_modifier: Modifier::empty(),
};
pub const DASHBOARD_TITLE_COLOR: Style = Style {
fg: Some(Color::Rgb(135, 120, 165)),
bg: None,
underline_color: None,
add_modifier: Modifier::empty(),
sub_modifier: Modifier::empty(),
};