• Jodit
  • PRO
  • Builder
  • Getting Started
  • Playground
  • Examples
  • Documentation
  • Download
  • Jodit
  • Examples
  • © 2025 XDSoft.net
  • site v.0.1.810
  • Jodit v.4.6.2
Modules
Filebrowser module without Jodit
Custom module

Sizes
Autosize
Fixed height

Integrations
Joomla Component Jodit WYSIWYG
Angular Component Jodit WYSIWYG
React JS Jodit WYSIWYG
Integration with ElFinder
Jodit in Yii2
Integrate filebrowser in Joomla CMS

Theme
Drak or custom theme

Edit modes
Source mode
Read only
Read only

Plugins
Create custom plugin

Customization
Keyboard shortcuts

Toolbar
Small Icons
Large Icons
Text Icons
Custom icons / Use Font awesome
Custom button

Dark or custom theme

Change the standard light theme of Jodit to dark or your own

Include Jodit

<link rel="stylesheet" href="build/jodit.min.css" /> <script src="build/jodit.min.js"></script>
Copy

Create input element

<textarea id="editor"></textarea>
Copy

Init Jodit

const editor = Jodit.make('#editor', { theme: 'dark' });
Copy

Result

You can create self theme

<style> .jodit_theme_summer { --jd-color-background-default: #417505; --jd-color-border: #474025; --jd-color-panel: #5fd3a2; --jd-color-icon: #8b572a; } </style>
Copy

And use this theme

Jodit.make('#summer', { theme: 'summer' });
Copy

Result

;