From 91564b586858065840edf187973103a299f5b5c0 Mon Sep 17 00:00:00 2001 From: mgunyho Date: Mon, 23 Aug 2021 18:30:16 +0300 Subject: [PATCH] Fix Greys in colors table (#585) --- src/style/types/color.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style/types/color.rs b/src/style/types/color.rs index 1ed04cc..c45c421 100644 --- a/src/style/types/color.rs +++ b/src/style/types/color.rs @@ -16,14 +16,14 @@ use crate::style::parse_next_u8; /// /// | Light | Dark | /// | :--| :-- | -/// | `Grey` | `Black` | +/// | `DarkGrey` | `Black` | /// | `Red` | `DarkRed` | /// | `Green` | `DarkGreen` | /// | `Yellow` | `DarkYellow` | /// | `Blue` | `DarkBlue` | /// | `Magenta` | `DarkMagenta` | /// | `Cyan` | `DarkCyan` | -/// | `White` | `DarkWhite` | +/// | `White` | `Grey` | /// /// Most UNIX terminals and Windows 10 consoles support additional colors. /// See [`Color::Rgb`] or [`Color::AnsiValue`] for more info.