From 69280152c94d7cbcce6210341fd514f09a01c95a Mon Sep 17 00:00:00 2001 From: Peter Hebden Date: Sun, 14 Aug 2022 18:00:41 +0100 Subject: [PATCH] More readable table in viewing source (#706) --- src/style/types/color.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/style/types/color.rs b/src/style/types/color.rs index b29af712..8cb92f64 100644 --- a/src/style/types/color.rs +++ b/src/style/types/color.rs @@ -11,16 +11,16 @@ use crate::style::parse_next_u8; /// /// The following list of 16 base colors are available for almost all terminals (Windows 7 and 8 included). /// -/// | Light | Dark | -/// | :--| :-- | -/// | `DarkGrey` | `Black` | -/// | `Red` | `DarkRed` | -/// | `Green` | `DarkGreen` | -/// | `Yellow` | `DarkYellow` | -/// | `Blue` | `DarkBlue` | -/// | `Magenta` | `DarkMagenta` | -/// | `Cyan` | `DarkCyan` | -/// | `White` | `Grey` | +/// | Light | Dark | +/// | :--------- | :------------ | +/// | `DarkGrey` | `Black` | +/// | `Red` | `DarkRed` | +/// | `Green` | `DarkGreen` | +/// | `Yellow` | `DarkYellow` | +/// | `Blue` | `DarkBlue` | +/// | `Magenta` | `DarkMagenta` | +/// | `Cyan` | `DarkCyan` | +/// | `White` | `Grey` | /// /// Most UNIX terminals and Windows 10 consoles support additional colors. /// See [`Color::Rgb`] or [`Color::AnsiValue`] for more info.