-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcolor.rs
56 lines (49 loc) · 1.41 KB
/
color.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
#[derive(Copy, Clone, Debug, Default)]
pub(crate) struct Palette {
key: anstyle::Style,
value: anstyle::Style,
}
impl Palette {
pub(crate) fn color() -> Self {
if cfg!(feature = "color") {
Self {
key: anstyle::AnsiColor::Blue.on_default() | anstyle::Effects::BOLD,
value: anstyle::AnsiColor::Yellow.on_default() | anstyle::Effects::BOLD,
}
} else {
Self::plain()
}
}
pub(crate) fn plain() -> Self {
Self::default()
}
pub(crate) fn key<D: std::fmt::Display>(self, display: D) -> Styled<D> {
Styled::new(display, self.key)
}
pub(crate) fn value<D: std::fmt::Display>(self, display: D) -> Styled<D> {
Styled::new(display, self.value)
}
}
#[derive(Debug)]
pub(crate) struct Styled<D> {
display: D,
style: anstyle::Style,
}
impl<D: std::fmt::Display> Styled<D> {
pub(crate) fn new(display: D, style: anstyle::Style) -> Self {
Self { display, style }
}
}
impl<D: std::fmt::Display> std::fmt::Display for Styled<D> {
#[inline]
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if f.alternate() {
write!(f, "{}", self.style.render())?;
self.display.fmt(f)?;
write!(f, "{}", self.style.render_reset())?;
Ok(())
} else {
self.display.fmt(f)
}
}
}