Rename ColorUtils to ColorExtensions

Renamed the ColorUtils class to ColorExtensions to better reflect its purpose as an extension class for color-related functionalities. This change improves code readability and consistency within the project.

Signed-off-by: Ivandro Jao <Ivandrofly@gmail.com>
This commit is contained in:
Ivandro Jao 2024-07-25 18:52:53 +01:00
parent 7b0c79c5ee
commit 87dd6994ab

View File

@ -3,7 +3,7 @@ using System.Drawing;
namespace Nikse.SubtitleEdit.Core.Common
{
public static class ColorUtils
public static class ColorExtensions
{
public static Color Blend(this Color baseColor, Color targetColor, double percentage = 0.5)
{