├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── biome.json ├── dracula-pro.png ├── generated ├── Alucard.xml └── Dracula.xml ├── package.json ├── screenshot.png ├── scripts └── generate-themes.ts ├── themes ├── alucard.ts ├── dracula.ts ├── template.ts └── theme-types.ts └── tsconfig.json /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/biome.json -------------------------------------------------------------------------------- /dracula-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/dracula-pro.png -------------------------------------------------------------------------------- /generated/Alucard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/generated/Alucard.xml -------------------------------------------------------------------------------- /generated/Dracula.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/generated/Dracula.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/generate-themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/scripts/generate-themes.ts -------------------------------------------------------------------------------- /themes/alucard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/themes/alucard.ts -------------------------------------------------------------------------------- /themes/dracula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/themes/dracula.ts -------------------------------------------------------------------------------- /themes/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/themes/template.ts -------------------------------------------------------------------------------- /themes/theme-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/themes/theme-types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/notepad-plus-plus/HEAD/tsconfig.json --------------------------------------------------------------------------------