From ba88ef438acd027809fd5cbd629c67c934da2917 Mon Sep 17 00:00:00 2001 From: TheXorog <56395159+TheXorog@users.noreply.github.com> Date: Thu, 5 May 2022 19:18:07 +0200 Subject: [PATCH] Update UniversalExtensions.cs --- UniversalExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UniversalExtensions.cs b/UniversalExtensions.cs index 983764c..72cefd6 100644 --- a/UniversalExtensions.cs +++ b/UniversalExtensions.cs @@ -515,7 +515,7 @@ public static class UniversalExtensions /// Green /// Blue /// A string that represents the color in hex (e.g. 255, 0, 0 -> #FF0000) - private static string ToHex(int R, int G, int B) + public static string ToHex(int R, int G, int B) { return "#" + R.ToString("X2") + G.ToString("X2") + B.ToString("X2"); }