├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ ├── release.yml │ └── todo.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── IMG-20220419-WA0000.jpg ├── LICENSE ├── README.md ├── chrome.manifest ├── content ├── css.ts ├── debug.ts ├── hexToFilter.ts ├── nord.ts ├── options.xul ├── zotero-night.ts └── zotero-night.xul ├── defaults └── preferences │ └── options.js ├── esbuild.js ├── locale └── en-US │ ├── options.dtd │ └── zotero-night.dtd ├── package.json ├── patches └── css-colors-to-vars+1.0.2.patch ├── skin ├── editor-base-vars.css ├── editor-base.css ├── night-base-vars.css ├── night-base.css ├── night-contextpane.css ├── night-editor.css ├── night-react-client.css ├── night-vars.css ├── night-viewer.css ├── night.css ├── night1.css ├── night1.css.map └── night1.scss ├── start.ini ├── start.py ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.d.ts 3 | generator-temp 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/.github/workflows/todo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /IMG-20220419-WA0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/IMG-20220419-WA0000.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/README.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/chrome.manifest -------------------------------------------------------------------------------- /content/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/content/css.ts -------------------------------------------------------------------------------- /content/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/content/debug.ts -------------------------------------------------------------------------------- /content/hexToFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/content/hexToFilter.ts -------------------------------------------------------------------------------- /content/nord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/content/nord.ts -------------------------------------------------------------------------------- /content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/content/options.xul -------------------------------------------------------------------------------- /content/zotero-night.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/content/zotero-night.ts -------------------------------------------------------------------------------- /content/zotero-night.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/content/zotero-night.xul -------------------------------------------------------------------------------- /defaults/preferences/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/defaults/preferences/options.js -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/esbuild.js -------------------------------------------------------------------------------- /locale/en-US/options.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/en-US/zotero-night.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/locale/en-US/zotero-night.dtd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/package.json -------------------------------------------------------------------------------- /patches/css-colors-to-vars+1.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/patches/css-colors-to-vars+1.0.2.patch -------------------------------------------------------------------------------- /skin/editor-base-vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/editor-base-vars.css -------------------------------------------------------------------------------- /skin/editor-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/editor-base.css -------------------------------------------------------------------------------- /skin/night-base-vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night-base-vars.css -------------------------------------------------------------------------------- /skin/night-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night-base.css -------------------------------------------------------------------------------- /skin/night-contextpane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night-contextpane.css -------------------------------------------------------------------------------- /skin/night-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night-editor.css -------------------------------------------------------------------------------- /skin/night-react-client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night-react-client.css -------------------------------------------------------------------------------- /skin/night-vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night-vars.css -------------------------------------------------------------------------------- /skin/night-viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night-viewer.css -------------------------------------------------------------------------------- /skin/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night.css -------------------------------------------------------------------------------- /skin/night1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night1.css -------------------------------------------------------------------------------- /skin/night1.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night1.css.map -------------------------------------------------------------------------------- /skin/night1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/skin/night1.scss -------------------------------------------------------------------------------- /start.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/start.ini -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/start.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-night/HEAD/yarn.lock --------------------------------------------------------------------------------