-
Notifications
You must be signed in to change notification settings - Fork 0
IFakerColor
baileydauterman edited this page Jan 6, 2025
·
2 revisions
using Faker.NET.Common.Colors;
namespace Faker.NET.Interfaces.Modules;
public interface IFakerColor
{
public Cmyk Cmyk();
public string ColorByCSSColorSpace();
public string CssSupportedFunction();
public string CssSupportedSpace();
public string Hsl();
public string Human();
public string Hwb();
public string Lab();
public string Lch();
public Rgb Rgb(byte? redBase = null, byte? greenBase = null, byte? blueBase = null);
public string Space();
}