├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── sample.md ├── screenshot.png └── theme ├── notes-dark.css └── notes-dark ├── FiraMono-Bold.ttf ├── FiraMono-Regular.ttf └── codeblock.xydark.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/README.md -------------------------------------------------------------------------------- /sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/sample.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/screenshot.png -------------------------------------------------------------------------------- /theme/notes-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/theme/notes-dark.css -------------------------------------------------------------------------------- /theme/notes-dark/FiraMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/theme/notes-dark/FiraMono-Bold.ttf -------------------------------------------------------------------------------- /theme/notes-dark/FiraMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/theme/notes-dark/FiraMono-Regular.ttf -------------------------------------------------------------------------------- /theme/notes-dark/codeblock.xydark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adesurirey/typora-notes-dark-theme/HEAD/theme/notes-dark/codeblock.xydark.css --------------------------------------------------------------------------------