├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── scripts ├── download.ts └── generate.ts ├── src ├── fast-plist.d.ts └── index.ts ├── themes ├── Active4D.json ├── All Hallows Eve.json ├── Amy.json ├── Birds of Paradise.json ├── Blackboard.json ├── Brilliance Black.json ├── Brilliance Dull.json ├── Chrome DevTools.json ├── Clouds Midnight.json ├── Clouds.json ├── Cobalt.json ├── Cobalt2.json ├── Dawn.json ├── Dominion Day.json ├── Dracula.json ├── Dreamweaver.json ├── Eiffel.json ├── Espresso Libre.json ├── GitHub Dark.json ├── GitHub Light.json ├── GitHub.json ├── IDLE.json ├── Katzenmilch.json ├── Kuroir Theme.json ├── LAZY.json ├── MagicWB (Amiga).json ├── Merbivore Soft.json ├── Merbivore.json ├── Monokai Bright.json ├── Monokai.json ├── Night Owl.json ├── Nord.json ├── Oceanic Next.json ├── Pastels on Dark.json ├── Slush and Poppies.json ├── Solarized-dark.json ├── Solarized-light.json ├── SpaceCadet.json ├── Sunburst.json ├── Textmate (Mac Classic).json ├── Tomorrow-Night-Blue.json ├── Tomorrow-Night-Bright.json ├── Tomorrow-Night-Eighties.json ├── Tomorrow-Night.json ├── Tomorrow.json ├── Twilight.json ├── Upstream Sunburst.json ├── Vibrant Ink.json ├── Xcode_default.json ├── Zenburnesque.json ├── iPlastic.json ├── idleFingers.json ├── krTheme.json ├── monoindustrial.json └── themelist.json ├── tmthemes └── .empty ├── tsconfig.json ├── tsdown.config.ts ├── vite.config.ts └── yarn.lock /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/scripts/download.ts -------------------------------------------------------------------------------- /scripts/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/scripts/generate.ts -------------------------------------------------------------------------------- /src/fast-plist.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/src/fast-plist.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/src/index.ts -------------------------------------------------------------------------------- /themes/Active4D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Active4D.json -------------------------------------------------------------------------------- /themes/All Hallows Eve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/All Hallows Eve.json -------------------------------------------------------------------------------- /themes/Amy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Amy.json -------------------------------------------------------------------------------- /themes/Birds of Paradise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Birds of Paradise.json -------------------------------------------------------------------------------- /themes/Blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Blackboard.json -------------------------------------------------------------------------------- /themes/Brilliance Black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Brilliance Black.json -------------------------------------------------------------------------------- /themes/Brilliance Dull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Brilliance Dull.json -------------------------------------------------------------------------------- /themes/Chrome DevTools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Chrome DevTools.json -------------------------------------------------------------------------------- /themes/Clouds Midnight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Clouds Midnight.json -------------------------------------------------------------------------------- /themes/Clouds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Clouds.json -------------------------------------------------------------------------------- /themes/Cobalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Cobalt.json -------------------------------------------------------------------------------- /themes/Cobalt2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Cobalt2.json -------------------------------------------------------------------------------- /themes/Dawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Dawn.json -------------------------------------------------------------------------------- /themes/Dominion Day.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Dominion Day.json -------------------------------------------------------------------------------- /themes/Dracula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Dracula.json -------------------------------------------------------------------------------- /themes/Dreamweaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Dreamweaver.json -------------------------------------------------------------------------------- /themes/Eiffel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Eiffel.json -------------------------------------------------------------------------------- /themes/Espresso Libre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Espresso Libre.json -------------------------------------------------------------------------------- /themes/GitHub Dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/GitHub Dark.json -------------------------------------------------------------------------------- /themes/GitHub Light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/GitHub Light.json -------------------------------------------------------------------------------- /themes/GitHub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/GitHub.json -------------------------------------------------------------------------------- /themes/IDLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/IDLE.json -------------------------------------------------------------------------------- /themes/Katzenmilch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Katzenmilch.json -------------------------------------------------------------------------------- /themes/Kuroir Theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Kuroir Theme.json -------------------------------------------------------------------------------- /themes/LAZY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/LAZY.json -------------------------------------------------------------------------------- /themes/MagicWB (Amiga).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/MagicWB (Amiga).json -------------------------------------------------------------------------------- /themes/Merbivore Soft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Merbivore Soft.json -------------------------------------------------------------------------------- /themes/Merbivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Merbivore.json -------------------------------------------------------------------------------- /themes/Monokai Bright.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Monokai Bright.json -------------------------------------------------------------------------------- /themes/Monokai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Monokai.json -------------------------------------------------------------------------------- /themes/Night Owl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Night Owl.json -------------------------------------------------------------------------------- /themes/Nord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Nord.json -------------------------------------------------------------------------------- /themes/Oceanic Next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Oceanic Next.json -------------------------------------------------------------------------------- /themes/Pastels on Dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Pastels on Dark.json -------------------------------------------------------------------------------- /themes/Slush and Poppies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Slush and Poppies.json -------------------------------------------------------------------------------- /themes/Solarized-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Solarized-dark.json -------------------------------------------------------------------------------- /themes/Solarized-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Solarized-light.json -------------------------------------------------------------------------------- /themes/SpaceCadet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/SpaceCadet.json -------------------------------------------------------------------------------- /themes/Sunburst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Sunburst.json -------------------------------------------------------------------------------- /themes/Textmate (Mac Classic).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Textmate (Mac Classic).json -------------------------------------------------------------------------------- /themes/Tomorrow-Night-Blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Tomorrow-Night-Blue.json -------------------------------------------------------------------------------- /themes/Tomorrow-Night-Bright.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Tomorrow-Night-Bright.json -------------------------------------------------------------------------------- /themes/Tomorrow-Night-Eighties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Tomorrow-Night-Eighties.json -------------------------------------------------------------------------------- /themes/Tomorrow-Night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Tomorrow-Night.json -------------------------------------------------------------------------------- /themes/Tomorrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Tomorrow.json -------------------------------------------------------------------------------- /themes/Twilight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Twilight.json -------------------------------------------------------------------------------- /themes/Upstream Sunburst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Upstream Sunburst.json -------------------------------------------------------------------------------- /themes/Vibrant Ink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Vibrant Ink.json -------------------------------------------------------------------------------- /themes/Xcode_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Xcode_default.json -------------------------------------------------------------------------------- /themes/Zenburnesque.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/Zenburnesque.json -------------------------------------------------------------------------------- /themes/iPlastic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/iPlastic.json -------------------------------------------------------------------------------- /themes/idleFingers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/idleFingers.json -------------------------------------------------------------------------------- /themes/krTheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/krTheme.json -------------------------------------------------------------------------------- /themes/monoindustrial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/monoindustrial.json -------------------------------------------------------------------------------- /themes/themelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/themes/themelist.json -------------------------------------------------------------------------------- /tmthemes/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/tsdown.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brijeshb42/monaco-themes/HEAD/yarn.lock --------------------------------------------------------------------------------