├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── screenshots │ ├── dracula.png │ ├── githubDarkMode.png │ ├── monokai.png │ ├── nightOwl.png │ ├── oneDarkPro.png │ ├── shadesOfPurple.png │ └── synthwave.png ├── showcase.gif └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── index.ts ├── package.json ├── themes ├── dracula.ts ├── github-dark-mode.ts ├── monokai.ts ├── night-owl.ts ├── one-dark-pro.ts ├── shades-of-purple.ts └── synthwave.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/screenshots/dracula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/screenshots/dracula.png -------------------------------------------------------------------------------- /.github/screenshots/githubDarkMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/screenshots/githubDarkMode.png -------------------------------------------------------------------------------- /.github/screenshots/monokai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/screenshots/monokai.png -------------------------------------------------------------------------------- /.github/screenshots/nightOwl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/screenshots/nightOwl.png -------------------------------------------------------------------------------- /.github/screenshots/oneDarkPro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/screenshots/oneDarkPro.png -------------------------------------------------------------------------------- /.github/screenshots/shadesOfPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/screenshots/shadesOfPurple.png -------------------------------------------------------------------------------- /.github/screenshots/synthwave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/screenshots/synthwave.png -------------------------------------------------------------------------------- /.github/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/showcase.gif -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/package.json -------------------------------------------------------------------------------- /themes/dracula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/themes/dracula.ts -------------------------------------------------------------------------------- /themes/github-dark-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/themes/github-dark-mode.ts -------------------------------------------------------------------------------- /themes/monokai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/themes/monokai.ts -------------------------------------------------------------------------------- /themes/night-owl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/themes/night-owl.ts -------------------------------------------------------------------------------- /themes/one-dark-pro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/themes/one-dark-pro.ts -------------------------------------------------------------------------------- /themes/shades-of-purple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/themes/shades-of-purple.ts -------------------------------------------------------------------------------- /themes/synthwave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/themes/synthwave.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boazpoolman/strapi-code-themes/HEAD/yarn.lock --------------------------------------------------------------------------------