├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ └── blank.yml ├── .gitignore ├── .releaserc.js ├── .vscode ├── launch.json ├── mcp.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README-zh.md ├── README.md ├── dist └── index.html ├── icon.png ├── images ├── banner.png ├── command.png ├── corrupt.png ├── custom-theme-json.png ├── custom-theme-search.png ├── custom-theme-setting.png ├── gradient-atom-one-dark.png ├── gradient-bearded-theme-arc-woodfishhhh.png ├── gradient-bearded-theme-arc.png ├── gradient-developer-theme-firefox-dark.png ├── gradient-dracula-theme.png ├── gradient-modern-dark.png ├── gradient-monokai-pro-classic.png ├── gradient-monokai-pro.png ├── permission.png └── restart.png ├── note.md ├── package.json ├── scripts ├── build.js └── release.js ├── src ├── extension.js ├── gradient-atom-one-dark │ └── index.css ├── gradient-bearded-theme-arc-woodfishhhh │ └── index.css ├── gradient-bearded-theme-arc │ └── index.css ├── gradient-developer-theme-firefox-dark │ └── index.css ├── gradient-dracula-theme │ └── index.css ├── gradient-modern-dark-dark-modern │ └── index.css ├── gradient-monokai-pro-classic │ └── index.css └── gradient-monokai-pro │ └── index.css └── themes ├── gradient-atom-one-dark.json ├── gradient-bearded-theme-arc-woodfishhhh.json ├── gradient-bearded-theme-arc.json ├── gradient-developer-theme-firefox-dark.json ├── gradient-dracula-theme.json ├── gradient-modern-dark ├── dark-modern.json ├── dark-plus.json └── dark-vs.json ├── gradient-monokai-pro-classic.json └── gradient-monokai-pro.json /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.github/workflows/blank.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .DS_Store 3 | *.vsix 4 | -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.releaserc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/dist/index.html -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/icon.png -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/command.png -------------------------------------------------------------------------------- /images/corrupt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/corrupt.png -------------------------------------------------------------------------------- /images/custom-theme-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/custom-theme-json.png -------------------------------------------------------------------------------- /images/custom-theme-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/custom-theme-search.png -------------------------------------------------------------------------------- /images/custom-theme-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/custom-theme-setting.png -------------------------------------------------------------------------------- /images/gradient-atom-one-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-atom-one-dark.png -------------------------------------------------------------------------------- /images/gradient-bearded-theme-arc-woodfishhhh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-bearded-theme-arc-woodfishhhh.png -------------------------------------------------------------------------------- /images/gradient-bearded-theme-arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-bearded-theme-arc.png -------------------------------------------------------------------------------- /images/gradient-developer-theme-firefox-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-developer-theme-firefox-dark.png -------------------------------------------------------------------------------- /images/gradient-dracula-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-dracula-theme.png -------------------------------------------------------------------------------- /images/gradient-modern-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-modern-dark.png -------------------------------------------------------------------------------- /images/gradient-monokai-pro-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-monokai-pro-classic.png -------------------------------------------------------------------------------- /images/gradient-monokai-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/gradient-monokai-pro.png -------------------------------------------------------------------------------- /images/permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/permission.png -------------------------------------------------------------------------------- /images/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/images/restart.png -------------------------------------------------------------------------------- /note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/note.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/scripts/release.js -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/gradient-atom-one-dark/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-atom-one-dark/index.css -------------------------------------------------------------------------------- /src/gradient-bearded-theme-arc-woodfishhhh/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-bearded-theme-arc-woodfishhhh/index.css -------------------------------------------------------------------------------- /src/gradient-bearded-theme-arc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-bearded-theme-arc/index.css -------------------------------------------------------------------------------- /src/gradient-developer-theme-firefox-dark/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-developer-theme-firefox-dark/index.css -------------------------------------------------------------------------------- /src/gradient-dracula-theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-dracula-theme/index.css -------------------------------------------------------------------------------- /src/gradient-modern-dark-dark-modern/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-modern-dark-dark-modern/index.css -------------------------------------------------------------------------------- /src/gradient-monokai-pro-classic/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-monokai-pro-classic/index.css -------------------------------------------------------------------------------- /src/gradient-monokai-pro/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/src/gradient-monokai-pro/index.css -------------------------------------------------------------------------------- /themes/gradient-atom-one-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-atom-one-dark.json -------------------------------------------------------------------------------- /themes/gradient-bearded-theme-arc-woodfishhhh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-bearded-theme-arc-woodfishhhh.json -------------------------------------------------------------------------------- /themes/gradient-bearded-theme-arc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-bearded-theme-arc.json -------------------------------------------------------------------------------- /themes/gradient-developer-theme-firefox-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-developer-theme-firefox-dark.json -------------------------------------------------------------------------------- /themes/gradient-dracula-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-dracula-theme.json -------------------------------------------------------------------------------- /themes/gradient-modern-dark/dark-modern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-modern-dark/dark-modern.json -------------------------------------------------------------------------------- /themes/gradient-modern-dark/dark-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-modern-dark/dark-plus.json -------------------------------------------------------------------------------- /themes/gradient-modern-dark/dark-vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-modern-dark/dark-vs.json -------------------------------------------------------------------------------- /themes/gradient-monokai-pro-classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-monokai-pro-classic.json -------------------------------------------------------------------------------- /themes/gradient-monokai-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaobeichen/gradient-theme/HEAD/themes/gradient-monokai-pro.json --------------------------------------------------------------------------------