25 lines
492 B
TypeScript
25 lines
492 B
TypeScript
|
const exampleTheme = {
|
||
|
placeholder: "editor-placeholder",
|
||
|
paragraph: "editor-paragraph",
|
||
|
heading: {
|
||
|
h1: "editor-heading-h1",
|
||
|
h2: "editor-heading-h2",
|
||
|
},
|
||
|
list: {
|
||
|
nested: {
|
||
|
listitem: "editor-nested-listitem",
|
||
|
},
|
||
|
ol: "editor-list-ol",
|
||
|
ul: "editor-list-ul",
|
||
|
listitem: "editor-listitem",
|
||
|
},
|
||
|
image: "editor-image",
|
||
|
link: "editor-link",
|
||
|
text: {
|
||
|
bold: "editor-text-bold",
|
||
|
italic: "editor-text-italic",
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default exampleTheme;
|