├── .gitattributes ├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── .vscodeignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── Witch Hazel-color-theme.json ├── Witch Hazel-hypercolor-theme.json ├── alacritty ├── witchhazel.toml └── witchhazel_hyper.toml ├── colors ├── witchhazel-hypercolor.vim └── witchhazel.vim ├── demo ├── .editorconfig ├── .vscode │ └── settings.json ├── checkbox_with_label.test.js ├── clojure.clj ├── clojurescript.cljs ├── cplusplus-header.h ├── cplusplus-source.cc ├── csharp.cs ├── css.css ├── elm.elm ├── flutter.dart ├── html.html ├── issue-91.jsx ├── issue-91.tsx ├── js.js ├── json.json ├── markdown.md ├── newfile.js ├── php.php ├── powershell.ps1 ├── pug.pug ├── python.py ├── react.js ├── reacthook.js ├── ruby.rb ├── statelessfunctionalreact.js ├── stylus.styl ├── tsx.tsx ├── vuedemo.vue └── yml.yml ├── docs ├── CNAME ├── index.html ├── logo.png ├── screen-classic.png ├── screen-hyper.png └── style.css ├── helix ├── README.md ├── witchhazel.toml └── witchhazel_hyper.toml ├── images └── witch-hazel-circle-icon.png ├── kicad ├── colors │ └── witchhazel.json ├── metadata.json └── resources │ └── icon.png ├── kitty ├── witchhazel-hypercolor.conf └── witchhazel.conf ├── lite-xl ├── README.md ├── witch_hazel.lua └── witch_hazel_hypercolor.lua ├── mintty ├── witchhazel └── witchhazel_hyper ├── package.json ├── pywal ├── witchhazel.json └── witchhazel_hyper.json ├── setup.py ├── warp ├── README.md ├── witchhazel.yaml └── witchhazel_hypercolor.yaml ├── witch-hazel-syntax.zip ├── witchhazel-hypercolor-theme.el ├── witchhazel-theme.el ├── witchhazel.icls ├── witchhazel.itermcolors ├── witchhazel.nvim ├── colors │ └── witchhazel.lua ├── lua │ └── witchhazel │ │ ├── init.lua │ │ ├── palette.lua │ │ └── theme.lua └── witchhazel │ ├── colors │ └── witchhazel.lua │ └── lua │ └── witchhazel │ ├── init.lua │ ├── palette.lua │ └── theme.lua ├── witchhazel.py ├── witchhazel.tmTheme ├── witchhazelhypercolor.icls └── witchhazelhypercolor.tmTheme /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/README.md -------------------------------------------------------------------------------- /Witch Hazel-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/Witch Hazel-color-theme.json -------------------------------------------------------------------------------- /Witch Hazel-hypercolor-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/Witch Hazel-hypercolor-theme.json -------------------------------------------------------------------------------- /alacritty/witchhazel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/alacritty/witchhazel.toml -------------------------------------------------------------------------------- /alacritty/witchhazel_hyper.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/alacritty/witchhazel_hyper.toml -------------------------------------------------------------------------------- /colors/witchhazel-hypercolor.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/colors/witchhazel-hypercolor.vim -------------------------------------------------------------------------------- /colors/witchhazel.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/colors/witchhazel.vim -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.linting.enabled": false 3 | } -------------------------------------------------------------------------------- /demo/checkbox_with_label.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/checkbox_with_label.test.js -------------------------------------------------------------------------------- /demo/clojure.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/clojure.clj -------------------------------------------------------------------------------- /demo/clojurescript.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/clojurescript.cljs -------------------------------------------------------------------------------- /demo/cplusplus-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/cplusplus-header.h -------------------------------------------------------------------------------- /demo/cplusplus-source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/cplusplus-source.cc -------------------------------------------------------------------------------- /demo/csharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/csharp.cs -------------------------------------------------------------------------------- /demo/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/css.css -------------------------------------------------------------------------------- /demo/elm.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/elm.elm -------------------------------------------------------------------------------- /demo/flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/flutter.dart -------------------------------------------------------------------------------- /demo/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/html.html -------------------------------------------------------------------------------- /demo/issue-91.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/issue-91.jsx -------------------------------------------------------------------------------- /demo/issue-91.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/issue-91.tsx -------------------------------------------------------------------------------- /demo/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/js.js -------------------------------------------------------------------------------- /demo/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/json.json -------------------------------------------------------------------------------- /demo/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/markdown.md -------------------------------------------------------------------------------- /demo/newfile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/php.php -------------------------------------------------------------------------------- /demo/powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/powershell.ps1 -------------------------------------------------------------------------------- /demo/pug.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/pug.pug -------------------------------------------------------------------------------- /demo/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/python.py -------------------------------------------------------------------------------- /demo/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/react.js -------------------------------------------------------------------------------- /demo/reacthook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/reacthook.js -------------------------------------------------------------------------------- /demo/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/ruby.rb -------------------------------------------------------------------------------- /demo/statelessfunctionalreact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/statelessfunctionalreact.js -------------------------------------------------------------------------------- /demo/stylus.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/stylus.styl -------------------------------------------------------------------------------- /demo/tsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/tsx.tsx -------------------------------------------------------------------------------- /demo/vuedemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/vuedemo.vue -------------------------------------------------------------------------------- /demo/yml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/demo/yml.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | witchhazel.thea.codes -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/screen-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/docs/screen-classic.png -------------------------------------------------------------------------------- /docs/screen-hyper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/docs/screen-hyper.png -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/docs/style.css -------------------------------------------------------------------------------- /helix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/helix/README.md -------------------------------------------------------------------------------- /helix/witchhazel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/helix/witchhazel.toml -------------------------------------------------------------------------------- /helix/witchhazel_hyper.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/helix/witchhazel_hyper.toml -------------------------------------------------------------------------------- /images/witch-hazel-circle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/images/witch-hazel-circle-icon.png -------------------------------------------------------------------------------- /kicad/colors/witchhazel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/kicad/colors/witchhazel.json -------------------------------------------------------------------------------- /kicad/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/kicad/metadata.json -------------------------------------------------------------------------------- /kicad/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/kicad/resources/icon.png -------------------------------------------------------------------------------- /kitty/witchhazel-hypercolor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/kitty/witchhazel-hypercolor.conf -------------------------------------------------------------------------------- /kitty/witchhazel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/kitty/witchhazel.conf -------------------------------------------------------------------------------- /lite-xl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/lite-xl/README.md -------------------------------------------------------------------------------- /lite-xl/witch_hazel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/lite-xl/witch_hazel.lua -------------------------------------------------------------------------------- /lite-xl/witch_hazel_hypercolor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/lite-xl/witch_hazel_hypercolor.lua -------------------------------------------------------------------------------- /mintty/witchhazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/mintty/witchhazel -------------------------------------------------------------------------------- /mintty/witchhazel_hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/mintty/witchhazel_hyper -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/package.json -------------------------------------------------------------------------------- /pywal/witchhazel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/pywal/witchhazel.json -------------------------------------------------------------------------------- /pywal/witchhazel_hyper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/pywal/witchhazel_hyper.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/setup.py -------------------------------------------------------------------------------- /warp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/warp/README.md -------------------------------------------------------------------------------- /warp/witchhazel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/warp/witchhazel.yaml -------------------------------------------------------------------------------- /warp/witchhazel_hypercolor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/warp/witchhazel_hypercolor.yaml -------------------------------------------------------------------------------- /witch-hazel-syntax.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witch-hazel-syntax.zip -------------------------------------------------------------------------------- /witchhazel-hypercolor-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel-hypercolor-theme.el -------------------------------------------------------------------------------- /witchhazel-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel-theme.el -------------------------------------------------------------------------------- /witchhazel.icls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.icls -------------------------------------------------------------------------------- /witchhazel.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.itermcolors -------------------------------------------------------------------------------- /witchhazel.nvim/colors/witchhazel.lua: -------------------------------------------------------------------------------- 1 | require("witchhazel").setup({}) 2 | -------------------------------------------------------------------------------- /witchhazel.nvim/lua/witchhazel/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.nvim/lua/witchhazel/init.lua -------------------------------------------------------------------------------- /witchhazel.nvim/lua/witchhazel/palette.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.nvim/lua/witchhazel/palette.lua -------------------------------------------------------------------------------- /witchhazel.nvim/lua/witchhazel/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.nvim/lua/witchhazel/theme.lua -------------------------------------------------------------------------------- /witchhazel.nvim/witchhazel/colors/witchhazel.lua: -------------------------------------------------------------------------------- 1 | require("witchhazel").setup({}) 2 | -------------------------------------------------------------------------------- /witchhazel.nvim/witchhazel/lua/witchhazel/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.nvim/witchhazel/lua/witchhazel/init.lua -------------------------------------------------------------------------------- /witchhazel.nvim/witchhazel/lua/witchhazel/palette.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.nvim/witchhazel/lua/witchhazel/palette.lua -------------------------------------------------------------------------------- /witchhazel.nvim/witchhazel/lua/witchhazel/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.nvim/witchhazel/lua/witchhazel/theme.lua -------------------------------------------------------------------------------- /witchhazel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.py -------------------------------------------------------------------------------- /witchhazel.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazel.tmTheme -------------------------------------------------------------------------------- /witchhazelhypercolor.icls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazelhypercolor.icls -------------------------------------------------------------------------------- /witchhazelhypercolor.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theacodes/witchhazel/HEAD/witchhazelhypercolor.tmTheme --------------------------------------------------------------------------------