Skip to content

Instantly share code, notes, and snippets.

View angusbreno's full-sized avatar
Building Way2 services

Breno Santos angusbreno

Building Way2 services
View GitHub Profile
public class Colors
{
private const string COLOR_WHITE = "white";
private const string COLOR_BLACK = "black";
public static string GetReadableForeColorAsString(string backgroundColor)
{
// turn the background color into Color obj
var c = ColorTranslator.FromHtml($"#{backgroundColor}");