From 6e75c5244d3175e18dadecc480f408ee39214a11 Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Thu, 5 May 2022 18:30:28 +0300 Subject: [PATCH] Don't make the pie-colors the bold --- httpie/output/ui/rich_palette.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/httpie/output/ui/rich_palette.py b/httpie/output/ui/rich_palette.py index 3d140210..fe41ed61 100644 --- a/httpie/output/ui/rich_palette.py +++ b/httpie/output/ui/rich_palette.py @@ -56,8 +56,7 @@ def _make_rich_color_theme(style_name: Optional[str]) -> 'Theme': GenericColor.__members__, CUSTOM_STYLES ).items(): theme.styles[color.lower()] = Style( - color=color_set.apply_style(style, style_name=style_name), - bold=style is Styles.PIE, + color=color_set.apply_style(style, style_name=style_name) ) # E.g translate GenericColor.BLUE into blue on key access