├── .gitignore ├── LICENSE.txt ├── README.md ├── alacritty └── gotham.yml ├── gnome-terminal ├── LICENSE.mkd ├── README.mkd ├── colors │ └── gotham │ │ ├── README │ │ ├── bd_color │ │ ├── bg_color │ │ ├── fg_color │ │ ├── palette_dconf │ │ └── palette_gconf ├── install.sh ├── set_gotham.sh └── src │ ├── dircolors.sh │ ├── profiles.sh │ ├── set_theme_default_profile.sh │ └── tools.sh ├── highlight ├── README.md ├── gotham.theme └── preview-python.png ├── intellij └── Gotham.icls ├── iterm2 ├── Gotham-ergo.itermcolors ├── Gotham-stable.itermcolors └── Gotham.itermcolors ├── kitty └── Gotham.conf ├── konsole └── Gotham.colorscheme ├── mintty └── .minttyrc ├── putty └── gotham.reg ├── shell ├── README.md ├── colortest ├── gotham.sh └── preview.png ├── st └── config.h ├── sublime-text └── Gotham.tmTheme ├── terminal.app └── Gotham.terminal ├── terminator └── gotham ├── termite └── gotham ├── windows-terminal └── settings.json ├── xcode └── Gotham.dvtcolortheme ├── xfce4-terminal └── gotham.theme └── xresources └── gotham /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/README.md -------------------------------------------------------------------------------- /alacritty/gotham.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/alacritty/gotham.yml -------------------------------------------------------------------------------- /gnome-terminal/LICENSE.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/LICENSE.mkd -------------------------------------------------------------------------------- /gnome-terminal/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/README.mkd -------------------------------------------------------------------------------- /gnome-terminal/colors/gotham/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/colors/gotham/README -------------------------------------------------------------------------------- /gnome-terminal/colors/gotham/bd_color: -------------------------------------------------------------------------------- 1 | #9898d1d1cece 2 | -------------------------------------------------------------------------------- /gnome-terminal/colors/gotham/bg_color: -------------------------------------------------------------------------------- 1 | #0a0a0f0f1414 2 | -------------------------------------------------------------------------------- /gnome-terminal/colors/gotham/fg_color: -------------------------------------------------------------------------------- 1 | #9898d1d1cece 2 | -------------------------------------------------------------------------------- /gnome-terminal/colors/gotham/palette_dconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/colors/gotham/palette_dconf -------------------------------------------------------------------------------- /gnome-terminal/colors/gotham/palette_gconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/colors/gotham/palette_gconf -------------------------------------------------------------------------------- /gnome-terminal/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/install.sh -------------------------------------------------------------------------------- /gnome-terminal/set_gotham.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/set_gotham.sh -------------------------------------------------------------------------------- /gnome-terminal/src/dircolors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/src/dircolors.sh -------------------------------------------------------------------------------- /gnome-terminal/src/profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/src/profiles.sh -------------------------------------------------------------------------------- /gnome-terminal/src/set_theme_default_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/src/set_theme_default_profile.sh -------------------------------------------------------------------------------- /gnome-terminal/src/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/gnome-terminal/src/tools.sh -------------------------------------------------------------------------------- /highlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/highlight/README.md -------------------------------------------------------------------------------- /highlight/gotham.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/highlight/gotham.theme -------------------------------------------------------------------------------- /highlight/preview-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/highlight/preview-python.png -------------------------------------------------------------------------------- /intellij/Gotham.icls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/intellij/Gotham.icls -------------------------------------------------------------------------------- /iterm2/Gotham-ergo.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/iterm2/Gotham-ergo.itermcolors -------------------------------------------------------------------------------- /iterm2/Gotham-stable.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/iterm2/Gotham-stable.itermcolors -------------------------------------------------------------------------------- /iterm2/Gotham.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/iterm2/Gotham.itermcolors -------------------------------------------------------------------------------- /kitty/Gotham.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/kitty/Gotham.conf -------------------------------------------------------------------------------- /konsole/Gotham.colorscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/konsole/Gotham.colorscheme -------------------------------------------------------------------------------- /mintty/.minttyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/mintty/.minttyrc -------------------------------------------------------------------------------- /putty/gotham.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/putty/gotham.reg -------------------------------------------------------------------------------- /shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/shell/README.md -------------------------------------------------------------------------------- /shell/colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/shell/colortest -------------------------------------------------------------------------------- /shell/gotham.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/shell/gotham.sh -------------------------------------------------------------------------------- /shell/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/shell/preview.png -------------------------------------------------------------------------------- /st/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/st/config.h -------------------------------------------------------------------------------- /sublime-text/Gotham.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/sublime-text/Gotham.tmTheme -------------------------------------------------------------------------------- /terminal.app/Gotham.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/terminal.app/Gotham.terminal -------------------------------------------------------------------------------- /terminator/gotham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/terminator/gotham -------------------------------------------------------------------------------- /termite/gotham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/termite/gotham -------------------------------------------------------------------------------- /windows-terminal/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/windows-terminal/settings.json -------------------------------------------------------------------------------- /xcode/Gotham.dvtcolortheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/xcode/Gotham.dvtcolortheme -------------------------------------------------------------------------------- /xfce4-terminal/gotham.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/xfce4-terminal/gotham.theme -------------------------------------------------------------------------------- /xresources/gotham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatyouhide/gotham-contrib/HEAD/xresources/gotham --------------------------------------------------------------------------------