@datalayer/core
Version:
**Datalayer Core**
38 lines (37 loc) • 727 B
TypeScript
declare const theme: {
animation: {
easeOutCubic: string;
};
borderWidths: (string | number)[];
breakpoints: string[];
fonts: {
normal: any;
mono: string;
};
fontSizes: string[];
fontWeights: {
light: number;
normal: number;
semibold: number;
bold: number;
};
lineHeights: {
condensedUltra: number;
condensed: number;
default: number;
};
radii: string[];
sizes: {
small: string;
medium: string;
large: string;
xlarge: string;
};
space: string[];
} & {
colorSchemes: {
light: {};
dark: {};
};
};
export { theme as datalayerTheme };