Is it possible to define the theme colors based on the themes CSS variables:
:root {
--primary: #12212e;
--secondary: #8FAECE;
--tertiary: #B53631;
--light: #EDF0F4;
--dark: #212529;
--black: #000;
--white: #fff;
--transparent: rgba(0, 0, 0, 0);
--gray-light: #DEE2E8;
--gray-med-light: #CACFD4;
--gray-med: #707479;
--gray-med-dark: #464B4F;
--gray-dark: #212529;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #dc3545;
--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}