├── .gitattributes ├── README.md ├── templates ├── config.yaml └── default.mustache └── windows-command-prompt ├── base16-3024.reg ├── base16-apathy.reg ├── base16-ashes.reg ├── base16-atelier-cave-light.reg ├── base16-atelier-cave.reg ├── base16-atelier-dune-light.reg ├── base16-atelier-dune.reg ├── base16-atelier-estuary-light.reg ├── base16-atelier-estuary.reg ├── base16-atelier-forest-light.reg ├── base16-atelier-forest.reg ├── base16-atelier-heath-light.reg ├── base16-atelier-heath.reg ├── base16-atelier-lakeside-light.reg ├── base16-atelier-lakeside.reg ├── base16-atelier-plateau-light.reg ├── base16-atelier-plateau.reg ├── base16-atelier-savanna-light.reg ├── base16-atelier-savanna.reg ├── base16-atelier-seaside-light.reg ├── base16-atelier-seaside.reg ├── base16-atelier-sulphurpool-light.reg ├── base16-atelier-sulphurpool.reg ├── base16-bespin.reg ├── base16-brewer.reg ├── base16-bright.reg ├── base16-chalk.reg ├── base16-circus.reg ├── base16-classic-dark.reg ├── base16-classic-light.reg ├── base16-codeschool.reg ├── base16-cupcake.reg ├── base16-cupertino.reg ├── base16-darktooth.reg ├── base16-default-dark.reg ├── base16-default-light.reg ├── base16-dracula.reg ├── base16-eighties.reg ├── base16-embers.reg ├── base16-flat.reg ├── base16-github.reg ├── base16-google-dark.reg ├── base16-google-light.reg ├── base16-grayscale-dark.reg ├── base16-grayscale-light.reg ├── base16-greenscreen.reg ├── base16-gruvbox-dark-hard.reg ├── base16-gruvbox-dark-medium.reg ├── base16-gruvbox-dark-pale.reg ├── base16-gruvbox-dark-soft.reg ├── base16-gruvbox-light-hard.reg ├── base16-gruvbox-light-medium.reg ├── base16-gruvbox-light-soft.reg ├── base16-harmonic-dark.reg ├── base16-harmonic-light.reg ├── base16-hopscotch.reg ├── base16-irblack.reg ├── base16-isotope.reg ├── base16-macintosh.reg ├── base16-marrakesh.reg ├── base16-materia.reg ├── base16-mexico-light.reg ├── base16-mocha.reg ├── base16-monokai.reg ├── base16-nord.reg ├── base16-ocean.reg ├── base16-oceanicnext.reg ├── base16-one-light.reg ├── base16-onedark.reg ├── base16-paraiso.reg ├── base16-phd.reg ├── base16-pico.reg ├── base16-pop.reg ├── base16-railscasts.reg ├── base16-rebecca.reg ├── base16-seti.reg ├── base16-shapeshifter.reg ├── base16-solarflare.reg ├── base16-solarized-dark.reg ├── base16-solarized-light.reg ├── base16-spacemacs.reg ├── base16-summerfruit-dark.reg ├── base16-summerfruit-light.reg ├── base16-tomorrow-night.reg ├── base16-tomorrow.reg ├── base16-tube.reg ├── base16-twilight.reg ├── base16-unikitty-dark.reg ├── base16-unikitty-light.reg └── base16-woodland.reg /.gitattributes: -------------------------------------------------------------------------------- 1 | *.reg text eol=crlf 2 | templates/default.mustache text eol=crlf 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | base16-windows-command-prompt 2 | ============================= 3 | 4 | Base16 for Windows Command Prompt 5 | 6 | For Ubuntu on Windows, see [base16-shell](https://github.com/chriskempson/base16-shell). 7 | 8 | For MinTTY, e.g. in Git for Windows's bash, see [base16-mintty](https://github.com/iamthad/base16-mintty). 9 | 10 | Original template by [ticky](https://github.com/ticky). 11 | -------------------------------------------------------------------------------- /templates/config.yaml: -------------------------------------------------------------------------------- 1 | default: 2 | extension: .reg 3 | output: windows-command-prompt 4 | -------------------------------------------------------------------------------- /templates/default.mustache: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 {{scheme-name}} (https://github.com/chriskempson/base16) 4 | ; Scheme: {{scheme-author}} 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00{{base00-hex-b}}{{base00-hex-g}}{{base00-hex-r}} ; base00 8 | "ColorTable01"=dword:00{{base0D-hex-b}}{{base0D-hex-g}}{{base0D-hex-r}} ; base0D 9 | "ColorTable02"=dword:00{{base0B-hex-b}}{{base0B-hex-g}}{{base0B-hex-r}} ; base0B 10 | "ColorTable03"=dword:00{{base0C-hex-b}}{{base0C-hex-g}}{{base0C-hex-r}} ; base0C 11 | "ColorTable04"=dword:00{{base08-hex-b}}{{base08-hex-g}}{{base08-hex-r}} ; base08 12 | "ColorTable05"=dword:00{{base0E-hex-b}}{{base0E-hex-g}}{{base0E-hex-r}} ; base0E 13 | "ColorTable06"=dword:00{{base09-hex-b}}{{base09-hex-g}}{{base09-hex-r}} ; base09 14 | "ColorTable07"=dword:00{{base05-hex-b}}{{base05-hex-g}}{{base05-hex-r}} ; base05 15 | "ColorTable08"=dword:00{{base03-hex-b}}{{base03-hex-g}}{{base03-hex-r}} ; base03 16 | "ColorTable09"=dword:00{{base01-hex-b}}{{base01-hex-g}}{{base01-hex-r}} ; base01 17 | "ColorTable10"=dword:00{{base02-hex-b}}{{base02-hex-g}}{{base02-hex-r}} ; base02 18 | "ColorTable11"=dword:00{{base03-hex-b}}{{base03-hex-g}}{{base03-hex-r}} ; base03 19 | "ColorTable12"=dword:00{{base04-hex-b}}{{base04-hex-g}}{{base04-hex-r}} ; base04 20 | "ColorTable13"=dword:00{{base05-hex-b}}{{base05-hex-g}}{{base05-hex-r}} ; base05 21 | "ColorTable14"=dword:00{{base06-hex-b}}{{base06-hex-g}}{{base06-hex-r}} ; base06 22 | "ColorTable15"=dword:00{{base07-hex-b}}{{base07-hex-g}}{{base07-hex-r}} ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-3024.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 3024 (https://github.com/chriskempson/base16) 4 | ; Scheme: Jan T. Sott (http://github.com/idleberg) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00000309 ; base00 8 | "ColorTable01"=dword:00e4a001 ; base0D 9 | "ColorTable02"=dword:0052a201 ; base0B 10 | "ColorTable03"=dword:00f4e4b5 ; base0C 11 | "ColorTable04"=dword:00202ddb ; base08 12 | "ColorTable05"=dword:00946aa1 ; base0E 13 | "ColorTable06"=dword:00d0bbe8 ; base09 14 | "ColorTable07"=dword:00a2a2a5 ; base05 15 | "ColorTable08"=dword:0055585c ; base03 16 | "ColorTable09"=dword:0032343a ; base01 17 | "ColorTable10"=dword:0043454a ; base02 18 | "ColorTable11"=dword:0055585c ; base03 19 | "ColorTable12"=dword:007c7d80 ; base04 20 | "ColorTable13"=dword:00a2a2a5 ; base05 21 | "ColorTable14"=dword:00d4d5d6 ; base06 22 | "ColorTable15"=dword:00f7f7f7 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-apathy.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Apathy (https://github.com/chriskempson/base16) 4 | ; Scheme: Jannik Siebert (https://github.com/janniks) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00161a03 ; base00 8 | "ColorTable01"=dword:003e8896 ; base0D 9 | "ColorTable02"=dword:00963e88 ; base0B 10 | "ColorTable03"=dword:004c3e96 ; base0C 11 | "ColorTable04"=dword:0088963e ; base08 12 | "ColorTable05"=dword:003e964c ; base0E 13 | "ColorTable06"=dword:0096793e ; base09 14 | "ColorTable07"=dword:00acb581 ; base05 15 | "ColorTable08"=dword:005e682b ; base03 16 | "ColorTable09"=dword:002d340b ; base01 17 | "ColorTable10"=dword:00454e18 ; base02 18 | "ColorTable11"=dword:005e682b ; base03 19 | "ColorTable12"=dword:00929c5f ; base04 20 | "ColorTable13"=dword:00acb581 ; base05 21 | "ColorTable14"=dword:00c8cea7 ; base06 22 | "ColorTable15"=dword:00e4e7d2 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-ashes.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Ashes (https://github.com/chriskempson/base16) 4 | ; Scheme: Jannik Siebert (https://github.com/janniks) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0023201c ; base00 8 | "ColorTable01"=dword:00c795ae ; base0D 9 | "ColorTable02"=dword:00aec795 ; base0B 10 | "ColorTable03"=dword:00c7ae95 ; base0C 11 | "ColorTable04"=dword:0095aec7 ; base08 12 | "ColorTable05"=dword:00ae95c7 ; base0E 13 | "ColorTable06"=dword:0095c7c7 ; base09 14 | "ColorTable07"=dword:00d1ccc7 ; base05 15 | "ColorTable08"=dword:00847c74 ; base03 16 | "ColorTable09"=dword:00453f39 ; base01 17 | "ColorTable10"=dword:00655e56 ; base02 18 | "ColorTable11"=dword:00847c74 ; base03 19 | "ColorTable12"=dword:00bab3ad ; base04 20 | "ColorTable13"=dword:00d1ccc7 ; base05 21 | "ColorTable14"=dword:00e5e2df ; base06 22 | "ColorTable15"=dword:00f5f4f3 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-cave-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Cave Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f4ecef ; base00 8 | "ColorTable01"=dword:00db6d57 ; base0D 9 | "ColorTable02"=dword:0092922a ; base0B 10 | "ColorTable03"=dword:00c68b39 ; base0C 11 | "ColorTable04"=dword:007846be ; base08 12 | "ColorTable05"=dword:00e75a95 ; base0E 13 | "ColorTable06"=dword:003c57aa ; base09 14 | "ColorTable07"=dword:00605258 ; base05 15 | "ColorTable08"=dword:0087787e ; base03 16 | "ColorTable09"=dword:00e7dfe2 ; base01 17 | "ColorTable10"=dword:0092878b ; base02 18 | "ColorTable11"=dword:0087787e ; base03 19 | "ColorTable12"=dword:006d5f65 ; base04 20 | "ColorTable13"=dword:00605258 ; base05 21 | "ColorTable14"=dword:002a2326 ; base06 22 | "ColorTable15"=dword:001c1719 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-cave.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Cave (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:001c1719 ; base00 8 | "ColorTable01"=dword:00db6d57 ; base0D 9 | "ColorTable02"=dword:0092922a ; base0B 10 | "ColorTable03"=dword:00c68b39 ; base0C 11 | "ColorTable04"=dword:007846be ; base08 12 | "ColorTable05"=dword:00e75a95 ; base0E 13 | "ColorTable06"=dword:003c57aa ; base09 14 | "ColorTable07"=dword:0092878b ; base05 15 | "ColorTable08"=dword:006d5f65 ; base03 16 | "ColorTable09"=dword:002a2326 ; base01 17 | "ColorTable10"=dword:00605258 ; base02 18 | "ColorTable11"=dword:006d5f65 ; base03 19 | "ColorTable12"=dword:0087787e ; base04 20 | "ColorTable13"=dword:0092878b ; base05 21 | "ColorTable14"=dword:00e7dfe2 ; base06 22 | "ColorTable15"=dword:00f4ecef ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-dune-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Dune Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ecfbfe ; base00 8 | "ColorTable01"=dword:00e18466 ; base0D 9 | "ColorTable02"=dword:0039ac60 ; base0B 10 | "ColorTable03"=dword:0083ad1f ; base0C 11 | "ColorTable04"=dword:003737d7 ; base08 12 | "ColorTable05"=dword:00d454b8 ; base0E 13 | "ColorTable06"=dword:001156b6 ; base09 14 | "ColorTable07"=dword:005e6b6e ; base05 15 | "ColorTable08"=dword:00809599 ; base03 16 | "ColorTable09"=dword:00cfe4e8 ; base01 17 | "ColorTable10"=dword:008ca2a6 ; base02 18 | "ColorTable11"=dword:00809599 ; base03 19 | "ColorTable12"=dword:00687a7d ; base04 20 | "ColorTable13"=dword:005e6b6e ; base05 21 | "ColorTable14"=dword:00242829 ; base06 22 | "ColorTable15"=dword:001d2020 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-dune.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Dune (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:001d2020 ; base00 8 | "ColorTable01"=dword:00e18466 ; base0D 9 | "ColorTable02"=dword:0039ac60 ; base0B 10 | "ColorTable03"=dword:0083ad1f ; base0C 11 | "ColorTable04"=dword:003737d7 ; base08 12 | "ColorTable05"=dword:00d454b8 ; base0E 13 | "ColorTable06"=dword:001156b6 ; base09 14 | "ColorTable07"=dword:008ca2a6 ; base05 15 | "ColorTable08"=dword:00687a7d ; base03 16 | "ColorTable09"=dword:00242829 ; base01 17 | "ColorTable10"=dword:005e6b6e ; base02 18 | "ColorTable11"=dword:00687a7d ; base03 19 | "ColorTable12"=dword:00809599 ; base04 20 | "ColorTable13"=dword:008ca2a6 ; base05 21 | "ColorTable14"=dword:00cfe4e8 ; base06 22 | "ColorTable15"=dword:00ecfbfe ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-estuary-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Estuary Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ecf3f4 ; base00 8 | "ColorTable01"=dword:0066a136 ; base0D 9 | "ColorTable02"=dword:0026977d ; base0B 10 | "ColorTable03"=dword:00489d5b ; base0C 11 | "ColorTable04"=dword:003662ba ; base08 12 | "ColorTable05"=dword:0082915f ; base0E 13 | "ColorTable06"=dword:001373ae ; base09 14 | "ColorTable07"=dword:004e5e5f ; base05 15 | "ColorTable08"=dword:00738587 ; base03 16 | "ColorTable09"=dword:00dfe6e7 ; base01 17 | "ColorTable10"=dword:00819192 ; base02 18 | "ColorTable11"=dword:00738587 ; base03 19 | "ColorTable12"=dword:005a6b6c ; base04 20 | "ColorTable13"=dword:004e5e5f ; base05 21 | "ColorTable14"=dword:00272f30 ; base06 22 | "ColorTable15"=dword:001b2222 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-estuary.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Estuary (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:001b2222 ; base00 8 | "ColorTable01"=dword:0066a136 ; base0D 9 | "ColorTable02"=dword:0026977d ; base0B 10 | "ColorTable03"=dword:00489d5b ; base0C 11 | "ColorTable04"=dword:003662ba ; base08 12 | "ColorTable05"=dword:0082915f ; base0E 13 | "ColorTable06"=dword:001373ae ; base09 14 | "ColorTable07"=dword:00819192 ; base05 15 | "ColorTable08"=dword:005a6b6c ; base03 16 | "ColorTable09"=dword:00272f30 ; base01 17 | "ColorTable10"=dword:004e5e5f ; base02 18 | "ColorTable11"=dword:005a6b6c ; base03 19 | "ColorTable12"=dword:00738587 ; base04 20 | "ColorTable13"=dword:00819192 ; base05 21 | "ColorTable14"=dword:00dfe6e7 ; base06 22 | "ColorTable15"=dword:00ecf3f4 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-forest-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Forest Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00eeeff1 ; base00 8 | "ColorTable01"=dword:00e77e40 ; base0D 9 | "ColorTable02"=dword:0026977b ; base0B 10 | "ColorTable03"=dword:00b8973d ; base0C 11 | "ColorTable04"=dword:00402cf2 ; base08 12 | "ColorTable05"=dword:00ea6666 ; base0E 13 | "ColorTable06"=dword:002053df ; base09 14 | "ColorTable07"=dword:005e6168 ; base05 15 | "ColorTable08"=dword:0091949c ; base03 16 | "ColorTable09"=dword:00e0e2e6 ; base01 17 | "ColorTable10"=dword:009fa1a8 ; base02 18 | "ColorTable11"=dword:0091949c ; base03 19 | "ColorTable12"=dword:006b6e76 ; base04 20 | "ColorTable13"=dword:005e6168 ; base05 21 | "ColorTable14"=dword:0021242c ; base06 22 | "ColorTable15"=dword:0018191b ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-forest.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Forest (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0018191b ; base00 8 | "ColorTable01"=dword:00e77e40 ; base0D 9 | "ColorTable02"=dword:0026977b ; base0B 10 | "ColorTable03"=dword:00b8973d ; base0C 11 | "ColorTable04"=dword:00402cf2 ; base08 12 | "ColorTable05"=dword:00ea6666 ; base0E 13 | "ColorTable06"=dword:002053df ; base09 14 | "ColorTable07"=dword:009fa1a8 ; base05 15 | "ColorTable08"=dword:006b6e76 ; base03 16 | "ColorTable09"=dword:0021242c ; base01 17 | "ColorTable10"=dword:005e6168 ; base02 18 | "ColorTable11"=dword:006b6e76 ; base03 19 | "ColorTable12"=dword:0091949c ; base04 20 | "ColorTable13"=dword:009fa1a8 ; base05 21 | "ColorTable14"=dword:00e0e2e6 ; base06 22 | "ColorTable15"=dword:00eeeff1 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-heath-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Heath Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f7f3f7 ; base00 8 | "ColorTable01"=dword:00ec6a51 ; base0D 9 | "ColorTable02"=dword:003b8b91 ; base0B 10 | "ColorTable03"=dword:00939315 ; base0C 11 | "ColorTable04"=dword:002b40ca ; base08 12 | "ColorTable05"=dword:00c0597b ; base0E 13 | "ColorTable06"=dword:002659a6 ; base09 14 | "ColorTable07"=dword:00695d69 ; base05 15 | "ColorTable08"=dword:009e8f9e ; base03 16 | "ColorTable09"=dword:00d8cad8 ; base01 17 | "ColorTable10"=dword:00ab9bab ; base02 18 | "ColorTable11"=dword:009e8f9e ; base03 19 | "ColorTable12"=dword:00776977 ; base04 20 | "ColorTable13"=dword:00695d69 ; base05 21 | "ColorTable14"=dword:00292329 ; base06 22 | "ColorTable15"=dword:001b181b ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-heath.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Heath (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:001b181b ; base00 8 | "ColorTable01"=dword:00ec6a51 ; base0D 9 | "ColorTable02"=dword:003b8b91 ; base0B 10 | "ColorTable03"=dword:00939315 ; base0C 11 | "ColorTable04"=dword:002b40ca ; base08 12 | "ColorTable05"=dword:00c0597b ; base0E 13 | "ColorTable06"=dword:002659a6 ; base09 14 | "ColorTable07"=dword:00ab9bab ; base05 15 | "ColorTable08"=dword:00776977 ; base03 16 | "ColorTable09"=dword:00292329 ; base01 17 | "ColorTable10"=dword:00695d69 ; base02 18 | "ColorTable11"=dword:00776977 ; base03 19 | "ColorTable12"=dword:009e8f9e ; base04 20 | "ColorTable13"=dword:00ab9bab ; base05 21 | "ColorTable14"=dword:00d8cad8 ; base06 22 | "ColorTable15"=dword:00f7f3f7 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-lakeside-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Lakeside Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00fff8eb ; base00 8 | "ColorTable01"=dword:00ad7f25 ; base0D 9 | "ColorTable02"=dword:003b8c56 ; base0B 10 | "ColorTable03"=dword:006f8f2d ; base0C 11 | "ColorTable04"=dword:00722dd2 ; base08 12 | "ColorTable05"=dword:00b86b6b ; base0E 13 | "ColorTable06"=dword:00255c93 ; base09 14 | "ColorTable07"=dword:007b6d51 ; base05 15 | "ColorTable08"=dword:00a89571 ; base03 16 | "ColorTable09"=dword:00f6e4c1 ; base01 17 | "ColorTable10"=dword:00b4a27e ; base02 18 | "ColorTable11"=dword:00a89571 ; base03 19 | "ColorTable12"=dword:008c7b5a ; base04 20 | "ColorTable13"=dword:007b6d51 ; base05 21 | "ColorTable14"=dword:002e291f ; base06 22 | "ColorTable15"=dword:001d1b16 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-lakeside.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Lakeside (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:001d1b16 ; base00 8 | "ColorTable01"=dword:00ad7f25 ; base0D 9 | "ColorTable02"=dword:003b8c56 ; base0B 10 | "ColorTable03"=dword:006f8f2d ; base0C 11 | "ColorTable04"=dword:00722dd2 ; base08 12 | "ColorTable05"=dword:00b86b6b ; base0E 13 | "ColorTable06"=dword:00255c93 ; base09 14 | "ColorTable07"=dword:00b4a27e ; base05 15 | "ColorTable08"=dword:008c7b5a ; base03 16 | "ColorTable09"=dword:002e291f ; base01 17 | "ColorTable10"=dword:007b6d51 ; base02 18 | "ColorTable11"=dword:008c7b5a ; base03 19 | "ColorTable12"=dword:00a89571 ; base04 20 | "ColorTable13"=dword:00b4a27e ; base05 21 | "ColorTable14"=dword:00f6e4c1 ; base06 22 | "ColorTable15"=dword:00fff8eb ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-plateau-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Plateau Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ececf4 ; base00 8 | "ColorTable01"=dword:00ca7272 ; base0D 9 | "ColorTable02"=dword:008b8b4b ; base0B 10 | "ColorTable03"=dword:00b68554 ; base0C 11 | "ColorTable04"=dword:004949ca ; base08 12 | "ColorTable05"=dword:00c46484 ; base0E 13 | "ColorTable06"=dword:003c5ab4 ; base09 14 | "ColorTable07"=dword:00505058 ; base05 15 | "ColorTable08"=dword:0077777e ; base03 16 | "ColorTable09"=dword:00dfdfe7 ; base01 17 | "ColorTable10"=dword:0085858a ; base02 18 | "ColorTable11"=dword:0077777e ; base03 19 | "ColorTable12"=dword:005d5d65 ; base04 20 | "ColorTable13"=dword:00505058 ; base05 21 | "ColorTable14"=dword:00242429 ; base06 22 | "ColorTable15"=dword:0018181b ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-plateau.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Plateau (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0018181b ; base00 8 | "ColorTable01"=dword:00ca7272 ; base0D 9 | "ColorTable02"=dword:008b8b4b ; base0B 10 | "ColorTable03"=dword:00b68554 ; base0C 11 | "ColorTable04"=dword:004949ca ; base08 12 | "ColorTable05"=dword:00c46484 ; base0E 13 | "ColorTable06"=dword:003c5ab4 ; base09 14 | "ColorTable07"=dword:0085858a ; base05 15 | "ColorTable08"=dword:005d5d65 ; base03 16 | "ColorTable09"=dword:00242429 ; base01 17 | "ColorTable10"=dword:00505058 ; base02 18 | "ColorTable11"=dword:005d5d65 ; base03 19 | "ColorTable12"=dword:0077777e ; base04 20 | "ColorTable13"=dword:0085858a ; base05 21 | "ColorTable14"=dword:00dfdfe7 ; base06 22 | "ColorTable15"=dword:00ececf4 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-savanna-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Savanna Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00eef4ec ; base00 8 | "ColorTable01"=dword:00908c47 ; base0D 9 | "ColorTable02"=dword:00639948 ; base0B 10 | "ColorTable03"=dword:00a09a1c ; base0C 11 | "ColorTable04"=dword:003961b1 ; base08 12 | "ColorTable05"=dword:009b8555 ; base0E 13 | "ColorTable06"=dword:003c719f ; base09 14 | "ColorTable07"=dword:00576052 ; base05 15 | "ColorTable08"=dword:007d8778 ; base03 16 | "ColorTable09"=dword:00e2e7df ; base01 17 | "ColorTable10"=dword:008a9287 ; base02 18 | "ColorTable11"=dword:007d8778 ; base03 19 | "ColorTable12"=dword:00646d5f ; base04 20 | "ColorTable13"=dword:00576052 ; base05 21 | "ColorTable14"=dword:00252a23 ; base06 22 | "ColorTable15"=dword:00191c17 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-savanna.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Savanna (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00191c17 ; base00 8 | "ColorTable01"=dword:00908c47 ; base0D 9 | "ColorTable02"=dword:00639948 ; base0B 10 | "ColorTable03"=dword:00a09a1c ; base0C 11 | "ColorTable04"=dword:003961b1 ; base08 12 | "ColorTable05"=dword:009b8555 ; base0E 13 | "ColorTable06"=dword:003c719f ; base09 14 | "ColorTable07"=dword:008a9287 ; base05 15 | "ColorTable08"=dword:00646d5f ; base03 16 | "ColorTable09"=dword:00252a23 ; base01 17 | "ColorTable10"=dword:00576052 ; base02 18 | "ColorTable11"=dword:00646d5f ; base03 19 | "ColorTable12"=dword:007d8778 ; base04 20 | "ColorTable13"=dword:008a9287 ; base05 21 | "ColorTable14"=dword:00e2e7df ; base06 22 | "ColorTable15"=dword:00eef4ec ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-seaside-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Seaside Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f4fbf4 ; base00 8 | "ColorTable01"=dword:00f5623d ; base0D 9 | "ColorTable02"=dword:0029a329 ; base0B 10 | "ColorTable03"=dword:00b39919 ; base0C 11 | "ColorTable04"=dword:003c19e6 ; base08 12 | "ColorTable05"=dword:00ee2bad ; base0E 13 | "ColorTable06"=dword:001d7187 ; base09 14 | "ColorTable07"=dword:005e6e5e ; base05 15 | "ColorTable08"=dword:00809980 ; base03 16 | "ColorTable09"=dword:00cfe8cf ; base01 17 | "ColorTable10"=dword:008ca68c ; base02 18 | "ColorTable11"=dword:00809980 ; base03 19 | "ColorTable12"=dword:00687d68 ; base04 20 | "ColorTable13"=dword:005e6e5e ; base05 21 | "ColorTable14"=dword:00242924 ; base06 22 | "ColorTable15"=dword:00131513 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-seaside.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Seaside (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00131513 ; base00 8 | "ColorTable01"=dword:00f5623d ; base0D 9 | "ColorTable02"=dword:0029a329 ; base0B 10 | "ColorTable03"=dword:00b39919 ; base0C 11 | "ColorTable04"=dword:003c19e6 ; base08 12 | "ColorTable05"=dword:00ee2bad ; base0E 13 | "ColorTable06"=dword:001d7187 ; base09 14 | "ColorTable07"=dword:008ca68c ; base05 15 | "ColorTable08"=dword:00687d68 ; base03 16 | "ColorTable09"=dword:00242924 ; base01 17 | "ColorTable10"=dword:005e6e5e ; base02 18 | "ColorTable11"=dword:00687d68 ; base03 19 | "ColorTable12"=dword:00809980 ; base04 20 | "ColorTable13"=dword:008ca68c ; base05 21 | "ColorTable14"=dword:00cfe8cf ; base06 22 | "ColorTable15"=dword:00f4fbf4 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-sulphurpool-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Sulphurpool Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00fff7f5 ; base00 8 | "ColorTable01"=dword:00d18f3d ; base0D 9 | "ColorTable02"=dword:003997ac ; base0B 10 | "ColorTable03"=dword:00c9a222 ; base0C 11 | "ColorTable04"=dword:002249c9 ; base08 12 | "ColorTable05"=dword:00cc7966 ; base0E 13 | "ColorTable06"=dword:00296bc7 ; base09 14 | "ColorTable07"=dword:0087665e ; base05 15 | "ColorTable08"=dword:00a48e89 ; base03 16 | "ColorTable09"=dword:00f1e2df ; base01 17 | "ColorTable10"=dword:00b49d97 ; base02 18 | "ColorTable11"=dword:00a48e89 ; base03 19 | "ColorTable12"=dword:0094736b ; base04 20 | "ColorTable13"=dword:0087665e ; base05 21 | "ColorTable14"=dword:00563229 ; base06 22 | "ColorTable15"=dword:00462720 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-atelier-sulphurpool.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Atelier Sulphurpool (https://github.com/chriskempson/base16) 4 | ; Scheme: Bram de Haan (http://atelierbramdehaan.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00462720 ; base00 8 | "ColorTable01"=dword:00d18f3d ; base0D 9 | "ColorTable02"=dword:003997ac ; base0B 10 | "ColorTable03"=dword:00c9a222 ; base0C 11 | "ColorTable04"=dword:002249c9 ; base08 12 | "ColorTable05"=dword:00cc7966 ; base0E 13 | "ColorTable06"=dword:00296bc7 ; base09 14 | "ColorTable07"=dword:00b49d97 ; base05 15 | "ColorTable08"=dword:0094736b ; base03 16 | "ColorTable09"=dword:00563229 ; base01 17 | "ColorTable10"=dword:0087665e ; base02 18 | "ColorTable11"=dword:0094736b ; base03 19 | "ColorTable12"=dword:00a48e89 ; base04 20 | "ColorTable13"=dword:00b49d97 ; base05 21 | "ColorTable14"=dword:00f1e2df ; base06 22 | "ColorTable15"=dword:00fff7f5 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-bespin.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Bespin (https://github.com/chriskempson/base16) 4 | ; Scheme: Jan T. Sott 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:001c2128 ; base00 8 | "ColorTable01"=dword:00eaa65e ; base0D 9 | "ColorTable02"=dword:000dbe54 ; base0B 10 | "ColorTable03"=dword:00dbc4af ; base0C 11 | "ColorTable04"=dword:004c6acf ; base08 12 | "ColorTable05"=dword:009d859b ; base0E 13 | "ColorTable06"=dword:00347dcf ; base09 14 | "ColorTable07"=dword:0086898a ; base05 15 | "ColorTable08"=dword:00666666 ; base03 16 | "ColorTable09"=dword:002e3136 ; base01 17 | "ColorTable10"=dword:005c5d5e ; base02 18 | "ColorTable11"=dword:00666666 ; base03 19 | "ColorTable12"=dword:00777979 ; base04 20 | "ColorTable13"=dword:0086898a ; base05 21 | "ColorTable14"=dword:00979b9d ; base06 22 | "ColorTable15"=dword:009eaeba ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-brewer.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Brewer (https://github.com/chriskempson/base16) 4 | ; Scheme: Timothée Poisot (http://github.com/tpoisot) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:000e0d0c ; base00 8 | "ColorTable01"=dword:00bd8231 ; base0D 9 | "ColorTable02"=dword:0054a331 ; base0B 10 | "ColorTable03"=dword:00d3b180 ; base0C 11 | "ColorTable04"=dword:001c1ae3 ; base08 12 | "ColorTable05"=dword:00b16b75 ; base0E 13 | "ColorTable06"=dword:000d55e6 ; base09 14 | "ColorTable07"=dword:00b9b8b7 ; base05 15 | "ColorTable08"=dword:00757473 ; base03 16 | "ColorTable09"=dword:00302f2e ; base01 17 | "ColorTable10"=dword:00535251 ; base02 18 | "ColorTable11"=dword:00757473 ; base03 19 | "ColorTable12"=dword:00979695 ; base04 20 | "ColorTable13"=dword:00b9b8b7 ; base05 21 | "ColorTable14"=dword:00dcdbda ; base06 22 | "ColorTable15"=dword:00fefdfc ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-bright.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Bright (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00000000 ; base00 8 | "ColorTable01"=dword:00d2b36f ; base0D 9 | "ColorTable02"=dword:0059c6a1 ; base0B 10 | "ColorTable03"=dword:00b7c776 ; base0C 11 | "ColorTable04"=dword:002001fb ; base08 12 | "ColorTable05"=dword:00c381d3 ; base0E 13 | "ColorTable06"=dword:00246dfc ; base09 14 | "ColorTable07"=dword:00e0e0e0 ; base05 15 | "ColorTable08"=dword:00b0b0b0 ; base03 16 | "ColorTable09"=dword:00303030 ; base01 17 | "ColorTable10"=dword:00505050 ; base02 18 | "ColorTable11"=dword:00b0b0b0 ; base03 19 | "ColorTable12"=dword:00d0d0d0 ; base04 20 | "ColorTable13"=dword:00e0e0e0 ; base05 21 | "ColorTable14"=dword:00f5f5f5 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-chalk.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Chalk (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00151515 ; base00 8 | "ColorTable01"=dword:00efc26f ; base0D 9 | "ColorTable02"=dword:0067c2ac ; base0B 10 | "ColorTable03"=dword:00c0cf12 ; base0C 11 | "ColorTable04"=dword:00b19ffb ; base08 12 | "ColorTable05"=dword:00eea3e1 ; base0E 13 | "ColorTable06"=dword:0087a9ed ; base09 14 | "ColorTable07"=dword:00d0d0d0 ; base05 15 | "ColorTable08"=dword:00505050 ; base03 16 | "ColorTable09"=dword:00202020 ; base01 17 | "ColorTable10"=dword:00303030 ; base02 18 | "ColorTable11"=dword:00505050 ; base03 19 | "ColorTable12"=dword:00b0b0b0 ; base04 20 | "ColorTable13"=dword:00d0d0d0 ; base05 21 | "ColorTable14"=dword:00e0e0e0 ; base06 22 | "ColorTable15"=dword:00f5f5f5 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-circus.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Circus (https://github.com/chriskempson/base16) 4 | ; Scheme: Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00191919 ; base00 8 | "ColorTable01"=dword:00e49e63 ; base0D 9 | "ColorTable02"=dword:007cb984 ; base0B 10 | "ColorTable03"=dword:00a7b14b ; base0C 11 | "ColorTable04"=dword:007d65dc ; base08 12 | "ColorTable05"=dword:00e288b8 ; base0E 13 | "ColorTable06"=dword:00a7b14b ; base09 14 | "ColorTable07"=dword:00a7a7a7 ; base05 15 | "ColorTable08"=dword:00605a5f ; base03 16 | "ColorTable09"=dword:00202020 ; base01 17 | "ColorTable10"=dword:00303030 ; base02 18 | "ColorTable11"=dword:00605a5f ; base03 19 | "ColorTable12"=dword:00505050 ; base04 20 | "ColorTable13"=dword:00a7a7a7 ; base05 21 | "ColorTable14"=dword:00808080 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-classic-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Classic Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Jason Heeris (http://heeris.id.au) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00151515 ; base00 8 | "ColorTable01"=dword:00b59f6a ; base0D 9 | "ColorTable02"=dword:0059a990 ; base0B 10 | "ColorTable03"=dword:00aab575 ; base0C 11 | "ColorTable04"=dword:004241ac ; base08 12 | "ColorTable05"=dword:009f75aa ; base0E 13 | "ColorTable06"=dword:004584d2 ; base09 14 | "ColorTable07"=dword:00d0d0d0 ; base05 15 | "ColorTable08"=dword:00505050 ; base03 16 | "ColorTable09"=dword:00202020 ; base01 17 | "ColorTable10"=dword:00303030 ; base02 18 | "ColorTable11"=dword:00505050 ; base03 19 | "ColorTable12"=dword:00b0b0b0 ; base04 20 | "ColorTable13"=dword:00d0d0d0 ; base05 21 | "ColorTable14"=dword:00e0e0e0 ; base06 22 | "ColorTable15"=dword:00f5f5f5 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-classic-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Classic Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Jason Heeris (http://heeris.id.au) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f5f5f5 ; base00 8 | "ColorTable01"=dword:00b59f6a ; base0D 9 | "ColorTable02"=dword:0059a990 ; base0B 10 | "ColorTable03"=dword:00aab575 ; base0C 11 | "ColorTable04"=dword:004241ac ; base08 12 | "ColorTable05"=dword:009f75aa ; base0E 13 | "ColorTable06"=dword:004584d2 ; base09 14 | "ColorTable07"=dword:00303030 ; base05 15 | "ColorTable08"=dword:00b0b0b0 ; base03 16 | "ColorTable09"=dword:00e0e0e0 ; base01 17 | "ColorTable10"=dword:00d0d0d0 ; base02 18 | "ColorTable11"=dword:00b0b0b0 ; base03 19 | "ColorTable12"=dword:00505050 ; base04 20 | "ColorTable13"=dword:00303030 ; base05 21 | "ColorTable14"=dword:00202020 ; base06 22 | "ColorTable15"=dword:00151515 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-codeschool.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Codeschool (https://github.com/chriskempson/base16) 4 | ; Scheme: brettof86 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00312c23 ; base00 8 | "ColorTable01"=dword:00794d48 ; base0D 9 | "ColorTable02"=dword:00867923 ; base0B 10 | "ColorTable03"=dword:00302fb0 ; base0C 11 | "ColorTable04"=dword:0091542a ; base08 12 | "ColorTable05"=dword:002098c5 ; base0E 13 | "ColorTable06"=dword:000d8243 ; base09 14 | "ColorTable07"=dword:00a6a79e ; base05 15 | "ColorTable08"=dword:0044493f ; base03 16 | "ColorTable09"=dword:0057361c ; base01 17 | "ColorTable10"=dword:003a342a ; base02 18 | "ColorTable11"=dword:0044493f ; base03 19 | "ColorTable12"=dword:008c8984 ; base04 20 | "ColorTable13"=dword:00a6a79e ; base05 21 | "ColorTable14"=dword:00a3cfa7 ; base06 22 | "ColorTable15"=dword:00f6d8b5 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-cupcake.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Cupcake (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f2f1fb ; base00 8 | "ColorTable01"=dword:00b99772 ; base0D 9 | "ColorTable02"=dword:0067b3a3 ; base0B 10 | "ColorTable03"=dword:00a7a969 ; base0C 11 | "ColorTable04"=dword:00857ed5 ; base08 12 | "ColorTable05"=dword:00b499bb ; base0E 13 | "ColorTable06"=dword:0090b7eb ; base09 14 | "ColorTable07"=dword:0098818b ; base05 15 | "ColorTable08"=dword:00c6b9bf ; base03 16 | "ColorTable09"=dword:00f4f1f2 ; base01 17 | "ColorTable10"=dword:00ddd5d8 ; base02 18 | "ColorTable11"=dword:00c6b9bf ; base03 19 | "ColorTable12"=dword:00af9da5 ; base04 20 | "ColorTable13"=dword:0098818b ; base05 21 | "ColorTable14"=dword:007e6772 ; base06 22 | "ColorTable15"=dword:00625058 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-cupertino.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Cupertino (https://github.com/chriskempson/base16) 4 | ; Scheme: Defman21 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ffffff ; base00 8 | "ColorTable01"=dword:00ff0000 ; base0D 9 | "ColorTable02"=dword:00007400 ; base0B 10 | "ColorTable03"=dword:00958431 ; base0C 11 | "ColorTable04"=dword:00151ac4 ; base08 12 | "ColorTable05"=dword:00910da9 ; base0E 13 | "ColorTable06"=dword:000085eb ; base09 14 | "ColorTable07"=dword:00404040 ; base05 15 | "ColorTable08"=dword:00808080 ; base03 16 | "ColorTable09"=dword:00c0c0c0 ; base01 17 | "ColorTable10"=dword:00c0c0c0 ; base02 18 | "ColorTable11"=dword:00808080 ; base03 19 | "ColorTable12"=dword:00808080 ; base04 20 | "ColorTable13"=dword:00404040 ; base05 21 | "ColorTable14"=dword:00404040 ; base06 22 | "ColorTable15"=dword:005e5e5e ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-darktooth.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Darktooth (https://github.com/chriskempson/base16) 4 | ; Scheme: Jason Milkins (https://github.com/jasonm23) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0021201d ; base00 8 | "ColorTable01"=dword:0078660d ; base0D 9 | "ColorTable02"=dword:0085c095 ; base0B 10 | "ColorTable03"=dword:009ba58b ; base0C 11 | "ColorTable04"=dword:003f54fb ; base08 12 | "ColorTable05"=dword:0073468f ; base0E 13 | "ColorTable06"=dword:002586fe ; base09 14 | "ColorTable07"=dword:008499a8 ; base05 15 | "ColorTable08"=dword:00545c66 ; base03 16 | "ColorTable09"=dword:002f3032 ; base01 17 | "ColorTable10"=dword:00454950 ; base02 18 | "ColorTable11"=dword:00545c66 ; base03 19 | "ColorTable12"=dword:00748392 ; base04 20 | "ColorTable13"=dword:008499a8 ; base05 21 | "ColorTable14"=dword:00a1c4d5 ; base06 22 | "ColorTable15"=dword:00c1f4fd ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-default-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Default Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00181818 ; base00 8 | "ColorTable01"=dword:00c2af7c ; base0D 9 | "ColorTable02"=dword:006cb5a1 ; base0B 10 | "ColorTable03"=dword:00b9c186 ; base0C 11 | "ColorTable04"=dword:004246ab ; base08 12 | "ColorTable05"=dword:00af8bba ; base0E 13 | "ColorTable06"=dword:005696dc ; base09 14 | "ColorTable07"=dword:00d8d8d8 ; base05 15 | "ColorTable08"=dword:00585858 ; base03 16 | "ColorTable09"=dword:00282828 ; base01 17 | "ColorTable10"=dword:00383838 ; base02 18 | "ColorTable11"=dword:00585858 ; base03 19 | "ColorTable12"=dword:00b8b8b8 ; base04 20 | "ColorTable13"=dword:00d8d8d8 ; base05 21 | "ColorTable14"=dword:00e8e8e8 ; base06 22 | "ColorTable15"=dword:00f8f8f8 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-default-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Default Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f8f8f8 ; base00 8 | "ColorTable01"=dword:00c2af7c ; base0D 9 | "ColorTable02"=dword:006cb5a1 ; base0B 10 | "ColorTable03"=dword:00b9c186 ; base0C 11 | "ColorTable04"=dword:004246ab ; base08 12 | "ColorTable05"=dword:00af8bba ; base0E 13 | "ColorTable06"=dword:005696dc ; base09 14 | "ColorTable07"=dword:00383838 ; base05 15 | "ColorTable08"=dword:00b8b8b8 ; base03 16 | "ColorTable09"=dword:00e8e8e8 ; base01 17 | "ColorTable10"=dword:00d8d8d8 ; base02 18 | "ColorTable11"=dword:00b8b8b8 ; base03 19 | "ColorTable12"=dword:00585858 ; base04 20 | "ColorTable13"=dword:00383838 ; base05 21 | "ColorTable14"=dword:00282828 ; base06 22 | "ColorTable15"=dword:00181818 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-dracula.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Dracula (https://github.com/chriskempson/base16) 4 | ; Scheme: Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00362928 ; base00 8 | "ColorTable01"=dword:00e8d662 ; base0D 9 | "ColorTable02"=dword:0087ffeb ; base0B 10 | "ColorTable03"=dword:00e4efa1 ; base0C 11 | "ColorTable04"=dword:00b251ea ; base08 12 | "ColorTable05"=dword:00cf5bb4 ; base0E 13 | "ColorTable06"=dword:00cf5bb4 ; base09 14 | "ColorTable07"=dword:00f4e9e9 ; base05 15 | "ColorTable08"=dword:00836462 ; base03 16 | "ColorTable09"=dword:004e3c3a ; base01 17 | "ColorTable10"=dword:00684f4d ; base02 18 | "ColorTable11"=dword:00836462 ; base03 19 | "ColorTable12"=dword:00e8d662 ; base04 20 | "ColorTable13"=dword:00f4e9e9 ; base05 21 | "ColorTable14"=dword:00f8f2f1 ; base06 22 | "ColorTable15"=dword:00fbf7f7 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-eighties.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Eighties (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:002d2d2d ; base00 8 | "ColorTable01"=dword:00cc9966 ; base0D 9 | "ColorTable02"=dword:0099cc99 ; base0B 10 | "ColorTable03"=dword:00cccc66 ; base0C 11 | "ColorTable04"=dword:007a77f2 ; base08 12 | "ColorTable05"=dword:00cc99cc ; base0E 13 | "ColorTable06"=dword:005791f9 ; base09 14 | "ColorTable07"=dword:00c8d0d3 ; base05 15 | "ColorTable08"=dword:00697374 ; base03 16 | "ColorTable09"=dword:00393939 ; base01 17 | "ColorTable10"=dword:00515151 ; base02 18 | "ColorTable11"=dword:00697374 ; base03 19 | "ColorTable12"=dword:00939fa0 ; base04 20 | "ColorTable13"=dword:00c8d0d3 ; base05 21 | "ColorTable14"=dword:00dfe6e8 ; base06 22 | "ColorTable15"=dword:00ecf0f2 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-embers.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Embers (https://github.com/chriskempson/base16) 4 | ; Scheme: Jannik Siebert (https://github.com/janniks) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:000f1316 ; base00 8 | "ColorTable01"=dword:0082576d ; base0D 9 | "ColorTable02"=dword:006d8257 ; base0B 10 | "ColorTable03"=dword:00826d57 ; base0C 11 | "ColorTable04"=dword:00576d82 ; base08 12 | "ColorTable05"=dword:006d5782 ; base0E 13 | "ColorTable06"=dword:00578282 ; base09 14 | "ColorTable07"=dword:00909aa3 ; base05 15 | "ColorTable08"=dword:0047505a ; base03 16 | "ColorTable09"=dword:0020262c ; base01 17 | "ColorTable10"=dword:00323b43 ; base02 18 | "ColorTable11"=dword:0047505a ; base03 19 | "ColorTable12"=dword:0075808a ; base04 20 | "ColorTable13"=dword:00909aa3 ; base05 21 | "ColorTable14"=dword:00aeb6be ; base06 22 | "ColorTable15"=dword:00d1d6db ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-flat.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Flat (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00503e2c ; base00 8 | "ColorTable01"=dword:00db9834 ; base0D 9 | "ColorTable02"=dword:0071cc2e ; base0B 10 | "ColorTable03"=dword:009cbc1a ; base0C 11 | "ColorTable04"=dword:003c4ce7 ; base08 12 | "ColorTable05"=dword:00b6599b ; base0E 13 | "ColorTable06"=dword:00227ee6 ; base09 14 | "ColorTable07"=dword:00e0e0e0 ; base05 15 | "ColorTable08"=dword:00a6a595 ; base03 16 | "ColorTable09"=dword:005e4934 ; base01 17 | "ColorTable10"=dword:008d8c7f ; base02 18 | "ColorTable11"=dword:00a6a595 ; base03 19 | "ColorTable12"=dword:00c7c3bd ; base04 20 | "ColorTable13"=dword:00e0e0e0 ; base05 21 | "ColorTable14"=dword:00f5f5f5 ; base06 22 | "ColorTable15"=dword:00f1f0ec ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-github.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Github (https://github.com/chriskempson/base16) 4 | ; Scheme: Defman21 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ffffff ; base00 8 | "ColorTable01"=dword:00a35d79 ; base0D 9 | "ColorTable02"=dword:00913618 ; base0B 10 | "ColorTable03"=dword:00913618 ; base0C 11 | "ColorTable04"=dword:00436aed ; base08 12 | "ColorTable05"=dword:005d1da7 ; base0E 13 | "ColorTable06"=dword:00b38600 ; base09 14 | "ColorTable07"=dword:00333333 ; base05 15 | "ColorTable08"=dword:00969896 ; base03 16 | "ColorTable09"=dword:00f5f5f5 ; base01 17 | "ColorTable10"=dword:00fac8c8 ; base02 18 | "ColorTable11"=dword:00969896 ; base03 19 | "ColorTable12"=dword:00e8e8e8 ; base04 20 | "ColorTable13"=dword:00333333 ; base05 21 | "ColorTable14"=dword:00ffffff ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-google-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Google Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Seth Wright (http://sethawright.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00211f1d ; base00 8 | "ColorTable01"=dword:00ed7139 ; base0D 9 | "ColorTable02"=dword:00448819 ; base0B 10 | "ColorTable03"=dword:00ed7139 ; base0C 11 | "ColorTable04"=dword:002b34cc ; base08 12 | "ColorTable05"=dword:00c76aa3 ; base0E 13 | "ColorTable06"=dword:00386af9 ; base09 14 | "ColorTable07"=dword:00c6c8c5 ; base05 15 | "ColorTable08"=dword:00969896 ; base03 16 | "ColorTable09"=dword:002e2a28 ; base01 17 | "ColorTable10"=dword:00413b37 ; base02 18 | "ColorTable11"=dword:00969896 ; base03 19 | "ColorTable12"=dword:00b4b7b4 ; base04 20 | "ColorTable13"=dword:00c6c8c5 ; base05 21 | "ColorTable14"=dword:00e0e0e0 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-google-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Google Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Seth Wright (http://sethawright.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ffffff ; base00 8 | "ColorTable01"=dword:00ed7139 ; base0D 9 | "ColorTable02"=dword:00448819 ; base0B 10 | "ColorTable03"=dword:00ed7139 ; base0C 11 | "ColorTable04"=dword:002b34cc ; base08 12 | "ColorTable05"=dword:00c76aa3 ; base0E 13 | "ColorTable06"=dword:00386af9 ; base09 14 | "ColorTable07"=dword:00413b37 ; base05 15 | "ColorTable08"=dword:00b4b7b4 ; base03 16 | "ColorTable09"=dword:00e0e0e0 ; base01 17 | "ColorTable10"=dword:00c6c8c5 ; base02 18 | "ColorTable11"=dword:00b4b7b4 ; base03 19 | "ColorTable12"=dword:00969896 ; base04 20 | "ColorTable13"=dword:00413b37 ; base05 21 | "ColorTable14"=dword:002e2a28 ; base06 22 | "ColorTable15"=dword:00211f1d ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-grayscale-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Grayscale Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Alexandre Gavioli (https://github.com/Alexx2/) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00101010 ; base00 8 | "ColorTable01"=dword:00686868 ; base0D 9 | "ColorTable02"=dword:008e8e8e ; base0B 10 | "ColorTable03"=dword:00868686 ; base0C 11 | "ColorTable04"=dword:007c7c7c ; base08 12 | "ColorTable05"=dword:00747474 ; base0E 13 | "ColorTable06"=dword:00999999 ; base09 14 | "ColorTable07"=dword:00b9b9b9 ; base05 15 | "ColorTable08"=dword:00525252 ; base03 16 | "ColorTable09"=dword:00252525 ; base01 17 | "ColorTable10"=dword:00464646 ; base02 18 | "ColorTable11"=dword:00525252 ; base03 19 | "ColorTable12"=dword:00ababab ; base04 20 | "ColorTable13"=dword:00b9b9b9 ; base05 21 | "ColorTable14"=dword:00e3e3e3 ; base06 22 | "ColorTable15"=dword:00f7f7f7 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-grayscale-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Grayscale Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Alexandre Gavioli (https://github.com/Alexx2/) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f7f7f7 ; base00 8 | "ColorTable01"=dword:00686868 ; base0D 9 | "ColorTable02"=dword:008e8e8e ; base0B 10 | "ColorTable03"=dword:00868686 ; base0C 11 | "ColorTable04"=dword:007c7c7c ; base08 12 | "ColorTable05"=dword:00747474 ; base0E 13 | "ColorTable06"=dword:00999999 ; base09 14 | "ColorTable07"=dword:00464646 ; base05 15 | "ColorTable08"=dword:00ababab ; base03 16 | "ColorTable09"=dword:00e3e3e3 ; base01 17 | "ColorTable10"=dword:00b9b9b9 ; base02 18 | "ColorTable11"=dword:00ababab ; base03 19 | "ColorTable12"=dword:00525252 ; base04 20 | "ColorTable13"=dword:00464646 ; base05 21 | "ColorTable14"=dword:00252525 ; base06 22 | "ColorTable15"=dword:00101010 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-greenscreen.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Green Screen (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00001100 ; base00 8 | "ColorTable01"=dword:00009900 ; base0D 9 | "ColorTable02"=dword:0000bb00 ; base0B 10 | "ColorTable03"=dword:00005500 ; base0C 11 | "ColorTable04"=dword:00007700 ; base08 12 | "ColorTable05"=dword:0000bb00 ; base0E 13 | "ColorTable06"=dword:00009900 ; base09 14 | "ColorTable07"=dword:0000bb00 ; base05 15 | "ColorTable08"=dword:00007700 ; base03 16 | "ColorTable09"=dword:00003300 ; base01 17 | "ColorTable10"=dword:00005500 ; base02 18 | "ColorTable11"=dword:00007700 ; base03 19 | "ColorTable12"=dword:00009900 ; base04 20 | "ColorTable13"=dword:0000bb00 ; base05 21 | "ColorTable14"=dword:0000dd00 ; base06 22 | "ColorTable15"=dword:0000ff00 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-gruvbox-dark-hard.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Gruvbox dark, hard (https://github.com/chriskempson/base16) 4 | ; Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0021201d ; base00 8 | "ColorTable01"=dword:0098a583 ; base0D 9 | "ColorTable02"=dword:0026bbb8 ; base0B 10 | "ColorTable03"=dword:007cc08e ; base0C 11 | "ColorTable04"=dword:003449fb ; base08 12 | "ColorTable05"=dword:009b86d3 ; base0E 13 | "ColorTable06"=dword:001980fe ; base09 14 | "ColorTable07"=dword:00a1c4d5 ; base05 15 | "ColorTable08"=dword:00545c66 ; base03 16 | "ColorTable09"=dword:0036383c ; base01 17 | "ColorTable10"=dword:00454950 ; base02 18 | "ColorTable11"=dword:00545c66 ; base03 19 | "ColorTable12"=dword:0093aebd ; base04 20 | "ColorTable13"=dword:00a1c4d5 ; base05 21 | "ColorTable14"=dword:00b2dbeb ; base06 22 | "ColorTable15"=dword:00c7f1fb ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-gruvbox-dark-medium.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Gruvbox dark, medium (https://github.com/chriskempson/base16) 4 | ; Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00282828 ; base00 8 | "ColorTable01"=dword:0098a583 ; base0D 9 | "ColorTable02"=dword:0026bbb8 ; base0B 10 | "ColorTable03"=dword:007cc08e ; base0C 11 | "ColorTable04"=dword:003449fb ; base08 12 | "ColorTable05"=dword:009b86d3 ; base0E 13 | "ColorTable06"=dword:001980fe ; base09 14 | "ColorTable07"=dword:00a1c4d5 ; base05 15 | "ColorTable08"=dword:00545c66 ; base03 16 | "ColorTable09"=dword:0036383c ; base01 17 | "ColorTable10"=dword:00454950 ; base02 18 | "ColorTable11"=dword:00545c66 ; base03 19 | "ColorTable12"=dword:0093aebd ; base04 20 | "ColorTable13"=dword:00a1c4d5 ; base05 21 | "ColorTable14"=dword:00b2dbeb ; base06 22 | "ColorTable15"=dword:00c7f1fb ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-gruvbox-dark-pale.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Gruvbox dark, pale (https://github.com/chriskempson/base16) 4 | ; Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00262626 ; base00 8 | "ColorTable01"=dword:00adad83 ; base0D 9 | "ColorTable02"=dword:0000afaf ; base0B 10 | "ColorTable03"=dword:0085ad85 ; base0C 11 | "ColorTable04"=dword:005f5fd7 ; base08 12 | "ColorTable05"=dword:00ad85d4 ; base0E 13 | "ColorTable06"=dword:000087ff ; base09 14 | "ColorTable07"=dword:0097b9da ; base05 15 | "ColorTable08"=dword:008a8a8a ; base03 16 | "ColorTable09"=dword:003a3a3a ; base01 17 | "ColorTable10"=dword:004e4e4e ; base02 18 | "ColorTable11"=dword:008a8a8a ; base03 19 | "ColorTable12"=dword:00949494 ; base04 20 | "ColorTable13"=dword:0097b9da ; base05 21 | "ColorTable14"=dword:00a1c4d5 ; base06 22 | "ColorTable15"=dword:00b2dbeb ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-gruvbox-dark-soft.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Gruvbox dark, soft (https://github.com/chriskempson/base16) 4 | ; Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:002f3032 ; base00 8 | "ColorTable01"=dword:0098a583 ; base0D 9 | "ColorTable02"=dword:0026bbb8 ; base0B 10 | "ColorTable03"=dword:007cc08e ; base0C 11 | "ColorTable04"=dword:003449fb ; base08 12 | "ColorTable05"=dword:009b86d3 ; base0E 13 | "ColorTable06"=dword:001980fe ; base09 14 | "ColorTable07"=dword:00a1c4d5 ; base05 15 | "ColorTable08"=dword:00545c66 ; base03 16 | "ColorTable09"=dword:0036383c ; base01 17 | "ColorTable10"=dword:00454950 ; base02 18 | "ColorTable11"=dword:00545c66 ; base03 19 | "ColorTable12"=dword:0093aebd ; base04 20 | "ColorTable13"=dword:00a1c4d5 ; base05 21 | "ColorTable14"=dword:00b2dbeb ; base06 22 | "ColorTable15"=dword:00c7f1fb ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-gruvbox-light-hard.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Gruvbox light, hard (https://github.com/chriskempson/base16) 4 | ; Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00d7f5f9 ; base00 8 | "ColorTable01"=dword:00786607 ; base0D 9 | "ColorTable02"=dword:000e7479 ; base0B 10 | "ColorTable03"=dword:00587b42 ; base0C 11 | "ColorTable04"=dword:0006009d ; base08 12 | "ColorTable05"=dword:00713f8f ; base0E 13 | "ColorTable06"=dword:00033aaf ; base09 14 | "ColorTable07"=dword:00454950 ; base05 15 | "ColorTable08"=dword:0093aebd ; base03 16 | "ColorTable09"=dword:00b2dbeb ; base01 17 | "ColorTable10"=dword:00a1c4d5 ; base02 18 | "ColorTable11"=dword:0093aebd ; base03 19 | "ColorTable12"=dword:00545c66 ; base04 20 | "ColorTable13"=dword:00454950 ; base05 21 | "ColorTable14"=dword:0036383c ; base06 22 | "ColorTable15"=dword:00282828 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-gruvbox-light-medium.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Gruvbox light, medium (https://github.com/chriskempson/base16) 4 | ; Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00c7f1fb ; base00 8 | "ColorTable01"=dword:00786607 ; base0D 9 | "ColorTable02"=dword:000e7479 ; base0B 10 | "ColorTable03"=dword:00587b42 ; base0C 11 | "ColorTable04"=dword:0006009d ; base08 12 | "ColorTable05"=dword:00713f8f ; base0E 13 | "ColorTable06"=dword:00033aaf ; base09 14 | "ColorTable07"=dword:00454950 ; base05 15 | "ColorTable08"=dword:0093aebd ; base03 16 | "ColorTable09"=dword:00b2dbeb ; base01 17 | "ColorTable10"=dword:00a1c4d5 ; base02 18 | "ColorTable11"=dword:0093aebd ; base03 19 | "ColorTable12"=dword:00545c66 ; base04 20 | "ColorTable13"=dword:00454950 ; base05 21 | "ColorTable14"=dword:0036383c ; base06 22 | "ColorTable15"=dword:00282828 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-gruvbox-light-soft.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Gruvbox light, soft (https://github.com/chriskempson/base16) 4 | ; Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00bce5f2 ; base00 8 | "ColorTable01"=dword:00786607 ; base0D 9 | "ColorTable02"=dword:000e7479 ; base0B 10 | "ColorTable03"=dword:00587b42 ; base0C 11 | "ColorTable04"=dword:0006009d ; base08 12 | "ColorTable05"=dword:00713f8f ; base0E 13 | "ColorTable06"=dword:00033aaf ; base09 14 | "ColorTable07"=dword:00454950 ; base05 15 | "ColorTable08"=dword:0093aebd ; base03 16 | "ColorTable09"=dword:00b2dbeb ; base01 17 | "ColorTable10"=dword:00a1c4d5 ; base02 18 | "ColorTable11"=dword:0093aebd ; base03 19 | "ColorTable12"=dword:00545c66 ; base04 20 | "ColorTable13"=dword:00454950 ; base05 21 | "ColorTable14"=dword:0036383c ; base06 22 | "ColorTable15"=dword:00282828 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-harmonic-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Harmonic16 Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Jannik Siebert (https://github.com/janniks) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:002c1c0b ; base00 8 | "ColorTable01"=dword:00bf568b ; base0D 9 | "ColorTable02"=dword:008bbf56 ; base0B 10 | "ColorTable03"=dword:00bf8b56 ; base0C 11 | "ColorTable04"=dword:00568bbf ; base08 12 | "ColorTable05"=dword:008b56bf ; base0E 13 | "ColorTable06"=dword:0056bfbf ; base09 14 | "ColorTable07"=dword:00e2d6cb ; base05 15 | "ColorTable08"=dword:00997e62 ; base03 16 | "ColorTable09"=dword:00543b22 ; base01 17 | "ColorTable10"=dword:00795c40 ; base02 18 | "ColorTable11"=dword:00997e62 ; base03 19 | "ColorTable12"=dword:00cebcaa ; base04 20 | "ColorTable13"=dword:00e2d6cb ; base05 21 | "ColorTable14"=dword:00f1ebe5 ; base06 22 | "ColorTable15"=dword:00fbf9f7 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-harmonic-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Harmonic16 Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Jannik Siebert (https://github.com/janniks) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00fbf9f7 ; base00 8 | "ColorTable01"=dword:00bf568b ; base0D 9 | "ColorTable02"=dword:008bbf56 ; base0B 10 | "ColorTable03"=dword:00bf8b56 ; base0C 11 | "ColorTable04"=dword:00568bbf ; base08 12 | "ColorTable05"=dword:008b56bf ; base0E 13 | "ColorTable06"=dword:0056bfbf ; base09 14 | "ColorTable07"=dword:00795c40 ; base05 15 | "ColorTable08"=dword:00cebcaa ; base03 16 | "ColorTable09"=dword:00f1ebe5 ; base01 17 | "ColorTable10"=dword:00e2d6cb ; base02 18 | "ColorTable11"=dword:00cebcaa ; base03 19 | "ColorTable12"=dword:00997e62 ; base04 20 | "ColorTable13"=dword:00795c40 ; base05 21 | "ColorTable14"=dword:00543b22 ; base06 22 | "ColorTable15"=dword:002c1c0b ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-hopscotch.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Hopscotch (https://github.com/chriskempson/base16) 4 | ; Scheme: Jan T. Sott 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00312932 ; base00 8 | "ColorTable01"=dword:00bf9012 ; base0D 9 | "ColorTable02"=dword:003ec18f ; base0B 10 | "ColorTable03"=dword:00939b14 ; base0C 11 | "ColorTable04"=dword:004c46dd ; base08 12 | "ColorTable05"=dword:007c5ec8 ; base0E 13 | "ColorTable06"=dword:00198bfd ; base09 14 | "ColorTable07"=dword:00b8b5b9 ; base05 15 | "ColorTable08"=dword:00797379 ; base03 16 | "ColorTable09"=dword:00423b43 ; base01 17 | "ColorTable10"=dword:005b545c ; base02 18 | "ColorTable11"=dword:00797379 ; base03 19 | "ColorTable12"=dword:00989498 ; base04 20 | "ColorTable13"=dword:00b8b5b9 ; base05 21 | "ColorTable14"=dword:00d5d3d5 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-irblack.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 IR Black (https://github.com/chriskempson/base16) 4 | ; Scheme: Timothée Poisot (http://timotheepoisot.fr) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00000000 ; base00 8 | "ColorTable01"=dword:00fecb96 ; base0D 9 | "ColorTable02"=dword:0060ffa8 ; base0B 10 | "ColorTable03"=dword:00fec5c6 ; base0C 11 | "ColorTable04"=dword:00606cff ; base08 12 | "ColorTable05"=dword:00fd73ff ; base0E 13 | "ColorTable06"=dword:0062c0e9 ; base09 14 | "ColorTable07"=dword:00aab3b5 ; base05 15 | "ColorTable08"=dword:00666c6c ; base03 16 | "ColorTable09"=dword:00222424 ; base01 17 | "ColorTable10"=dword:00444848 ; base02 18 | "ColorTable11"=dword:00666c6c ; base03 19 | "ColorTable12"=dword:00888f91 ; base04 20 | "ColorTable13"=dword:00aab3b5 ; base05 21 | "ColorTable14"=dword:00ccd7d9 ; base06 22 | "ColorTable15"=dword:00eefbfd ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-isotope.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Isotope (https://github.com/chriskempson/base16) 4 | ; Scheme: Jan T. Sott 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00000000 ; base00 8 | "ColorTable01"=dword:00ff6600 ; base0D 9 | "ColorTable02"=dword:0000ff33 ; base0B 10 | "ColorTable03"=dword:00ffff00 ; base0C 11 | "ColorTable04"=dword:000000ff ; base08 12 | "ColorTable05"=dword:00ff00cc ; base0E 13 | "ColorTable06"=dword:000099ff ; base09 14 | "ColorTable07"=dword:00d0d0d0 ; base05 15 | "ColorTable08"=dword:00808080 ; base03 16 | "ColorTable09"=dword:00404040 ; base01 17 | "ColorTable10"=dword:00606060 ; base02 18 | "ColorTable11"=dword:00808080 ; base03 19 | "ColorTable12"=dword:00c0c0c0 ; base04 20 | "ColorTable13"=dword:00d0d0d0 ; base05 21 | "ColorTable14"=dword:00e0e0e0 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-macintosh.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Macintosh (https://github.com/chriskempson/base16) 4 | ; Scheme: Rebecca Bettencourt (http://www.kreativekorp.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00000000 ; base00 8 | "ColorTable01"=dword:00d30000 ; base0D 9 | "ColorTable02"=dword:0014b71f ; base0B 10 | "ColorTable03"=dword:00eaab02 ; base0C 11 | "ColorTable04"=dword:000709dd ; base08 12 | "ColorTable05"=dword:00a50047 ; base0E 13 | "ColorTable06"=dword:000364ff ; base09 14 | "ColorTable07"=dword:00c0c0c0 ; base05 15 | "ColorTable08"=dword:00808080 ; base03 16 | "ColorTable09"=dword:00404040 ; base01 17 | "ColorTable10"=dword:00404040 ; base02 18 | "ColorTable11"=dword:00808080 ; base03 19 | "ColorTable12"=dword:00808080 ; base04 20 | "ColorTable13"=dword:00c0c0c0 ; base05 21 | "ColorTable14"=dword:00c0c0c0 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-marrakesh.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Marrakesh (https://github.com/chriskempson/base16) 4 | ; Scheme: Alexandre Gavioli (http://github.com/Alexx2/) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00021620 ; base00 8 | "ColorTable01"=dword:00a17c47 ; base0D 9 | "ColorTable02"=dword:004e9718 ; base0B 10 | "ColorTable03"=dword:0038a775 ; base0C 11 | "ColorTable04"=dword:005953c3 ; base08 12 | "ColorTable05"=dword:00b36888 ; base0E 13 | "ColorTable06"=dword:004461b3 ; base09 14 | "ColorTable07"=dword:00488e94 ; base05 15 | "ColorTable08"=dword:0023686c ; base03 16 | "ColorTable09"=dword:00002e30 ; base01 17 | "ColorTable10"=dword:00175b5f ; base02 18 | "ColorTable11"=dword:0023686c ; base03 19 | "ColorTable12"=dword:003b8186 ; base04 20 | "ColorTable13"=dword:00488e94 ; base05 21 | "ColorTable14"=dword:007ac3cc ; base06 22 | "ColorTable15"=dword:00a5f0fa ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-materia.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Materia (https://github.com/chriskempson/base16) 4 | ; Scheme: Defman21 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00383226 ; base00 8 | "ColorTable01"=dword:00ffdd89 ; base0D 9 | "ColorTable02"=dword:0049d68b ; base0B 10 | "ColorTable03"=dword:00c4cb80 ; base0C 11 | "ColorTable04"=dword:00675fec ; base08 12 | "ColorTable05"=dword:00ffaa82 ; base0E 13 | "ColorTable06"=dword:006095ea ; base09 14 | "ColorTable07"=dword:00ded3cd ; base05 15 | "ColorTable08"=dword:00807870 ; base03 16 | "ColorTable09"=dword:003f392c ; base01 17 | "ColorTable10"=dword:004f4737 ; base02 18 | "ColorTable11"=dword:00807870 ; base03 19 | "ColorTable12"=dword:00d3ccc9 ; base04 20 | "ColorTable13"=dword:00ded3cd ; base05 21 | "ColorTable14"=dword:00e5dbd5 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-mexico-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Mexico Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Sheldon Johnson 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f8f8f8 ; base00 8 | "ColorTable01"=dword:00c2af7c ; base0D 9 | "ColorTable02"=dword:00478953 ; base0B 10 | "ColorTable03"=dword:0093804b ; base0C 11 | "ColorTable04"=dword:004246ab ; base08 12 | "ColorTable05"=dword:009e6096 ; base0E 13 | "ColorTable06"=dword:005696dc ; base09 14 | "ColorTable07"=dword:00383838 ; base05 15 | "ColorTable08"=dword:00b8b8b8 ; base03 16 | "ColorTable09"=dword:00e8e8e8 ; base01 17 | "ColorTable10"=dword:00d8d8d8 ; base02 18 | "ColorTable11"=dword:00b8b8b8 ; base03 19 | "ColorTable12"=dword:00585858 ; base04 20 | "ColorTable13"=dword:00383838 ; base05 21 | "ColorTable14"=dword:00282828 ; base06 22 | "ColorTable15"=dword:00181818 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-mocha.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Mocha (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0028323b ; base00 8 | "ColorTable01"=dword:00b5b38a ; base0D 9 | "ColorTable02"=dword:005bb5be ; base0B 10 | "ColorTable03"=dword:00a4bd7b ; base0C 11 | "ColorTable04"=dword:007760cb ; base08 12 | "ColorTable05"=dword:00b99ba8 ; base0E 13 | "ColorTable06"=dword:00718bd2 ; base09 14 | "ColorTable07"=dword:00c6c8d0 ; base05 15 | "ColorTable08"=dword:005a707e ; base03 16 | "ColorTable09"=dword:00364653 ; base01 17 | "ColorTable10"=dword:00405264 ; base02 18 | "ColorTable11"=dword:005a707e ; base03 19 | "ColorTable12"=dword:00adafb8 ; base04 20 | "ColorTable13"=dword:00c6c8d0 ; base05 21 | "ColorTable14"=dword:00dde1e9 ; base06 22 | "ColorTable15"=dword:00ebeef5 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-monokai.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Monokai (https://github.com/chriskempson/base16) 4 | ; Scheme: Wimer Hazenberg (http://www.monokai.nl) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00222827 ; base00 8 | "ColorTable01"=dword:00efd966 ; base0D 9 | "ColorTable02"=dword:002ee2a6 ; base0B 10 | "ColorTable03"=dword:00e4efa1 ; base0C 11 | "ColorTable04"=dword:007226f9 ; base08 12 | "ColorTable05"=dword:00ff81ae ; base0E 13 | "ColorTable06"=dword:001f97fd ; base09 14 | "ColorTable07"=dword:00f2f8f8 ; base05 15 | "ColorTable08"=dword:005e7175 ; base03 16 | "ColorTable09"=dword:00303838 ; base01 17 | "ColorTable10"=dword:003e4849 ; base02 18 | "ColorTable11"=dword:005e7175 ; base03 19 | "ColorTable12"=dword:00859fa5 ; base04 20 | "ColorTable13"=dword:00f2f8f8 ; base05 21 | "ColorTable14"=dword:00f1f4f5 ; base06 22 | "ColorTable15"=dword:00f5f8f9 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-nord.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Nord (https://github.com/chriskempson/base16) 4 | ; Scheme: arcticicestudio 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0040342e ; base00 8 | "ColorTable01"=dword:008bcbeb ; base0D 9 | "ColorTable02"=dword:006a61bf ; base0B 10 | "ColorTable03"=dword:007087d0 ; base0C 11 | "ColorTable04"=dword:00d0c088 ; base08 12 | "ColorTable05"=dword:008cbea3 ; base0E 13 | "ColorTable06"=dword:00c1a181 ; base09 14 | "ColorTable07"=dword:00f0e9e5 ; base05 15 | "ColorTable08"=dword:006a564c ; base03 16 | "ColorTable09"=dword:0052423b ; base01 17 | "ColorTable10"=dword:005e4c43 ; base02 18 | "ColorTable11"=dword:006a564c ; base03 19 | "ColorTable12"=dword:00e9ded8 ; base04 20 | "ColorTable13"=dword:00f0e9e5 ; base05 21 | "ColorTable14"=dword:00f4efec ; base06 22 | "ColorTable15"=dword:00bbbc8f ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-ocean.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Ocean (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:003b302b ; base00 8 | "ColorTable01"=dword:00b3a18f ; base0D 9 | "ColorTable02"=dword:008cbea3 ; base0B 10 | "ColorTable03"=dword:00b4b596 ; base0C 11 | "ColorTable04"=dword:006a61bf ; base08 12 | "ColorTable05"=dword:00ad8eb4 ; base0E 13 | "ColorTable06"=dword:007087d0 ; base09 14 | "ColorTable07"=dword:00cec5c0 ; base05 15 | "ColorTable08"=dword:007e7365 ; base03 16 | "ColorTable09"=dword:00463d34 ; base01 17 | "ColorTable10"=dword:00665b4f ; base02 18 | "ColorTable11"=dword:007e7365 ; base03 19 | "ColorTable12"=dword:00baada7 ; base04 20 | "ColorTable13"=dword:00cec5c0 ; base05 21 | "ColorTable14"=dword:00e8e1df ; base06 22 | "ColorTable15"=dword:00f5f1ef ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-oceanicnext.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 OceanicNext (https://github.com/chriskempson/base16) 4 | ; Scheme: https://github.com/voronianski/oceanic-next-color-scheme 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00342b1b ; base00 8 | "ColorTable01"=dword:00cc9966 ; base0D 9 | "ColorTable02"=dword:0094c799 ; base0B 10 | "ColorTable03"=dword:00b3b35f ; base0C 11 | "ColorTable04"=dword:00675fec ; base08 12 | "ColorTable05"=dword:00c594c5 ; base0E 13 | "ColorTable06"=dword:005791f9 ; base09 14 | "ColorTable07"=dword:00cec5c0 ; base05 15 | "ColorTable08"=dword:007e7365 ; base03 16 | "ColorTable09"=dword:00463d34 ; base01 17 | "ColorTable10"=dword:00665b4f ; base02 18 | "ColorTable11"=dword:007e7365 ; base03 19 | "ColorTable12"=dword:00baada7 ; base04 20 | "ColorTable13"=dword:00cec5c0 ; base05 21 | "ColorTable14"=dword:00ded3cd ; base06 22 | "ColorTable15"=dword:00e9ded8 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-one-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 One Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Daniel Pfeifer (http://github.com/purpleKarrot) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00fafafa ; base00 8 | "ColorTable01"=dword:00f27840 ; base0D 9 | "ColorTable02"=dword:004fa150 ; base0B 10 | "ColorTable03"=dword:00bc8401 ; base0C 11 | "ColorTable04"=dword:004312ca ; base08 12 | "ColorTable05"=dword:00a426a6 ; base0E 13 | "ColorTable06"=dword:00005fd7 ; base09 14 | "ColorTable07"=dword:00423a38 ; base05 15 | "ColorTable08"=dword:00a7a1a0 ; base03 16 | "ColorTable09"=dword:00f1f0f0 ; base01 17 | "ColorTable10"=dword:00e6e5e5 ; base02 18 | "ColorTable11"=dword:00a7a1a0 ; base03 19 | "ColorTable12"=dword:00776c69 ; base04 20 | "ColorTable13"=dword:00423a38 ; base05 21 | "ColorTable14"=dword:00272220 ; base06 22 | "ColorTable15"=dword:000b0a09 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-onedark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 OneDark (https://github.com/chriskempson/base16) 4 | ; Scheme: Lalit Magant (http://github.com/tilal6991) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00342c28 ; base00 8 | "ColorTable01"=dword:00efaf61 ; base0D 9 | "ColorTable02"=dword:0079c398 ; base0B 10 | "ColorTable03"=dword:00c2b656 ; base0C 11 | "ColorTable04"=dword:00756ce0 ; base08 12 | "ColorTable05"=dword:00dd78c6 ; base0E 13 | "ColorTable06"=dword:00669ad1 ; base09 14 | "ColorTable07"=dword:00bfb2ab ; base05 15 | "ColorTable08"=dword:00625854 ; base03 16 | "ColorTable09"=dword:00453b35 ; base01 17 | "ColorTable10"=dword:0051443e ; base02 18 | "ColorTable11"=dword:00625854 ; base03 19 | "ColorTable12"=dword:00645c56 ; base04 20 | "ColorTable13"=dword:00bfb2ab ; base05 21 | "ColorTable14"=dword:00cabdb6 ; base06 22 | "ColorTable15"=dword:00d4ccc8 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-paraiso.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Paraiso (https://github.com/chriskempson/base16) 4 | ; Scheme: Jan T. Sott 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:002e1e2f ; base00 8 | "ColorTable01"=dword:00efb606 ; base0D 9 | "ColorTable02"=dword:0085b648 ; base0B 10 | "ColorTable03"=dword:00bfc45b ; base0C 11 | "ColorTable04"=dword:005561ef ; base08 12 | "ColorTable05"=dword:00a45b81 ; base0E 13 | "ColorTable06"=dword:00159bf9 ; base09 14 | "ColorTable07"=dword:009b9ea3 ; base05 15 | "ColorTable08"=dword:00716e77 ; base03 16 | "ColorTable09"=dword:003f3241 ; base01 17 | "ColorTable10"=dword:004c424f ; base02 18 | "ColorTable11"=dword:00716e77 ; base03 19 | "ColorTable12"=dword:0087868d ; base04 20 | "ColorTable13"=dword:009b9ea3 ; base05 21 | "ColorTable14"=dword:00b0b6b9 ; base06 22 | "ColorTable15"=dword:00dbe9e7 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-phd.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 PhD (https://github.com/chriskempson/base16) 4 | ; Scheme: Hennig Hasemann (http://leetless.de/vim.html) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00291206 ; base00 8 | "ColorTable01"=dword:00bf9952 ; base0D 9 | "ColorTable02"=dword:0052bf99 ; base0B 10 | "ColorTable03"=dword:00bfb972 ; base0C 11 | "ColorTable04"=dword:004673d0 ; base08 12 | "ColorTable05"=dword:00cc8999 ; base0E 13 | "ColorTable06"=dword:0000a0f0 ; base09 14 | "ColorTable07"=dword:00c2bbb8 ; base05 15 | "ColorTable08"=dword:00857871 ; base03 16 | "ColorTable09"=dword:0048342a ; base01 17 | "ColorTable10"=dword:0066564d ; base02 18 | "ColorTable11"=dword:00857871 ; base03 19 | "ColorTable12"=dword:00a3999a ; base04 20 | "ColorTable13"=dword:00c2bbb8 ; base05 21 | "ColorTable14"=dword:00e0dddb ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-pico.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Pico (https://github.com/chriskempson/base16) 4 | ; Scheme: PICO-8 (http://www.lexaloffle.com/pico-8.php) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00000000 ; base00 8 | "ColorTable01"=dword:009c7683 ; base0D 9 | "ColorTable02"=dword:0056e700 ; base0B 10 | "ColorTable03"=dword:00ffad29 ; base0C 11 | "ColorTable04"=dword:004d00ff ; base08 12 | "ColorTable05"=dword:00a877ff ; base0E 13 | "ColorTable06"=dword:0000a3ff ; base09 14 | "ColorTable07"=dword:004f575f ; base05 15 | "ColorTable08"=dword:00518700 ; base03 16 | "ColorTable09"=dword:00532b1d ; base01 17 | "ColorTable10"=dword:0053257e ; base02 18 | "ColorTable11"=dword:00518700 ; base03 19 | "ColorTable12"=dword:003652ab ; base04 20 | "ColorTable13"=dword:004f575f ; base05 21 | "ColorTable14"=dword:00c7c3c2 ; base06 22 | "ColorTable15"=dword:00e8f1ff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-pop.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Pop (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00000000 ; base00 8 | "ColorTable01"=dword:00945a0e ; base0D 9 | "ColorTable02"=dword:0049b337 ; base0B 10 | "ColorTable03"=dword:00bbaa00 ; base0C 11 | "ColorTable04"=dword:008a00eb ; base08 12 | "ColorTable05"=dword:008d1eb3 ; base0E 13 | "ColorTable06"=dword:003393f2 ; base09 14 | "ColorTable07"=dword:00d0d0d0 ; base05 15 | "ColorTable08"=dword:00505050 ; base03 16 | "ColorTable09"=dword:00202020 ; base01 17 | "ColorTable10"=dword:00303030 ; base02 18 | "ColorTable11"=dword:00505050 ; base03 19 | "ColorTable12"=dword:00b0b0b0 ; base04 20 | "ColorTable13"=dword:00d0d0d0 ; base05 21 | "ColorTable14"=dword:00e0e0e0 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-railscasts.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Railscasts (https://github.com/chriskempson/base16) 4 | ; Scheme: Ryan Bates (http://railscasts.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:002b2b2b ; base00 8 | "ColorTable01"=dword:00be9c6d ; base0D 9 | "ColorTable02"=dword:0061c2a5 ; base0B 10 | "ColorTable03"=dword:00509f51 ; base0C 11 | "ColorTable04"=dword:003949da ; base08 12 | "ColorTable05"=dword:00ebb3b6 ; base0E 13 | "ColorTable06"=dword:003378cc ; base09 14 | "ColorTable07"=dword:00dce1e6 ; base05 15 | "ColorTable08"=dword:007e645a ; base03 16 | "ColorTable09"=dword:00352927 ; base01 17 | "ColorTable10"=dword:0055403a ; base02 18 | "ColorTable11"=dword:007e645a ; base03 19 | "ColorTable12"=dword:00c9cfd4 ; base04 20 | "ColorTable13"=dword:00dce1e6 ; base05 21 | "ColorTable14"=dword:00edf1f4 ; base06 22 | "ColorTable15"=dword:00f3f7f9 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-rebecca.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Rebecca (https://github.com/chriskempson/base16) 4 | ; Scheme: Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00442a29 ; base00 8 | "ColorTable01"=dword:00a7e02d ; base0D 9 | "ColorTable02"=dword:00dffe6d ; base0B 10 | "ColorTable03"=dword:00e0ae8e ; base0C 11 | "ColorTable04"=dword:00c5a0a0 ; base08 12 | "ColorTable05"=dword:00ffa57a ; base0E 13 | "ColorTable06"=dword:00a1e4ef ; base09 14 | "ColorTable07"=dword:00f8eff1 ; base05 15 | "ColorTable08"=dword:00996666 ; base03 16 | "ColorTable09"=dword:00993366 ; base01 17 | "ColorTable10"=dword:00623a38 ; base02 18 | "ColorTable11"=dword:00996666 ; base03 19 | "ColorTable12"=dword:00c5a0a0 ; base04 20 | "ColorTable13"=dword:00f8eff1 ; base05 21 | "ColorTable14"=dword:00ffcccc ; base06 22 | "ColorTable15"=dword:005d4953 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-seti.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Seti UI (https://github.com/chriskempson/base16) 4 | ; Scheme: 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00181715 ; base00 8 | "ColorTable01"=dword:00dbb555 ; base0D 9 | "ColorTable02"=dword:0056ca9f ; base0B 10 | "ColorTable03"=dword:00bedb55 ; base0C 11 | "ColorTable04"=dword:00453fcd ; base08 12 | "ColorTable05"=dword:00c474a0 ; base0E 13 | "ColorTable06"=dword:00557bdb ; base09 14 | "ColorTable07"=dword:00d6d6d6 ; base05 15 | "ColorTable08"=dword:005b5341 ; base03 16 | "ColorTable09"=dword:003dc48e ; base01 17 | "ColorTable10"=dword:008c753b ; base02 18 | "ColorTable11"=dword:005b5341 ; base03 19 | "ColorTable12"=dword:00d5a543 ; base04 20 | "ColorTable13"=dword:00d6d6d6 ; base05 21 | "ColorTable14"=dword:00eeeeee ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-shapeshifter.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Shapeshifter (https://github.com/chriskempson/base16) 4 | ; Scheme: Tyler Benziger (http://tybenz.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00f9f9f9 ; base00 8 | "ColorTable01"=dword:00e3483b ; base0D 9 | "ColorTable02"=dword:0039d80e ; base0B 10 | "ColorTable03"=dword:00daed23 ; base0C 11 | "ColorTable04"=dword:002f2fe9 ; base08 12 | "ColorTable05"=dword:00e296f9 ; base0E 13 | "ColorTable06"=dword:004894e0 ; base09 14 | "ColorTable07"=dword:00152010 ; base05 15 | "ColorTable08"=dword:00555555 ; base03 16 | "ColorTable09"=dword:00e0e0e0 ; base01 17 | "ColorTable10"=dword:00ababab ; base02 18 | "ColorTable11"=dword:00555555 ; base03 19 | "ColorTable12"=dword:00343434 ; base04 20 | "ColorTable13"=dword:00152010 ; base05 21 | "ColorTable14"=dword:00040404 ; base06 22 | "ColorTable15"=dword:00000000 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-solarflare.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Solar Flare (https://github.com/chriskempson/base16) 4 | ; Scheme: Chuck Harmston (https://chuck.harmston.ch) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:002f2618 ; base00 8 | "ColorTable01"=dword:00e1b533 ; base0D 9 | "ColorTable02"=dword:0044c87c ; base0B 10 | "ColorTable03"=dword:00b0cb52 ; base0C 11 | "ColorTable04"=dword:005352ef ; base08 12 | "ColorTable05"=dword:00d563a3 ; base0E 13 | "ColorTable06"=dword:002b6be6 ; base09 14 | "ColorTable07"=dword:00b8afa6 ; base05 15 | "ColorTable08"=dword:00817566 ; base03 16 | "ColorTable09"=dword:00382e22 ; base01 17 | "ColorTable10"=dword:00756858 ; base02 18 | "ColorTable11"=dword:00817566 ; base03 19 | "ColorTable12"=dword:009e9385 ; base04 20 | "ColorTable13"=dword:00b8afa6 ; base05 21 | "ColorTable14"=dword:00ede9e8 ; base06 22 | "ColorTable15"=dword:00faf7f5 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-solarized-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Solarized Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Ethan Schoonover (http://ethanschoonover.com/solarized) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00362b00 ; base00 8 | "ColorTable01"=dword:00d28b26 ; base0D 9 | "ColorTable02"=dword:00009985 ; base0B 10 | "ColorTable03"=dword:0098a12a ; base0C 11 | "ColorTable04"=dword:002f32dc ; base08 12 | "ColorTable05"=dword:00c4716c ; base0E 13 | "ColorTable06"=dword:00164bcb ; base09 14 | "ColorTable07"=dword:00a1a193 ; base05 15 | "ColorTable08"=dword:00837b65 ; base03 16 | "ColorTable09"=dword:00423607 ; base01 17 | "ColorTable10"=dword:00756e58 ; base02 18 | "ColorTable11"=dword:00837b65 ; base03 19 | "ColorTable12"=dword:00969483 ; base04 20 | "ColorTable13"=dword:00a1a193 ; base05 21 | "ColorTable14"=dword:00d5e8ee ; base06 22 | "ColorTable15"=dword:00e3f6fd ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-solarized-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Solarized Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Ethan Schoonover (http://ethanschoonover.com/solarized) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00e3f6fd ; base00 8 | "ColorTable01"=dword:00d28b26 ; base0D 9 | "ColorTable02"=dword:00009985 ; base0B 10 | "ColorTable03"=dword:0098a12a ; base0C 11 | "ColorTable04"=dword:002f32dc ; base08 12 | "ColorTable05"=dword:00c4716c ; base0E 13 | "ColorTable06"=dword:00164bcb ; base09 14 | "ColorTable07"=dword:00756e58 ; base05 15 | "ColorTable08"=dword:00969483 ; base03 16 | "ColorTable09"=dword:00d5e8ee ; base01 17 | "ColorTable10"=dword:00a1a193 ; base02 18 | "ColorTable11"=dword:00969483 ; base03 19 | "ColorTable12"=dword:00837b65 ; base04 20 | "ColorTable13"=dword:00756e58 ; base05 21 | "ColorTable14"=dword:00423607 ; base06 22 | "ColorTable15"=dword:00362b00 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-spacemacs.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Spacemacs (https://github.com/chriskempson/base16) 4 | ; Scheme: Nasser Alshammari (https://github.com/nashamri/spacemacs-theme) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:0022201f ; base00 8 | "ColorTable01"=dword:00d7974f ; base0D 9 | "ColorTable02"=dword:001db167 ; base0B 10 | "ColorTable03"=dword:0074952d ; base0C 11 | "ColorTable04"=dword:001f24f2 ; base08 12 | "ColorTable05"=dword:00b11da3 ; base0E 13 | "ColorTable06"=dword:0000a5ff ; base09 14 | "ColorTable07"=dword:00a3a3a3 ; base05 15 | "ColorTable08"=dword:00585858 ; base03 16 | "ColorTable09"=dword:00282828 ; base01 17 | "ColorTable10"=dword:00554144 ; base02 18 | "ColorTable11"=dword:00585858 ; base03 19 | "ColorTable12"=dword:00b8b8b8 ; base04 20 | "ColorTable13"=dword:00a3a3a3 ; base05 21 | "ColorTable14"=dword:00e8e8e8 ; base06 22 | "ColorTable15"=dword:00f8f8f8 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-summerfruit-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Summerfruit Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Christopher Corley (http://christop.club/) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00151515 ; base00 8 | "ColorTable01"=dword:00e67737 ; base0D 9 | "ColorTable02"=dword:0018c900 ; base0B 10 | "ColorTable03"=dword:00aaaa1f ; base0C 11 | "ColorTable04"=dword:008600ff ; base08 12 | "ColorTable05"=dword:00a100ad ; base0E 13 | "ColorTable06"=dword:000089fd ; base09 14 | "ColorTable07"=dword:00d0d0d0 ; base05 15 | "ColorTable08"=dword:00505050 ; base03 16 | "ColorTable09"=dword:00202020 ; base01 17 | "ColorTable10"=dword:00303030 ; base02 18 | "ColorTable11"=dword:00505050 ; base03 19 | "ColorTable12"=dword:00b0b0b0 ; base04 20 | "ColorTable13"=dword:00d0d0d0 ; base05 21 | "ColorTable14"=dword:00e0e0e0 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-summerfruit-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Summerfruit Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Christopher Corley (http://christop.club/) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ffffff ; base00 8 | "ColorTable01"=dword:00e67737 ; base0D 9 | "ColorTable02"=dword:0018c900 ; base0B 10 | "ColorTable03"=dword:00aaaa1f ; base0C 11 | "ColorTable04"=dword:008600ff ; base08 12 | "ColorTable05"=dword:00a100ad ; base0E 13 | "ColorTable06"=dword:000089fd ; base09 14 | "ColorTable07"=dword:00101010 ; base05 15 | "ColorTable08"=dword:00b0b0b0 ; base03 16 | "ColorTable09"=dword:00e0e0e0 ; base01 17 | "ColorTable10"=dword:00d0d0d0 ; base02 18 | "ColorTable11"=dword:00b0b0b0 ; base03 19 | "ColorTable12"=dword:00000000 ; base04 20 | "ColorTable13"=dword:00101010 ; base05 21 | "ColorTable14"=dword:00151515 ; base06 22 | "ColorTable15"=dword:00202020 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-tomorrow-night.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Tomorrow Night (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00211f1d ; base00 8 | "ColorTable01"=dword:00bea281 ; base0D 9 | "ColorTable02"=dword:0068bdb5 ; base0B 10 | "ColorTable03"=dword:00b7be8a ; base0C 11 | "ColorTable04"=dword:006666cc ; base08 12 | "ColorTable05"=dword:00bb94b2 ; base0E 13 | "ColorTable06"=dword:005f93de ; base09 14 | "ColorTable07"=dword:00c6c8c5 ; base05 15 | "ColorTable08"=dword:00969896 ; base03 16 | "ColorTable09"=dword:002e2a28 ; base01 17 | "ColorTable10"=dword:00413b37 ; base02 18 | "ColorTable11"=dword:00969896 ; base03 19 | "ColorTable12"=dword:00b4b7b4 ; base04 20 | "ColorTable13"=dword:00c6c8c5 ; base05 21 | "ColorTable14"=dword:00e0e0e0 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-tomorrow.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Tomorrow (https://github.com/chriskempson/base16) 4 | ; Scheme: Chris Kempson (http://chriskempson.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ffffff ; base00 8 | "ColorTable01"=dword:00ae7142 ; base0D 9 | "ColorTable02"=dword:00008c71 ; base0B 10 | "ColorTable03"=dword:009f993e ; base0C 11 | "ColorTable04"=dword:002928c8 ; base08 12 | "ColorTable05"=dword:00a85989 ; base0E 13 | "ColorTable06"=dword:001f87f5 ; base09 14 | "ColorTable07"=dword:004c4d4d ; base05 15 | "ColorTable08"=dword:008c908e ; base03 16 | "ColorTable09"=dword:00e0e0e0 ; base01 17 | "ColorTable10"=dword:00d6d6d6 ; base02 18 | "ColorTable11"=dword:008c908e ; base03 19 | "ColorTable12"=dword:00969896 ; base04 20 | "ColorTable13"=dword:004c4d4d ; base05 21 | "ColorTable14"=dword:002e2a28 ; base06 22 | "ColorTable15"=dword:00211f1d ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-tube.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 London Tube (https://github.com/chriskempson/base16) 4 | ; Scheme: Jan T. Sott 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00201f23 ; base00 8 | "ColorTable01"=dword:00dc9d00 ; base0D 9 | "ColorTable02"=dword:003e8500 ; base0B 10 | "ColorTable03"=dword:00bcce85 ; base0C 11 | "ColorTable04"=dword:00242eee ; base08 12 | "ColorTable05"=dword:005d0098 ; base0E 13 | "ColorTable06"=dword:00a186f3 ; base09 14 | "ColorTable07"=dword:00d8d8d9 ; base05 15 | "ColorTable08"=dword:00717173 ; base03 16 | "ColorTable09"=dword:00953f1c ; base01 17 | "ColorTable10"=dword:0058575a ; base02 18 | "ColorTable11"=dword:00717173 ; base03 19 | "ColorTable12"=dword:00a19c95 ; base04 20 | "ColorTable13"=dword:00d8d8d9 ; base05 21 | "ColorTable14"=dword:00e8e7e7 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-twilight.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Twilight (https://github.com/chriskempson/base16) 4 | ; Scheme: David Hart (https://github.com/hartbit) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:001e1e1e ; base00 8 | "ColorTable01"=dword:00a68775 ; base0D 9 | "ColorTable02"=dword:006a9d8f ; base0B 10 | "ColorTable03"=dword:00dbc4af ; base0C 11 | "ColorTable04"=dword:004c6acf ; base08 12 | "ColorTable05"=dword:009d859b ; base0E 13 | "ColorTable06"=dword:0069a8cd ; base09 14 | "ColorTable07"=dword:00a7a7a7 ; base05 15 | "ColorTable08"=dword:00605a5f ; base03 16 | "ColorTable09"=dword:00373532 ; base01 17 | "ColorTable10"=dword:00504b46 ; base02 18 | "ColorTable11"=dword:00605a5f ; base03 19 | "ColorTable12"=dword:00848183 ; base04 20 | "ColorTable13"=dword:00a7a7a7 ; base05 21 | "ColorTable14"=dword:00c3c3c3 ; base06 22 | "ColorTable15"=dword:00ffffff ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-unikitty-dark.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Unikitty Dark (https://github.com/chriskempson/base16) 4 | ; Scheme: Josh W Lewis (@joshwlewis) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00312a2e ; base00 8 | "ColorTable01"=dword:00f56a79 ; base0D 9 | "ColorTable02"=dword:0098ad17 ; base0B 10 | "ColorTable03"=dword:00da9b14 ; base0C 11 | "ColorTable04"=dword:007f13d8 ; base08 12 | "ColorTable05"=dword:00ea60bb ; base0E 13 | "ColorTable06"=dword:000754d6 ; base09 14 | "ColorTable07"=dword:00bebabc ; base05 15 | "ColorTable08"=dword:00858083 ; base03 16 | "ColorTable09"=dword:004d464a ; base01 17 | "ColorTable10"=dword:00696366 ; base02 18 | "ColorTable11"=dword:00858083 ; base03 19 | "ColorTable12"=dword:00a29d9f ; base04 20 | "ColorTable13"=dword:00bebabc ; base05 21 | "ColorTable14"=dword:00dad7d8 ; base06 22 | "ColorTable15"=dword:00f7f4f5 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-unikitty-light.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Unikitty Light (https://github.com/chriskempson/base16) 4 | ; Scheme: Josh W Lewis (@joshwlewis) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00ffffff ; base00 8 | "ColorTable01"=dword:00ff5d77 ; base0D 9 | "ColorTable02"=dword:0098ad17 ; base0B 10 | "ColorTable03"=dword:00da9b14 ; base0C 11 | "ColorTable04"=dword:007f13d8 ; base08 12 | "ColorTable05"=dword:00e617aa ; base0E 13 | "ColorTable06"=dword:000754d6 ; base09 14 | "ColorTable07"=dword:006e696c ; base05 15 | "ColorTable08"=dword:00a8a5a7 ; base03 16 | "ColorTable09"=dword:00e2e1e1 ; base01 17 | "ColorTable10"=dword:00c5c3c4 ; base02 18 | "ColorTable11"=dword:00a8a5a7 ; base03 19 | "ColorTable12"=dword:008b8789 ; base04 20 | "ColorTable13"=dword:006e696c ; base05 21 | "ColorTable14"=dword:00514b4f ; base06 22 | "ColorTable15"=dword:00342d32 ; base07 -------------------------------------------------------------------------------- /windows-command-prompt/base16-woodland.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Base16 Woodland (https://github.com/chriskempson/base16) 4 | ; Scheme: Jay Cornwall (https://jcornwall.com) 5 | 6 | [HKEY_CURRENT_USER\Console] 7 | "ColorTable00"=dword:00181e23 ; base00 8 | "ColorTable01"=dword:00d3a488 ; base0D 9 | "ColorTable02"=dword:0053bab7 ; base0B 10 | "ColorTable03"=dword:0058b96e ; base0C 11 | "ColorTable04"=dword:005c5cd3 ; base08 12 | "ColorTable05"=dword:00e290bb ; base0E 13 | "ColorTable06"=dword:00327fca ; base09 14 | "ColorTable07"=dword:00b1bcca ; base05 15 | "ColorTable08"=dword:00708b9d ; base03 16 | "ColorTable09"=dword:00252b30 ; base01 17 | "ColorTable10"=dword:003a4148 ; base02 18 | "ColorTable11"=dword:00708b9d ; base03 19 | "ColorTable12"=dword:0090a4b4 ; base04 20 | "ColorTable13"=dword:00b1bcca ; base05 21 | "ColorTable14"=dword:00bcc8d7 ; base06 22 | "ColorTable15"=dword:00c8d4e4 ; base07 --------------------------------------------------------------------------------