This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}"); |