Skip to content

Instantly share code, notes, and snippets.

@bohoomil
Created September 27, 2013 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bohoomil/76ea82d68801c53a98f1 to your computer and use it in GitHub Desktop.
Save bohoomil/76ea82d68801c53a98f1 to your computer and use it in GitHub Desktop.
variation X/tty cikirs scheme
!! variation by bohoomil
! variation fg/bg
URxvt*background: #090C19
URxvt*foreground: #E6E6E6
URxvt*cursorColor: #1AAA13
! X.org apps bg/fg
*background: #D0CECB
*foreground: #090C19
! black
*color0: #222946
! dark grey
*color8: #8C8B89
! red
*color1: #B32323
! bright red
*color9: #DC2C2C
! green
*color2: #1AAA13
! bright green
*color10: #5DCE33
! yellow
*color3: #8B8CE6
! bright yellow
*color11: #D94BD9
! blue
*color4: #4957F3
! bright blue
*color12: #4D79FF
! magenta
*color5: #BF3077
! bright magenta
*color13: #AA4CD9
! cyan
*color6: #09A5B3
! bright cyan
*color14: #3CB6F3
! light grey
*color7: #AEAEAE
! white
*color15: #DBDDE4
!! Colours for the Linux console
!! for use with conpalette
!! (https://github.com/hinrik/conpalette):
!
! 'variation' => [
! '000000', #black
! 'B32323', #darkred
! '1AAA13', #darkgreen
! '8B8CE6', #brown
! '4957F3', #darkblue
! 'BF3077', #darkmagenta
! '09A5B3', #darkcyan
! 'AEAEAE', #lightgrey
!
! '8C8B89', #darkgrey
! 'DC2C2C', #red
! '5DCE33', #green
! 'D94BD9', #yellow
! '4D79FF', #blue
! 'AA4CD9', #magenta
! '3CB6F3', #cyan
! 'DBDDE4', #white
! ],
!
!! ... or in .profile/.bash_profile/.bashrc, etc.:
!
!if [ "$TERM" = "linux" ]; then
! echo -en "\e]P0000000" #black
! echo -en "\e]P88C8B89" #darkgrey
! echo -en "\e]P1B32323" #darkred
! echo -en "\e]P9DC2C2C" #red
! echo -en "\e]P21AAA13" #darkgreen
! echo -en "\e]PA5DCE33" #green
! echo -en "\e]P38B8CE6" #brown
! echo -en "\e]PBD94BD9" #yellow
! echo -en "\e]P44957F3" #darkblue
! echo -en "\e]PC4D79FF" #blue
! echo -en "\e]P5BF3077" #darkmagenta
! echo -en "\e]PDAA4CD9" #magenta
! echo -en "\e]P609A5B3" #darkcyan
! echo -en "\e]PE3CB6F3" #cyan
! echo -en "\e]P7AEAEAE" #lightgrey
! echo -en "\e]PFDBDDE4" #white
! clear # default input colours
!fi
! vim:ft=xdefaults
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment