import {html} from "lit";
import type {DataProviderOption, LocalDataProvider} from "./provider";
export const colors = ['Red', 'Blue', 'Orange', 'Yellow', 'Indigo', 'Violet', 'Green', 'Pink', 'Gray']
export const colorDataProvider: LocalDataProvider = {
getName: 'color',
getData: Object.entries(colors).map(([, value]: [string, string]) => {
return {
key: value.toLowerCase(),
value,
prefix: html``
};
})
};