blob: 4e95ebc799b074bfb76cfaefd91e9160a18f6b1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Customization
*
* Pico.css - https://picocss.com
* Copyright 2019-2023 - Licensed under MIT
*/
// Imports
import materialDesignColors from './src/material-design-colors.js';
import colorPicker from './src/color-picker.js';
// Color Picker
colorPicker.colors = materialDesignColors;
colorPicker.init();
|