├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DISCUSSION_TEMPLATE │ └── theme-request.yml ├── ISSUE_TEMPLATE │ ├── 01-bug-report.yml │ └── config.yml ├── release-drafter.yml ├── renovate.json └── workflows │ ├── lock.yml │ ├── pr-labels.yml │ ├── prettier.yml │ ├── release-drafter.yml │ ├── release-publish.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── .vscode └── settings.json ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── lib ├── build-theme.js ├── build.js ├── dev.js ├── init.js ├── new-theme.js └── vscode-theme.js ├── package.json ├── src ├── common │ └── common.css ├── template │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss └── themes │ ├── aurora │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── cobalt2 │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── dark │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── dracula │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── espresso-libre │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── github-dark-default │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── github-dark-dimmed │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── github-dark │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── midnight-red │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── monoindustrial │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── monokai-dimmed │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── monokai │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── night-owl │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis-azureus │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis-bordo │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis-minimus │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis-obscuro │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis-sereno │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis-uva │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis-viola │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── noctis │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── oceanic-next │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── oled │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── one-dark-pro-darker │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── one-dark-pro │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── railscasts-extended │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── selenized-dark │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── selenized-light │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── solarized-dark │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── solarized-light │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── tokyo-night-light │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── tokyo-night-storm │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── tokyo-night │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ ├── totallyinformation │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss │ ├── zenburn │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ ├── theme-vscode.json │ └── theme.scss │ └── zendesk-garden │ ├── theme-custom.css │ ├── theme-mermaid.json │ ├── theme-monaco.json │ └── theme.scss └── themes.js /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/theme-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/DISCUSSION_TEMPLATE/theme-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/ISSUE_TEMPLATE/01-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/workflows/pr-labels.yml -------------------------------------------------------------------------------- /.github/workflows/prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/workflows/prettier.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/workflows/release-publish.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | git-tag-version = false 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/README.md -------------------------------------------------------------------------------- /lib/build-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/lib/build-theme.js -------------------------------------------------------------------------------- /lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/lib/build.js -------------------------------------------------------------------------------- /lib/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/lib/dev.js -------------------------------------------------------------------------------- /lib/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/lib/init.js -------------------------------------------------------------------------------- /lib/new-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/lib/new-theme.js -------------------------------------------------------------------------------- /lib/vscode-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/lib/vscode-theme.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/package.json -------------------------------------------------------------------------------- /src/common/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/common/common.css -------------------------------------------------------------------------------- /src/template/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/template/theme-custom.css -------------------------------------------------------------------------------- /src/template/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/template/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/template/theme-monaco.json -------------------------------------------------------------------------------- /src/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/template/theme.scss -------------------------------------------------------------------------------- /src/themes/aurora/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/aurora/theme-custom.css -------------------------------------------------------------------------------- /src/themes/aurora/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/aurora/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/aurora/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/aurora/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/aurora/theme.scss -------------------------------------------------------------------------------- /src/themes/cobalt2/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/cobalt2/theme-custom.css -------------------------------------------------------------------------------- /src/themes/cobalt2/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/cobalt2/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/cobalt2/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/cobalt2/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/cobalt2/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/cobalt2/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/cobalt2/theme.scss -------------------------------------------------------------------------------- /src/themes/dark/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dark/theme-custom.css -------------------------------------------------------------------------------- /src/themes/dark/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/dark/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dark/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/dark/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dark/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/dark/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dark/theme.scss -------------------------------------------------------------------------------- /src/themes/dracula/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dracula/theme-custom.css -------------------------------------------------------------------------------- /src/themes/dracula/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/dracula/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dracula/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/dracula/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dracula/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/dracula/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/dracula/theme.scss -------------------------------------------------------------------------------- /src/themes/espresso-libre/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/espresso-libre/theme-custom.css -------------------------------------------------------------------------------- /src/themes/espresso-libre/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/espresso-libre/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/espresso-libre/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/espresso-libre/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/espresso-libre/theme.scss -------------------------------------------------------------------------------- /src/themes/github-dark-default/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-default/theme-custom.css -------------------------------------------------------------------------------- /src/themes/github-dark-default/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/github-dark-default/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-default/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/github-dark-default/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-default/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/github-dark-default/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-default/theme.scss -------------------------------------------------------------------------------- /src/themes/github-dark-dimmed/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-dimmed/theme-custom.css -------------------------------------------------------------------------------- /src/themes/github-dark-dimmed/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/github-dark-dimmed/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-dimmed/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/github-dark-dimmed/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-dimmed/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/github-dark-dimmed/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark-dimmed/theme.scss -------------------------------------------------------------------------------- /src/themes/github-dark/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark/theme-custom.css -------------------------------------------------------------------------------- /src/themes/github-dark/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/github-dark/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/github-dark/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/github-dark/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/github-dark/theme.scss -------------------------------------------------------------------------------- /src/themes/midnight-red/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/midnight-red/theme-custom.css -------------------------------------------------------------------------------- /src/themes/midnight-red/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/midnight-red/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/midnight-red/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/midnight-red/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/midnight-red/theme.scss -------------------------------------------------------------------------------- /src/themes/monoindustrial/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monoindustrial/theme-custom.css -------------------------------------------------------------------------------- /src/themes/monoindustrial/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/monoindustrial/theme-monaco.json: -------------------------------------------------------------------------------- 1 | "monoindustrial" 2 | -------------------------------------------------------------------------------- /src/themes/monoindustrial/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monoindustrial/theme.scss -------------------------------------------------------------------------------- /src/themes/monokai-dimmed/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai-dimmed/theme-custom.css -------------------------------------------------------------------------------- /src/themes/monokai-dimmed/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/monokai-dimmed/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai-dimmed/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/monokai-dimmed/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai-dimmed/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/monokai-dimmed/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai-dimmed/theme.scss -------------------------------------------------------------------------------- /src/themes/monokai/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai/theme-custom.css -------------------------------------------------------------------------------- /src/themes/monokai/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/monokai/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/monokai/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/monokai/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/monokai/theme.scss -------------------------------------------------------------------------------- /src/themes/night-owl/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/night-owl/theme-custom.css -------------------------------------------------------------------------------- /src/themes/night-owl/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/night-owl/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/night-owl/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/night-owl/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/night-owl/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/night-owl/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/night-owl/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis-azureus/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-azureus/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis-azureus/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis-azureus/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-azureus/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis-azureus/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-azureus/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis-azureus/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-azureus/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis-bordo/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-bordo/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis-bordo/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis-bordo/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-bordo/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis-bordo/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-bordo/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis-bordo/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-bordo/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis-minimus/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-minimus/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis-minimus/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis-minimus/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-minimus/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis-minimus/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-minimus/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis-minimus/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-minimus/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis-obscuro/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-obscuro/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis-obscuro/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis-obscuro/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-obscuro/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis-obscuro/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-obscuro/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis-obscuro/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-obscuro/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis-sereno/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-sereno/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis-sereno/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis-sereno/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-sereno/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis-sereno/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-sereno/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis-sereno/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-sereno/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis-uva/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-uva/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis-uva/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis-uva/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-uva/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis-uva/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-uva/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis-uva/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-uva/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis-viola/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-viola/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis-viola/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis-viola/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-viola/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis-viola/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-viola/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis-viola/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis-viola/theme.scss -------------------------------------------------------------------------------- /src/themes/noctis/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis/theme-custom.css -------------------------------------------------------------------------------- /src/themes/noctis/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/noctis/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/noctis/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/noctis/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/noctis/theme.scss -------------------------------------------------------------------------------- /src/themes/oceanic-next/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oceanic-next/theme-custom.css -------------------------------------------------------------------------------- /src/themes/oceanic-next/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/oceanic-next/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oceanic-next/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/oceanic-next/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oceanic-next/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/oceanic-next/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oceanic-next/theme.scss -------------------------------------------------------------------------------- /src/themes/oled/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oled/theme-custom.css -------------------------------------------------------------------------------- /src/themes/oled/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/oled/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oled/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/oled/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oled/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/oled/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/oled/theme.scss -------------------------------------------------------------------------------- /src/themes/one-dark-pro-darker/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro-darker/theme-custom.css -------------------------------------------------------------------------------- /src/themes/one-dark-pro-darker/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/one-dark-pro-darker/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro-darker/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/one-dark-pro-darker/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro-darker/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/one-dark-pro-darker/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro-darker/theme.scss -------------------------------------------------------------------------------- /src/themes/one-dark-pro/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro/theme-custom.css -------------------------------------------------------------------------------- /src/themes/one-dark-pro/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/one-dark-pro/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/one-dark-pro/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/one-dark-pro/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/one-dark-pro/theme.scss -------------------------------------------------------------------------------- /src/themes/railscasts-extended/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/railscasts-extended/theme-custom.css -------------------------------------------------------------------------------- /src/themes/railscasts-extended/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/railscasts-extended/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/railscasts-extended/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/railscasts-extended/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/railscasts-extended/theme.scss -------------------------------------------------------------------------------- /src/themes/selenized-dark/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-dark/theme-custom.css -------------------------------------------------------------------------------- /src/themes/selenized-dark/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/selenized-dark/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-dark/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/selenized-dark/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-dark/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/selenized-dark/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-dark/theme.scss -------------------------------------------------------------------------------- /src/themes/selenized-light/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-light/theme-custom.css -------------------------------------------------------------------------------- /src/themes/selenized-light/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "default" 2 | -------------------------------------------------------------------------------- /src/themes/selenized-light/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-light/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/selenized-light/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-light/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/selenized-light/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/selenized-light/theme.scss -------------------------------------------------------------------------------- /src/themes/solarized-dark/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/solarized-dark/theme-custom.css -------------------------------------------------------------------------------- /src/themes/solarized-dark/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/solarized-dark/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/solarized-dark/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/solarized-dark/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/solarized-dark/theme.scss -------------------------------------------------------------------------------- /src/themes/solarized-light/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/solarized-light/theme-custom.css -------------------------------------------------------------------------------- /src/themes/solarized-light/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "default" 2 | -------------------------------------------------------------------------------- /src/themes/solarized-light/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/solarized-light/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/solarized-light/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/solarized-light/theme.scss -------------------------------------------------------------------------------- /src/themes/tokyo-night-light/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-light/theme-custom.css -------------------------------------------------------------------------------- /src/themes/tokyo-night-light/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "default" 2 | -------------------------------------------------------------------------------- /src/themes/tokyo-night-light/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-light/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/tokyo-night-light/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-light/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/tokyo-night-light/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-light/theme.scss -------------------------------------------------------------------------------- /src/themes/tokyo-night-storm/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-storm/theme-custom.css -------------------------------------------------------------------------------- /src/themes/tokyo-night-storm/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/tokyo-night-storm/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-storm/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/tokyo-night-storm/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-storm/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/tokyo-night-storm/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night-storm/theme.scss -------------------------------------------------------------------------------- /src/themes/tokyo-night/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night/theme-custom.css -------------------------------------------------------------------------------- /src/themes/tokyo-night/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/tokyo-night/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/tokyo-night/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/tokyo-night/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/tokyo-night/theme.scss -------------------------------------------------------------------------------- /src/themes/totallyinformation/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/totallyinformation/theme-custom.css -------------------------------------------------------------------------------- /src/themes/totallyinformation/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "default" 2 | -------------------------------------------------------------------------------- /src/themes/totallyinformation/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/totallyinformation/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/totallyinformation/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/totallyinformation/theme.scss -------------------------------------------------------------------------------- /src/themes/zenburn/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/zenburn/theme-custom.css -------------------------------------------------------------------------------- /src/themes/zenburn/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/zenburn/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/zenburn/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/zenburn/theme-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/zenburn/theme-vscode.json -------------------------------------------------------------------------------- /src/themes/zenburn/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/zenburn/theme.scss -------------------------------------------------------------------------------- /src/themes/zendesk-garden/theme-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/zendesk-garden/theme-custom.css -------------------------------------------------------------------------------- /src/themes/zendesk-garden/theme-mermaid.json: -------------------------------------------------------------------------------- 1 | "dark" 2 | -------------------------------------------------------------------------------- /src/themes/zendesk-garden/theme-monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/zendesk-garden/theme-monaco.json -------------------------------------------------------------------------------- /src/themes/zendesk-garden/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/src/themes/zendesk-garden/theme.scss -------------------------------------------------------------------------------- /themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-red-contrib-themes/theme-collection/HEAD/themes.js --------------------------------------------------------------------------------