it seems like for defining a custom color palette it's currently not possible to use css variables. When doing something like this:
I get a "Cannot parse color: var(--my-color)".
Am I missing something?
If not, is this feature planned to be implemented sometime soon?
For me, I absolutely need this feature since I want to maintain the link between colors used within the application. We have custom colors defined as css variables. I want those colors to appear inside the kendo colorpicker palette and when selecting one I want this css variable to be used, let's say as a colored line in a graph component. when later changing the value of the css variable the color within the graph should update. that's why converting my css variables into hex values does not work for me, since it's breaking the link.
On a sidenote - is it possibel to define a custom palette preset, like the ones available:
public palettes: string[] = [
"office",
"clarity",
"slipstream",
"basic",
"monochrome",
];
Thanks for your help.
Thomas