hy-vue-gantt
Version:
Evolution of vue-ganttastic package
20 lines (19 loc) • 540 B
TypeScript
import type { GanttColor } from "./css";
export interface ColorScheme {
primary: GanttColor;
secondary: GanttColor;
ternary: GanttColor;
quartenary: GanttColor;
hoverHighlight: GanttColor;
markerCurrentTime: GanttColor;
markerPointer: GanttColor;
text: GanttColor;
background: GanttColor;
toast?: GanttColor;
commands?: GanttColor;
rangeHighlight?: GanttColor;
holidayHighlight?: GanttColor;
barContainer?: GanttColor;
rowContainer?: GanttColor;
gridAndBorder?: GanttColor;
}