How to change node-red header color?

How do i change the black header color of node-red?
I tried several times but was unsuccessful.

Edit settings.css and add a custom CSS file for the editor
Below
editorTheme: {
insert this: (change the css file pathname to suit your setup)

       page: {
          css: "/home/pi/.node-red/editor.css"
       },

Now in ~/.node-red/editor.css you can specify various styling options for the editor such as

#red-ui-header {
background-color: pink;
}

You need to restart Node-red to load the CSS file.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.