From fbb348bc823da695c218a9136ffae14ecd4f3bf0 Mon Sep 17 00:00:00 2001 From: AG <98327736+ggold7046@users.noreply.github.com> Date: Fri, 24 Mar 2023 20:50:45 +0530 Subject: [PATCH] Update utils.py Changed the colour/highlight to "cyan" instead of "blue" for easy noticing. --- capa/render/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/render/utils.py b/capa/render/utils.py index c65b705b..20a817d7 100644 --- a/capa/render/utils.py +++ b/capa/render/utils.py @@ -16,7 +16,7 @@ import capa.render.result_document as rd def bold(s: str) -> str: """draw attention to the given string""" - return termcolor.colored(s, "blue") + return termcolor.colored(s, "cyan") def bold2(s: str) -> str: