Skip to content

tossnet/Blazor-Color-Picker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Christophe Peugnet
Mar 16, 2025
44ff022 · Mar 16, 2025
Mar 15, 2025
Mar 16, 2025
Mar 16, 2025
Mar 16, 2025
May 25, 2020
Mar 15, 2025
May 26, 2020
Apr 10, 2022
Mar 16, 2025

Repository files navigation

Blazor-Color-Picker

NuGet BlazorColorPicker Nuget Package

Sometimes HTML5 colorpicker doesn't suit me for an application. I prefer to offer the user a predefined color palette

DEMO : https://tossnet.github.io/Blazor-Color-Picker/

Opens a palette with the Material colors

Blazor Color Picker

Installation

Warning

The implementation has been improved: version 4.0 uses a service declared via dependency injection

Latest version in here: NuGet

To Install

Install-Package BlazorColorPicker

or

dotnet add package BlazorColorPicker

For client-side and server-side Blazor - add script section to index.html or _Host.cshtml (head section)

<link href="_content/BlazorColorPicker/colorpicker.css" rel="stylesheet" />

In program.cs, declare

builder.Services.AddColorPicker();

ColorPicker are rendered by the <BlazorColorPicker.ColorPicker />. This component needs to be added to the main layout of your application/site. You typically do this in the MainLayout.razor file at the end of the

section.

Usage

@page "/"
@using BlazorColorPicker

@inject IColorPickerService ColorPickerService

<button class="btn btn-primary" @onclick="OpenModal">
    <div style="background-color:@color" class="buttonColor"></div> Select a Color
</button>

@code {
    private string color = "#F1F7E9";

    private async Task OpenModal()
    {
        var parameters = new ColorPickerParameters
        {
        	ColorSelected = color,
        };
        color = await ColorPickerService.ShowColorPicker(parameters);
    }
}

Release Notes

Version 4.0.2 >- Added AddColorPicker() to simplify declaration
Version 4.0.1 >- increase the z-index to 9999
Version 4.0.0 >- the implementation has been improved: version 4.0 uses a service declared via dependency injection

⚠️ Breaking changes ⚠️

Version 3.1.0 >- you can customise the size of the palette using your CSS styles >- A red colour of the first column was not correct >- Re-addition of .NET7 compatibility
Version 2.2.0
  • Remove the internal use of IJSRuntime
Version 2.1.0
  • no need to declare the _content/BlazorColorPicker/colorpicker.js file