UNPKG
atitor
Version:
latest (0.1.1)
0.1.1
0.1.0
♏ 一款现代化 Markdown 编辑器
b3log.org/vditor
Vanessa219/vditor
atitor
/
src
/
ts
/
ui
/
setTheme.ts
8 lines
(7 loc)
•
223 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
const
setTheme = (vditor: IVditor) => {
if
(vditor.options.theme ===
"dark"
) { vditor.element.classList.
add
(
"vditor--dark"
); }
else
{ vditor.element.classList.
remove
(
"vditor--dark"
); } };