@blocknote/mantine
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
76 lines (75 loc) • 1.7 kB
TypeScript
export declare const defaultColorScheme: string[];
export declare const lightDefaultTheme: {
colors: {
editor: {
text: string;
background: string;
};
menu: {
text: string;
background: string;
};
tooltip: {
text: string;
background: string;
};
hovered: {
text: string;
background: string;
};
selected: {
text: string;
background: string;
};
disabled: {
text: string;
background: string;
};
shadow: string;
border: string;
sideMenu: string;
highlights: Record<string, {
text: string;
background: string;
}>;
};
borderRadius: number;
fontFamily: string;
};
export declare const darkDefaultTheme: {
colors: {
editor: {
text: string;
background: string;
};
menu: {
text: string;
background: string;
};
tooltip: {
text: string;
background: string;
};
hovered: {
text: string;
background: string;
};
selected: {
text: string;
background: string;
};
disabled: {
text: string;
background: string;
};
shadow: string;
border: string;
sideMenu: string;
highlights: Record<string, {
text: string;
background: string;
}>;
};
borderRadius: number;
fontFamily: string;
};