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.