From 56e7d63a34458df3f59263563771f812318db53a Mon Sep 17 00:00:00 2001 From: Kai Pastor Date: Fri, 5 Apr 2024 07:53:26 +0200 Subject: [PATCH] Use gray51 --- src/vcpkg/commands.depend-info.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vcpkg/commands.depend-info.cpp b/src/vcpkg/commands.depend-info.cpp index 37541c6b6f..c38020e9f3 100644 --- a/src/vcpkg/commands.depend-info.cpp +++ b/src/vcpkg/commands.depend-info.cpp @@ -176,7 +176,7 @@ namespace vcpkg const char* node_style = ""; if (Strings::ends_with(package.package, ":host")) { - node_style = " [color=gray fontcolor=gray]"; + node_style = " [color=gray51 fontcolor=gray51]"; } else if (Strings::contains(package.package, ':')) { @@ -199,7 +199,7 @@ namespace vcpkg } else if (Strings::ends_with(d, ":host")) { - edge_style = " [color=gray fontcolor=gray]"; + edge_style = " [color=gray51 fontcolor=gray51]"; } fmt::format_to(std::back_inserter(s), "\"{}\" -> \"{}\"{};\n", package.package, d, edge_style); }