|
1 |
| -import { OptionBase } from "chakra-react-select"; |
| 1 | +import type { ColorPalette } from "@chakra-ui/react"; |
| 2 | +import type { OptionBase } from "chakra-react-select"; |
2 | 3 |
|
3 | 4 | export interface ColorOption extends OptionBase {
|
4 | 5 | label: string;
|
5 |
| - value: string; |
6 |
| - color: string; |
| 6 | + value: ColorPalette; |
7 | 7 | }
|
8 | 8 |
|
9 | 9 | export const colorOptions: ColorOption[] = [
|
10 |
| - { value: "blue", label: "Blue", color: "#0052CC" }, |
11 |
| - { value: "purple", label: "Purple", color: "#5243AA" }, |
12 |
| - { value: "red", label: "Red", color: "#FF5630" }, |
13 |
| - { value: "orange", label: "Orange", color: "#FF8B00" }, |
14 |
| - { value: "yellow", label: "Yellow", color: "#FFC400" }, |
15 |
| - { value: "green", label: "Green", color: "#36B37E" }, |
| 10 | + { value: "gray", label: "Gray" }, |
| 11 | + { value: "red", label: "Red" }, |
| 12 | + { value: "pink", label: "Pink" }, |
| 13 | + { value: "purple", label: "Purple" }, |
| 14 | + { value: "cyan", label: "Cyan" }, |
| 15 | + { value: "blue", label: "Blue" }, |
| 16 | + { value: "teal", label: "Teal" }, |
| 17 | + { value: "green", label: "Green" }, |
| 18 | + { value: "yellow", label: "Yellow" }, |
| 19 | + { value: "orange", label: "Orange" }, |
| 20 | + { value: "brand", label: "Brand" }, |
16 | 21 | ];
|
17 | 22 |
|
18 | 23 | export interface FlavorOption extends OptionBase {
|
|
0 commit comments