heyday/silverstripe-colorpalette

A color palette picker for SilverStripe CMS

Installs: 109 586

Dependents: 11

Suggesters: 0

Security: 0

Stars: 22

Watchers: 32

Forks: 16

Open Issues: 0

Type:silverstripe-vendormodule

2.1.0 2023-05-22 07:33 UTC

This package is auto-updated.

Last update: 2024-03-21 01:08:00 UTC


README

Provides a color picker field in SilverStripe allowing a user to select from defined selection of colors (palette)

Installation (with composer)

$ composer require heyday/silverstripe-colorpalette

Example

Color Palette Example

Features

  • Supports usage in Elemental

Usage

Regular palette

$fields->addFieldToTab(
    'Root.Main',
    Heyday\ColorPalette\Fields\ColorPaletteField::create(
        'BackgroundColor',
        'Background Color',
        [
            'White' => '#fff',
            'Black' => '#000'
        ]
    )
);

Grouped Palette

$fields->addFieldToTab(
    'Root.Main',
    Heyday\ColorPalette\Fields\GroupedColorPaletteField::create(
        'BackgroundColor',
        'Background Color',
        array(
            'Primary Palette' => [
                'White' => '#fff',
                'Black' => '#000'
            ],
            'Secondary Palette' => [
                'Blue' => 'blue',
                'Red' => 'red'
            ]
        )
    )
);

License

SilverStripe Color Palette Field is licensed under an MIT license