mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-06 15:31:52 +00:00
Move comment
This commit is contained in:
parent
44628ba6e2
commit
178e24552d
@ -5,9 +5,7 @@
|
|||||||
|
|
||||||
// Bear in mind that the first eight (and their bold variants) are
|
// Bear in mind that the first eight (and their bold variants) are
|
||||||
// user-definable and can look different on different terminals, but
|
// user-definable and can look different on different terminals, but
|
||||||
// the other 256 have their values fixed. Prefer using a fixed grey,
|
// the other 256 have their values fixed.
|
||||||
// such as Fixed(244), to bold black, as bold black looks really weird
|
|
||||||
// on some terminals.
|
|
||||||
|
|
||||||
pub enum Colour {
|
pub enum Colour {
|
||||||
Black, Red, Green, Yellow, Blue, Purple, Cyan, White, Fixed(u8),
|
Black, Red, Green, Yellow, Blue, Purple, Cyan, White, Fixed(u8),
|
||||||
@ -46,6 +44,9 @@ impl Colour {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Prefer using a fixed grey, such as Fixed(244), to bold black, as
|
||||||
|
// bold black looks really weird on some terminals.
|
||||||
|
|
||||||
pub static Grey: Colour = Fixed(244);
|
pub static Grey: Colour = Fixed(244);
|
||||||
|
|
||||||
// There are only three different styles: plain (no formatting), only
|
// There are only three different styles: plain (no formatting), only
|
||||||
|
Loading…
x
Reference in New Issue
Block a user