Palett 0.4.13

dotnet add package Palett --version 0.4.13                
NuGet\Install-Package Palett -Version 0.4.13                
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="Palett" Version="0.4.13" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Palett --version 0.4.13                
#r "nuget: Palett, 0.4.13"                
#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.
// Install Palett as a Cake Addin
#addin nuget:?package=Palett&version=0.4.13

// Install Palett as a Cake Tool
#tool nuget:?package=Palett&version=0.4.13                

Banner

Color space tools

Version Downloads Dependent Libraries Language Compatibility License

Features

  • Transform between RGB and HSL color spaces.
  • Convert among hex, int, (byte r, byte g, byte b), (float h, float s, float l) and System.Drawing.Color.
  • Applicable to styles: Bold, Italic, Underline, and Inverse.
  • Render an array or 2d-array of number into colored based on the relative value of each number.

Content

Package Content
Palett The core library, including all Palett sub projects
Palett.Cards Preset color cards with 14 degrees of color gradients
Palett.Convert Convert colors among hex / int / rgb / hsl / Color
Palett.Deco Render terminal string color
Palett.Dye Colorant (factory) for terminal string
Palett.Fluos Colorize array and 2d-array in terminal
Palett.Presets Preset color range
Palett.Projector Project a number to colored based on a range
Palett.Types Base types in Palett series
Palett.Utils Base static params of ANSI values

Install

Palett targets .NET Standard 2.0, suitable for .NET and .NET Framework.

Install Palett package and its dependencies.

NuGet Package Manager:

Install-Package Palett

.NET CLI:

dotnet add package Palett

All versions can be found on nuget.

Usage

Convert color

using Palett.Convert;
// using RGB = System.ValueTuple<byte, byte, byte>;
// using HSL = System.ValueTuple<float, float, float>;

(byte, byte, byte) rgb = (242, 114, 69);
var hsl = rgb.RgbToHsl();
var hex = hsl.HslToHex();
var rgb2 = Conv.HexToRgb(hex);
var int = rgb2.RgbToInt();

Colorize vector

using Palett;
using Palett.Fluos;

var samples = new[] { "foo", "bar", "zen", "16", "24", "32", "64" };
var colored = samples.Fluo(Presets.Planet);

Examples


Palett has a test suite in the test project.

Feedback

Palett is licensed under the MIT license.

Bug report and contribution are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Palett:

Package Downloads
Spare.Deco

Format enumerables: array, 2d-array, dictionary, etc. into string for console output

NeXL.Core.Ranges

Extension for Excel.Range

NeXL.Core.Hyper

Macros for Excel

NePT.Core.Shapes

Extension for PowerPoint.Shapes

NePT.Core.Hyper

Hypers for PowerPoint

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.4.13 171 11/4/2024
0.4.12 231 11/2/2024
0.4.11 70 11/1/2024
0.4.10 66 11/1/2024
0.4.9 68 10/31/2024
0.4.8 378 10/26/2021
0.4.7 298 10/25/2021
0.4.6 998 10/25/2021
0.4.5 389 10/24/2021
0.4.4 411 10/23/2021
0.4.3 328 10/11/2021
0.4.2 1,203 10/9/2021
0.4.1 1,414 10/5/2021
0.4.0 1,193 9/27/2021
0.3.4 670 9/27/2021
0.3.3 366 9/27/2021
0.3.2 1,153 9/26/2021
0.3.1 310 9/26/2021
0.3.0 327 9/25/2021
0.2.18 314 9/25/2021
0.2.17 422 9/25/2021
0.2.16 344 9/5/2021
0.2.15 338 9/5/2021
0.2.14 1,628 9/3/2021
0.2.12 890 9/3/2021
0.2.11 1,611 9/2/2021
0.2.10 628 9/2/2021
0.2.9 649 9/2/2021
0.2.8 334 9/2/2021
0.2.7 327 8/31/2021
0.2.6 1,502 8/31/2021
0.2.5 311 8/31/2021
0.2.4 301 8/30/2021
0.2.3 791 8/30/2021
0.2.2 2,026 8/20/2021
0.2.1 865 8/17/2021
0.2.0 319 8/17/2021
0.1.21 1,148 8/16/2021
0.1.20 313 8/16/2021
0.1.19 1,942 8/16/2021
0.1.18 683 8/14/2021
0.1.17 392 8/14/2021
0.1.16 328 8/13/2021
0.1.15 328 8/13/2021
0.1.14 1,017 8/13/2021
0.1.13 609 8/12/2021
0.1.12 686 8/12/2021
0.1.11 405 8/3/2021
0.1.10 669 7/28/2021
0.1.8 358 7/28/2021
0.1.7 346 7/28/2021
0.1.6 304 3/7/2021
0.1.5 390 3/6/2021
0.1.4 335 3/3/2021
0.1.3 6,541 2/7/2021
0.1.2 320 1/31/2021
0.1.1 341 1/31/2021
0.1.0 607 1/30/2021
0.0.16 326 1/30/2021
0.0.15 657 1/30/2021
0.0.14 312 1/30/2021
0.0.12 326 1/30/2021
0.0.11 331 1/30/2021
0.0.10 874 1/29/2021
0.0.9 325 1/29/2021