
1. snow - 기본적이고 깔끔

2. bubble

3. 프젝에 snow 테마 넣고 화면 확인
- CDN 스크립트랑 링크 걸고 테마 스크립트 코드 넣기

<script src="https://cdn.jsdelivr.net/npm/quill@2.0.2/dist/quill.js"></script>
<link href="https://cdn.jsdelivr.net/npm/quill@2.0.2/dist/quill.snow.css" rel="stylesheet">
<div id="editor">
<h2>Demo Content</h2>
<p>Preset build with <code>snow</code> theme, and some common formats.</p>
</div>
<script>
const quill = new Quill('#editor', {
theme: 'snow' // 해당 부분을 변경하면 됨
});
</script>
Share article