SharePoint Dark Theme - Text Editor Color Problems

Hello!

Is it possible to provide a color picker for enhanced rich text fields?

I am having a problem with PlumsSail Form rich text fields. My users have an error where they see white text on a white rich text field. My SharePoint theme is dark blue backgrounds with white text.

This doesn't happen except when users copy and paste text from other text editors. I think the problem is something related to copying from a dark themed OneNote or Outlook email.

The current workaround solution. Is having the user copy/paste text to a light theme editor, then paste it back into PlumSail. This creates a problem in the Display form. We get bars of white background added to the text.

If we can't add a color picker to change the text color, is there a good CSS solution?

Thank you very much for helping me!

Hello @LMonty,

You can customize the collection of tools that are used to interact with the text using the code:

fd.spRendered(function() {
    fd.field('Richtext').widgetOptions = {
        tools: [
            { name: 'foreColor' }
        ]
    }
});

image

Note, that you need to list all tools that you want users to use.

Please find more information in our documentation here.

1 Like