From 5e2e006ac18a954073be7f1e8ba919c7d50e824f Mon Sep 17 00:00:00 2001 From: Nicolas Lesser Date: Tue, 4 Dec 2018 13:42:12 +0100 Subject: [PATCH] Add italic and strikethrough options. --- include/fmt/color.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/fmt/color.h b/include/fmt/color.h index e508e5e1..67e07fdf 100644 --- a/include/fmt/color.h +++ b/include/fmt/color.h @@ -194,7 +194,9 @@ enum class color : uint32_t { enum class emphasis : uint8_t { bold = 1, - underline = 4 + italic = 3, + underline = 4, + strikethrough = 9 }; // enum class emphasis // rgb is a struct for red, green and blue colors.