-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
default.js
39 lines (38 loc) · 1.11 KB
/
default.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const defaultTheme = {
paragraph: undefined,
heading: {
h1: undefined,
h2: undefined,
h3: undefined,
h4: undefined,
h5: undefined,
h6: undefined
},
quote: undefined,
aside: undefined,
list: {
nested: {
listitem: '!list-none'
},
ol: undefined,
ul: undefined,
listitem: undefined
},
link: undefined,
text: {
bold: undefined,
italic: 'italic',
overflowed: undefined,
hashtag: undefined,
underline: 'underline',
strikethrough: 'line-through',
underlinestrikethrough: undefined,
code: undefined
},
code: undefined,
tkHighlighted: 'bg-lime-500 dark:bg-lime-800 py-1',
atLink: 'inline-block bg-grey-200/70 mx-[-.2rem] px-1 pb-[.2rem] leading-[1.4] rounded dark:bg-grey-950',
atLinkSearch: 'after:content-[attr(data-placeholder)] after:text-grey-500 dark:after:text-grey-600 min-w-[5px]',
atLinkIcon: 'size-[1.5rem] stroke-[2.5] inline-block mx-1 mb-1 text-grey-600 dark:text-grey-500'
};
export default defaultTheme;