This theme is now maintained at https://github.com/ristomatti/node-red-contrib-theme-solarized-dark-grey
A dark theme for Node-RED inspired by Solarized color palette by Ethan Schoonover.
Change to the Node-RED userDir
directory, usually ~/.node-red
.
cd ~/.node-red
Install this package.
npm install @node-red-contrib-themes/solarized-dark-grey
Add the following to the editorTheme
section of your settings.js
.
editorTheme: {
page: {
css: [
"<HOME>/.node-red/node_modules/@node-red-contrib-themes/solarized-dark-grey/solarized-dark-grey.css",
"<HOME>/.node-red/node_modules/@node-red-contrib-themes/solarized-dark-grey/solarized-dark-grey-nodes.css"
],
scripts: [
"<HOME>/.node-red/node_modules/@node-red-contrib-themes/solarized-dark-grey/theme-tomorrow.js",
"<HOME>/.node-red/node_modules/@node-red-contrib-themes/solarized-dark-grey/solarized-dark-grey.js"
]
}
}
Replace <HOME>
with the home directory of the user running Node-RED. For
example, /home/username
.
For more details on the configuration please refer to the Node-RED official documentation.
Restart Node-RED.
Enjoy!
Change to the Node-RED userDir
directory, usually ~/.node-red
.
cd ~/.node-red
Update this package.
npm update @node-red-contrib-themes/solarized-dark-grey
Reload the Node-RED page on the web browser.
- Ethan Schoonover - for the awesome Solarized color palette.
- Mauricio Bonani - for his help with pushing me to publish the theme.