Change the standard light theme of Jodit to dark or your own
Include Jodit
Copy<link rel="stylesheet" href="build/jodit.min.css" /> <script src="build/jodit.min.js"></script>
Create input element
Copy<textarea id="editor"></textarea>
Init Jodit
Copyconst editor = Jodit.make('#editor', { theme: 'dark' });
You can create self theme
Copy<style> .jodit_theme_summer { --jd-color-background-default: #417505; --jd-color-border: #474025; --jd-color-panel: #5fd3a2; --jd-color-icon: #8b572a; } </style>
And use this theme
CopyJodit.make('#summer', { theme: 'summer' });