├── INSTALL.md └── gitk /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [Gitk](https://git-scm.com/docs/gitk) 2 | 3 | #### Install using Git 4 | 5 | If you are a git user, you can install the theme and keep up to date by cloning the repo: 6 | 7 | git clone https://github.com/dracula/gitk.git 8 | 9 | #### Install manually 10 | 11 | Download using the [GitHub .zip download](https://github.com/dracula/gitk/archive/master.zip) option and unzip them. 12 | 13 | #### Activating theme 14 | 15 | 1. `mkdir -p ~/.config/git` 16 | 2. `cp gitk/gitk ~/.config/git/` 17 | -------------------------------------------------------------------------------- /gitk: -------------------------------------------------------------------------------- 1 | set uicolor #44475a 2 | set want_ttk 0 3 | set bgcolor #282a36 4 | set fgcolor #f8f8f2 5 | set uifgcolor #f8f8f2 6 | set uifgdisabledcolor #6272a4 7 | set colors {#50fa7b #ff5555 #bd93f9 #ff79c6 #f8f8f8 #ffb86c #ffb86c} 8 | set diffcolors {#ff5555 #50fa7b #bd93f9} 9 | set mergecolors {#ff5555 #bd93f9 #50fa7b #bd93f9 #ffb86c #8be9fd #ff79c6 #f1fa8c #8be9fd #ff79c6 #8be9fd #ffb86c #8be9fd #50fa7b #ffb86c #ff79c6} 10 | set markbgcolor #282a36 11 | set selectbgcolor #44475a 12 | set foundbgcolor #f1fa8c 13 | set currentsearchhitbgcolor #ffb86c 14 | set headbgcolor #50fa7b 15 | set headfgcolor black 16 | set headoutlinecolor #f8f8f2 17 | set remotebgcolor #ffb86c 18 | set tagbgcolor #f1fa8c 19 | set tagfgcolor black 20 | set tagoutlinecolor #f8f8f2 21 | set reflinecolor #f8f8f2 22 | set filesepbgcolor #44475a 23 | set filesepfgcolor #f8f8f2 24 | set linehoverbgcolor #f1fa8c 25 | set linehoverfgcolor black 26 | set linehoveroutlinecolor #f8f8f2 27 | set mainheadcirclecolor #f1fa8c 28 | set workingfilescirclecolor #ff5555 29 | set indexcirclecolor #50fa7b 30 | set circlecolors {#282a36 #bd93f9 #44475a #bd93f9 #bd93f9} 31 | set linkfgcolor #bd93f9 32 | set circleoutlinecolor #44475a 33 | set diffbgcolors {{#342a36} #283636} 34 | --------------------------------------------------------------------------------