Currently, I am in the process of incorporating Summernote into the jdorn json-editor. I have successfully implemented it, but now I need to find a way to change the background color of the textArea that Summernote uses. It seems there is no built-in API for this in Summernote (unless I have overlooked it). My current workaround involves using jquery to modify the background color, but this method changes the color for every instance of Summernote on the page.
Is there a specific technique within Summernote to achieve this task, or perhaps a jquery approach to target a single instance (which would be more manageable)? As someone with limited experience in jquery, this may come across as a basic inquiry.
var newCss = {};
newCss.backgroundColor = #000000;
$('.note-editable').css(newCss);