23 lines
604 B
TypeScript
23 lines
604 B
TypeScript
export const designConfig = {
|
|
colors: {
|
|
backgroundRgb: "18, 18, 18",
|
|
mainSurfaceRgb: "25, 25, 25",
|
|
horizontalSurfaceRgb: "30, 30, 30",
|
|
focusSurfaceRgb: "35, 35, 35",
|
|
activeRgb: "167, 59, 255",
|
|
activeTextRgb: "240, 240, 240",
|
|
textMainRgb: "240, 240, 240",
|
|
textMutedRgb: "166, 166, 166",
|
|
dangerRgb: "126, 126, 126",
|
|
scrollbarTrackRgb: "20, 20, 20",
|
|
scrollbarThumbRgb: "30, 30, 30",
|
|
scrollbarThumbHoverRgb: "30, 50, 30"
|
|
},
|
|
layout: {
|
|
modeColumnWidthPx: 440,
|
|
modeToggleWidthPx: 188
|
|
}
|
|
} as const;
|
|
|
|
export type DesignConfig = typeof designConfig;
|