It looks like you’re browsing an old version of Froala. Please go to the newer version of our docs for a more updated version.
Examples
Personalized Color Picker
HTML
<div id="eg-color-picker" class="text-small"></div>
JAVASCRIPT
<script> $(function() { $('div#eg-color-picker').editable({ inlineMode: false, // Colors list. colors: [ '#15E67F', '#E3DE8C', '#D8A076', '#D83762', '#76B6D8', 'REMOVE', '#1C7A90', '#249CB8', '#4ABED9', '#FBD75B', '#FBE571', '#FFFFFF' ], // How many colors on a line. colorsStep: 6 }) }); </script>