Philiprehberger.ColorConverter
0.1.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Philiprehberger.ColorConverter --version 0.1.2
NuGet\Install-Package Philiprehberger.ColorConverter -Version 0.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Philiprehberger.ColorConverter" Version="0.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Philiprehberger.ColorConverter" Version="0.1.2" />
<PackageReference Include="Philiprehberger.ColorConverter" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Philiprehberger.ColorConverter --version 0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Philiprehberger.ColorConverter, 0.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Philiprehberger.ColorConverter@0.1.2
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Philiprehberger.ColorConverter&version=0.1.2
#tool nuget:?package=Philiprehberger.ColorConverter&version=0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Philiprehberger.ColorConverter
Convert between RGB, HSL, HSV, Hex, and CMYK color models with lighten, darken, saturate, and complement operations.
Installation
dotnet add package Philiprehberger.ColorConverter
Usage
Parse and Convert
using Philiprehberger.ColorConverter;
var color = Color.FromHex("#FF6347");
// Convert to different models
HslColor hsl = color.ToHsl();
HsvColor hsv = color.ToHsv();
CmykColor cmyk = color.ToCmyk();
string hex = color.ToHex(); // "#FF6347"
var (r, g, b, a) = color.ToRgb(); // (255, 99, 71, 255)
// Create from other models
var fromHsl = Color.FromHsl(9.0, 1.0, 0.6392);
var fromHsv = Color.FromHsv(9.0, 0.7216, 1.0);
var fromRgb = Color.FromRgb(255, 99, 71);
Manipulate Colors
var coral = Color.FromHex("#FF7F50");
Color lighter = coral.Lighten(0.1);
Color darker = coral.Darken(0.1);
Color vivid = coral.Saturate(0.2);
Color muted = coral.Desaturate(0.2);
Color opposite = coral.Complement();
Color transparent = coral.WithAlpha(128);
CSS Named Colors
var teal = Color.Parse("teal");
var coral = Color.Parse("coral");
var gold = Color.Parse("gold");
Console.WriteLine(teal.ToHex()); // "#008080"
API
| Method | Description |
|---|---|
Color.FromRgb(r, g, b, a) |
Create from RGBA byte values |
Color.FromHex(hex) |
Create from hex string (#RGB, #RRGGBB, #RRGGBBAA) |
Color.FromHsl(h, s, l) |
Create from HSL values |
Color.FromHsv(h, s, v) |
Create from HSV values |
Color.Parse(name) |
Create from CSS named color |
.ToHex() |
Convert to hex string |
.ToRgb() |
Convert to (R, G, B, A) tuple |
.ToHsl() |
Convert to HslColor |
.ToHsv() |
Convert to HsvColor |
.ToCmyk() |
Convert to CmykColor |
.Lighten(amount) |
Increase lightness |
.Darken(amount) |
Decrease lightness |
.Saturate(amount) |
Increase saturation |
.Desaturate(amount) |
Decrease saturation |
.Complement() |
Get complementary color (hue + 180) |
.WithAlpha(a) |
Set alpha channel |
Development
dotnet build src/Philiprehberger.ColorConverter.csproj --configuration Release
License
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.