Skip to content

Instantly share code, notes, and snippets.

@loreb
Created April 8, 2015 19:35
Show Gist options
  • Save loreb/ae68800def67f2800eb3 to your computer and use it in GitHub Desktop.
Save loreb/ae68800def67f2800eb3 to your computer and use it in GitHub Desktop.
My *horrible* ~/.Xresources, (ab)using cpp to select themes and with every possible idea dumped in (and commented out); I'm switching to something saner (see line 75).
!!!!!!!!!!!!!!!!!!!!!!!!!!
! /etc/X11/app-defaults/ !
!!!!!!!!!!!!!!!!!!!!!!!!!!
xvt*background: #000000
xvt*foreground: #fefefe
yeahconsole*restart: 1
yeahconsole*toggleKey: Alt+y
! standard global fonts #define macros {{{
! https://github.com/trapd00r/configs/blob/master/Xresources
! xrdb(1) uses cpp(1)!!!
#define FN 42
#if FN == 42
#define FONT_NORMAL xft:Neep Alt:style=SemiCondensed:pixelsize=11,xft:Anonymous Pro:style=Regular:pixelsize=10:antialias=3:autohint=1:hintstyle=3
#define FONT_BOLD xft:Neep Alt:style=Bold SemiCondensed:pixelsize=11
#define FONT_ITALIC -misc-fixed-medium-r-normal--9-90-75-75-c-60-iso8859-1,6x9
#define FONT_BOLDITALIC -misc-fixed-medium-r-normal--7-70-75-75-c-50-koi8
#else
!#define FONT_NORMAL -misc-fixed-medium-r-normal--14-130-75-75-c-70-koi8-r
!#define FONT_BOLD -schumacher-clean-bold-r-normal--14-140-75-75-c-80-iso646.1991-irv
!#define FONT_ITALIC -schumacher-clean-medium-r-normal--14-140-75-75-c-70-iso646.1991-irv
!#define FONT_BOLD_ITALIC -misc-fixed-bold-r-normal--14-130-75-75-c-70-iso8859-9
!#define FONT_ITALIC xft:DejaVu Sans Mono:style=Book:pixelsize=10:antialias=0:hinting=1:hintstyle=3
!#define FONT_BOLDITALIC -nil-profont-medium-r-normal--10-100-72-72-c-50-iso8859-1
!#define FONT_NORMAL xft:Droid Sans Mono Slashed:style=Regular:pixelsize=16:antialias=1:hinting=1
!#define FONT_BOLD xft:Droid Sans Mono Slashed:pixelsize=16:antialias=1:hinting=1:embolden=1
!#define FONT_ITALIC xft:Droid Sans Mono Slashed:pixelsize=16:antialias=1:hinting=1:slant=italic
!#define FONT_BOLDITALIC -nil-profont-medium-r-normal--15-150-72-72-c-70-iso8859-1
!#define FONT_NORMAL xft:Anonymous Pro:style=Regular:pixelsize=10:antialias=1:hinting=1:hintstyle=3
!#define FONT_BOLD xft:Anonymous Pro:style=Bold:pixelsize=10:antialias=1:hinting=1:hintstyle=3
!#define FONT_ITALIC xft:DejaVu Sans Mono:style=Book:pixelsize=10:antialias=0:hinting=1:hintstyle=3
!#define FONT_BOLDITALIC -nil-profont-medium-r-normal--10-100-72-72-c-50-iso8859-1
!#define FONT_NORMAL xft:Anonymous Pro:style=Regular:pixelsize=10:antialias=1:hinting=1:hintstyle=
!#define FONT_BOLD xft:Anonymous Pro:style=Bold:pixelsize=10:antialias=1:hinting=1:hintstyle=3
!#define FONT_ITALIC xft:Anonymous Pro:style=Italic:pixelsize=10:antialias=1:hinting=1:hintstyle=3
!#define FONT_BOLDITALIC xft:DejaVu Sans Mono:style=Book:pixelsize=10:antialias=1:hinting=1:hintstyle=3
!#define FONT_NORMAL 6x10
!#define FONT_BOLD -fontforge-proggytinysz-bold-r-normal--10-80-96-96-c-60-iso8859-1
!#define FONT_ITALIC -b&h-lucidatypewriter-bold-r-normal-sans-10-100-75-75-m-60-iso10646-1
!#define FONT_BOLDITALIC xft:DejaVu Sans Mono:style=Book:pixelsize=10:antialias=1:hinting=1:hintstyle=3
#endif
!}}}
!
!
! ==== COLOR THEMES ====
!
! executables: color10
! directories: color12
! symlinks: color14
#define COLO(n) _helper(THEME, color ## n)
#define BG() _helper(THEME, background)
#define FG() _helper(THEME, foreground)
#define CUR() _helper(THEME, cursorColor)
#define _helper(a, b) _underscore(a, b)
#define _underscore(a, b) concat(_ ## a ## _, b)
#define concat(a, b) a ## b
! All of the above are needed, see cpp(1).
! The result is that you can:
! #define _theme_zenburn_color3 #012345
! #define _theme_solarized_color3 #67890a
! #define THEME theme_zenburn
! *color3: COLO(3)
! XXX why "theme"/"_theme"? Autocomplete :)
! TODO This (1kloc!) preprocessor abuse must DIE! A more sensible way:
! #include "Xresources.d/mytheme"
! xterm*color0: COLOR0
! #include "Xresources.d/othertheme"
! urxvt*color13: COLOR13
! ...
! cat Xresources.d/mytheme
! #undef COLOR0 ...
! #define COLOR0 rgb:00/00/00 ...
! http://crunchbang.org/forums/viewtopic.php?id=9935&p=2 "safety copy" {{{
! theme_safety
#define _theme_safety_background #002b36
#define _theme_safety_foreground #657b83
#define _theme_safety_fadecolor #002b36
! black
#define _theme_safety_color0 #073642
#define _theme_safety_color8 #002636
! red
#define _theme_safety_color1 #dc322f
#define _theme_safety_color9 #cb4b16
! green
#define _theme_safety_color2 #859900
#define _theme_safety_color10 #586e75
! yellow
#define _theme_safety_color3 #b58900
#define _theme_safety_color11 #657b83
! blue
#define _theme_safety_color4 #268bd2
#define _theme_safety_color12 #839496
! magenta
#define _theme_safety_color5 #d33682
#define _theme_safety_color13 #6c71c4
! cyan
#define _theme_safety_color6 #2aa198
#define _theme_safety_color14 #93a1a1
! white
#define _theme_safety_color7 #eee8d5
#define _theme_safety_color15 #fdf6e3
! }}}
! awesome http://theme_awesome.naquadah.org/wiki/Urxvt {{{
! theme_awesome breaks w3m :(
#define _theme_awesome_background #000000
#define _theme_awesome_foreground #EBEBFF
! black + red
!urxvt*color0: #3f3f3f
#define _theme_awesome_color0 #000000
#define _theme_awesome_color1 #e01010
! green + yellow
#define _theme_awesome_color2 #00AA00
#define _theme_awesome_color3 #FFFF00
! blue + purple
#define _theme_awesome_color4 #112037
#define _theme_awesome_color5 #A020F0
! cyan + white
#define _theme_awesome_color6 #5B5BC7
#define _theme_awesome_color7 #fefefe
! bright-black + bright-red
#define _theme_awesome_color8 #6a6a6a
#define _theme_awesome_color9 #FF5555
! bright-green + bright-yellow
#define _theme_awesome_color10 #90EE90
#define _theme_awesome_color11 #ffff2f
! bright-blue + bright-purple
#define _theme_awesome_color12 #5B5BC7
#define _theme_awesome_color13 #e628ba
! bright-cyan + bright-white
#define _theme_awesome_color14 #7D7DFB
#define _theme_awesome_color15 #ffffff
! - cursor
#define _theme_awesome_cursorColor #DCDCCC
! }}}
! bcat -- from abbot.vim https://bbs.archlinux.org/viewtopic.php?id=51818&p=8 {{{
! (default: brown / mint_green) theme_bcat
#define _theme_bcat_background #1f1912
#define _theme_bcat_foreground #d5fac8
! (black: dark_brown / light_brown)
#define _theme_bcat_color0 #0a0806
#define _theme_bcat_color8 #816749
! (red: red / pink)
#define _theme_bcat_color1 #d80450
#define _theme_bcat_color9 #ec6c99
! (green: green / lime_green)
#define _theme_bcat_color2 #76bc20
#define _theme_bcat_color10 #94d900
! (yellow: orange / yellow)
#define _theme_bcat_color3 #fbb32f
#define _theme_bcat_color11 #e5e339
! (blue: blue / pastel_green)
#define _theme_bcat_color4 #3f91f1
#define _theme_bcat_color12 #d8ff84
! (magenta: burnt_orange / lavender)
#define _theme_bcat_color5 #f63f05
#define _theme_bcat_color13 #e6a2f3
! (cyan: pastel_blue / pastel_blue)
#define _theme_bcat_color6 #8ccdf0
#define _theme_bcat_color14 #8ccdf0
! (white: brown / tan)
#define _theme_bcat_color7 #1f1912
#define _theme_bcat_color15 #fee3b4
! }}}
! theme_C64 {{{
// https://kmandla.wordpress.com/2007/11/27/toward-a-better-c64-terminal/
//http://git.enlightenment.org/apps/eterm.git/tree/src/command.c?id=ddd76116088589d3b8b1580bddb768b5eea1f374
// hex values on http://www.c64-wiki.com/index.php/Color
// but see http://www.pepto.de/projects/colorvic/ -- opaque
#define _theme_C64_background #3a319c
#define _theme_C64_foreground #7b71d6
#define _theme_C64_color0 rgb:00/00/00 // Black
#define _theme_C64_color1 rgb:ff/ff/ff // White
#define _theme_C64_color2 rgb:88/00/00 // Red
#define _theme_C64_color3 rgb:aa/ff/ee // Cyan
#define _theme_C64_color4 rgb:cc/44/cc // Violet
#define _theme_C64_color5 rgb:00/cc/55 // Green
#define _theme_C64_color6 rgb:00/00/aa // Blue
#define _theme_C64_color7 rgb:ee/ee/77 // Yellow
#define _theme_C64_color8 rgb:dd/88/55 // Orange
#define _theme_C64_color9 rgb:66/44/00 // Brown
#define _theme_C64_color10 rgb:ff/77/77 // Lightred
#define _theme_C64_color11 rgb:33/33/33 // Grey1
#define _theme_C64_color12 rgb:77/77/77 // Grey2
#define _theme_C64_color13 rgb:aa/ff/66 // Lightgreen
#define _theme_C64_color14 rgb:00/88/ff // Lightblue
#define _theme_C64_color15 rgb:bb/bb/bb // Grey3
//font: xft:Adore64:autohint=false:antialias=false:size=6
// font: xft:Dejavu Sans Mono:pixelsize=10.5
//scrollBar: false
//cursorBlink: true
//geometry: 40x25
! }}}
// Themes from /dev/urandom; I usually name them something like
// Urandom + shortdesc + $$ (ie, pid)
// The difficult thing is looking ok both by itself (ratpoison)
// and on a dark/light background ($BROWSER, black screen, ...)
// theme_devurandom_green2015 - 1st in january 2015 {{{
#define _theme_devurandom_green2015_background rgb:01/53/38
#define _theme_devurandom_green2015_color0 rgb:c4/68/d3
#define _theme_devurandom_green2015_color1 rgb:26/56/7f
#define _theme_devurandom_green2015_color2 rgb:38/c1/ce
#define _theme_devurandom_green2015_color3 rgb:cd/48/b6
#define _theme_devurandom_green2015_color4 rgb:a4/79/6c
#define _theme_devurandom_green2015_color5 rgb:77/c7/36
#define _theme_devurandom_green2015_color6 rgb:63/83/32
#define _theme_devurandom_green2015_color7 rgb:c6/53/97
#define _theme_devurandom_green2015_color8 rgb:45/9a/25
#define _theme_devurandom_green2015_color9 rgb:9b/5b/28
#define _theme_devurandom_green2015_color10 rgb:e8/a4/e9
#define _theme_devurandom_green2015_color11 rgb:2b/df/e2
#define _theme_devurandom_green2015_color12 rgb:e7/fc/fd
#define _theme_devurandom_green2015_color13 rgb:80/c7/2e
#define _theme_devurandom_green2015_color14 rgb:da/ba/f2
#define _theme_devurandom_green2015_color15 rgb:64/5e/8a
#define _theme_devurandom_green2015_foreground rgb:b5/cf/7c
// }}}
// theme_devurandom_green8473 {{{
#define _theme_devurandom_green8473_background #1b3f11
#define _theme_devurandom_green8473_color0 #034b41
#define _theme_devurandom_green8473_color1 #a7d034
#define _theme_devurandom_green8473_color2 #b9b9da
#define _theme_devurandom_green8473_color3 #21e5d2
#define _theme_devurandom_green8473_color4 #2d6659
#define _theme_devurandom_green8473_color5 #4434b6
#define _theme_devurandom_green8473_color6 #327a38
#define _theme_devurandom_green8473_color7 #e61f57
#define _theme_devurandom_green8473_color8 #092bc8
#define _theme_devurandom_green8473_color9 #6a2664
#define _theme_devurandom_green8473_color10 #62ccbf
#define _theme_devurandom_green8473_color11 #89b801
#define _theme_devurandom_green8473_color12 #b68134
#define _theme_devurandom_green8473_color13 #d9fc62
#define _theme_devurandom_green8473_color14 #ccb6bc
#define _theme_devurandom_green8473_color15 #41d77f
#define _theme_devurandom_green8473_foreground #ecf780
// }}}
// theme_devurandom_lightgreen4569 {{{
#define _theme_devurandom_lightgreen4569_background rgb:aa/bf/a6
#define _theme_devurandom_lightgreen4569_color0 rgb:28/7b/65
#define _theme_devurandom_lightgreen4569_color1 rgb:1d/35/4d
#define _theme_devurandom_lightgreen4569_color2 rgb:7c/38/43
#define _theme_devurandom_lightgreen4569_color3 rgb:69/8a/3c
#define _theme_devurandom_lightgreen4569_color4 rgb:10/29/7a
#define _theme_devurandom_lightgreen4569_color5 rgb:31/e4/46
#define _theme_devurandom_lightgreen4569_color6 rgb:94/e2/0e
#define _theme_devurandom_lightgreen4569_color7 rgb:5d/1a/1e
#define _theme_devurandom_lightgreen4569_color8 rgb:fb/0d/de
#define _theme_devurandom_lightgreen4569_color9 rgb:1a/23/5a
#define _theme_devurandom_lightgreen4569_color10 rgb:8a/03/1e
#define _theme_devurandom_lightgreen4569_color11 rgb:eb/00/c5
#define _theme_devurandom_lightgreen4569_color12 rgb:36/12/ad
#define _theme_devurandom_lightgreen4569_color13 rgb:b7/ec/29
#define _theme_devurandom_lightgreen4569_color14 rgb:1f/2a/f7
#define _theme_devurandom_lightgreen4569_color15 rgb:77/c4/db
#define _theme_devurandom_lightgreen4569_foreground rgb:45/2c/58
// }}}
// theme_devurandom_purplegreen15377 {{{
#define _theme_devurandom_purplegreen15377_background rgb:b2/d3/aa
#define _theme_devurandom_purplegreen15377_color0 rgb:0d/b4/0b
#define _theme_devurandom_purplegreen15377_color1 rgb:60/14/49
#define _theme_devurandom_purplegreen15377_color2 rgb:30/d6/b5
#define _theme_devurandom_purplegreen15377_color3 rgb:14/be/81
#define _theme_devurandom_purplegreen15377_color4 rgb:d0/5d/a6
#define _theme_devurandom_purplegreen15377_color5 rgb:3b/e0/58
#define _theme_devurandom_purplegreen15377_color6 rgb:92/e9/1b
#define _theme_devurandom_purplegreen15377_color7 rgb:1d/c0/f3
#define _theme_devurandom_purplegreen15377_color8 rgb:64/68/e0
#define _theme_devurandom_purplegreen15377_color9 rgb:45/0e/b7
#define _theme_devurandom_purplegreen15377_color10 rgb:1a/45/cb
#define _theme_devurandom_purplegreen15377_color11 rgb:d1/4c/7c
#define _theme_devurandom_purplegreen15377_color12 rgb:e7/f4/02
#define _theme_devurandom_purplegreen15377_color13 rgb:2c/ab/fe
#define _theme_devurandom_purplegreen15377_color14 rgb:5a/fc/fd
#define _theme_devurandom_purplegreen15377_color15 rgb:9a/23/d8
#define _theme_devurandom_purplegreen15377_foreground rgb:72/20/cf
// }}}
// theme_devurandom_viowow17309 {{{
// This sounds awful, but it's actually very usable!
#define _theme_devurandom_viowow17309_background rgb:4c/09/68
#define _theme_devurandom_viowow17309_color0 rgb:3e/e2/e8
#define _theme_devurandom_viowow17309_color1 rgb:70/8c/77
#define _theme_devurandom_viowow17309_color2 rgb:b7/9d/23
#define _theme_devurandom_viowow17309_color3 rgb:76/e2/4e
#define _theme_devurandom_viowow17309_color4 rgb:e2/d8/0e
#define _theme_devurandom_viowow17309_color5 rgb:7f/7e/d2
#define _theme_devurandom_viowow17309_color6 rgb:de/a5/9b
#define _theme_devurandom_viowow17309_color7 rgb:cc/2f/ed
#define _theme_devurandom_viowow17309_color8 rgb:2c/37/64
#define _theme_devurandom_viowow17309_color9 rgb:47/55/cb
#define _theme_devurandom_viowow17309_color10 rgb:95/2b/ec
#define _theme_devurandom_viowow17309_color11 rgb:d1/fd/5e
#define _theme_devurandom_viowow17309_color12 rgb:4d/6e/ee
#define _theme_devurandom_viowow17309_color13 rgb:a5/3f/ae
#define _theme_devurandom_viowow17309_color14 rgb:f5/85/df
#define _theme_devurandom_viowow17309_color15 rgb:8d/38/68
#define _theme_devurandom_viowow17309_foreground rgb:d8/cb/ea
// }}}
! theme_devurandom_weird1554 {{{
#define _theme_devurandom_weird1554_background rgb:d8/bf/b3
#define _theme_devurandom_weird1554_color0 rgb:b4/d9/6f
#define _theme_devurandom_weird1554_color1 rgb:55/ff/a5
#define _theme_devurandom_weird1554_color2 rgb:fb/9f/72
#define _theme_devurandom_weird1554_color3 rgb:50/9d/61
#define _theme_devurandom_weird1554_color4 rgb:3d/49/2a
#define _theme_devurandom_weird1554_color5 rgb:01/4f/f2
#define _theme_devurandom_weird1554_color6 rgb:fa/c9/3e
#define _theme_devurandom_weird1554_color7 rgb:c8/c3/a5
#define _theme_devurandom_weird1554_color8 rgb:d7/4c/1a
#define _theme_devurandom_weird1554_color9 rgb:9c/ee/75
#define _theme_devurandom_weird1554_color10 rgb:f0/5c/68
#define _theme_devurandom_weird1554_color11 rgb:67/90/a5
#define _theme_devurandom_weird1554_color12 rgb:7a/50/db
#define _theme_devurandom_weird1554_color13 rgb:c9/7a/a1
#define _theme_devurandom_weird1554_color14 rgb:14/8b/2e
#define _theme_devurandom_weird1554_color15 rgb:aa/03/39
#define _theme_devurandom_weird1554_foreground rgb:47/3b/1d
! }}}
// ok, done with /dev/urandom :)
! theme_euphrasia {{{
!https://github.com/tlatsas/xcolors/blob/development/themes/euphrasia
! euphrasia v. 1.0
! by bohoomil
! Xresources
!URxvt*background: #000C1A
!URxvt*foreground: #ACB4BF
!URxvt*cursorColor: #335A80
! fg/bg for Xorg apps
#define _theme_euphrasia_background #CFCFD9
#define _theme_euphrasia_foreground #1C2027
! black
#define _theme_euphrasia_color0 #192033
#define _theme_euphrasia_color8 #666666
! red
#define _theme_euphrasia_color1 #A62A3E
#define _theme_euphrasia_color9 #F04758
! green
#define _theme_euphrasia_color2 #38912B
#define _theme_euphrasia_color10 #93C724
! yellow
#define _theme_euphrasia_color3 #B27D12
#define _theme_euphrasia_color11 #DDB62B
! blue
#define _theme_euphrasia_color4 #355C9A
#define _theme_euphrasia_color12 #45A3E6
! magenta
#define _theme_euphrasia_color5 #7C4F9F
#define _theme_euphrasia_color13 #C953EF
! cyan
#define _theme_euphrasia_color6 #258F8F
#define _theme_euphrasia_color14 #60C6C8
! white
#define _theme_euphrasia_color7 #77858C
#define _theme_euphrasia_color15 #C0C0C0
! }}}
! theme_sky https://bbs.archlinux.org/viewtopic.php?pid=1194680 {{{
#define _theme_sky_background #719ECE
#define _theme_sky_foreground #D1EAFF
! Black (not theme_tango) + DarkGrey
#define _theme_sky_color0 #000000
#define _theme_sky_color8 #555753
! DarkRed + Red
#define _theme_sky_color1 #ff6565
#define _theme_sky_color9 #ff8d8d
! DarkGreen + Green
#define _theme_sky_color2 #c8e7a8
#define _theme_sky_color10 #93d44f
! DarkYellow + Yellow
#define _theme_sky_color3 #eab93d
#define _theme_sky_color11 #ffc123
! DarkBlue + Blue
#define _theme_sky_color4 #4a6787
#define _theme_sky_color12 #4a6787
! DarkMangenta + Mangenta
#define _theme_sky_color5 #ce5c00
#define _theme_sky_color13 #f57900
!DarkCyan + Cyan (both not theme_tango)
#define _theme_sky_color6 #89b6e2
#define _theme_sky_color14 #46a4ff
! LightGrey + White
#define _theme_sky_color7 #cccccc
#define _theme_sky_color15 #ffffff
! }}}
! theme_grassland with cursor -- nice! trouble with my $PS1 {{{
! grassland by bohoomil https://bbs.archlinux.org/viewtopic.php?id=51818&p=13
#define _theme_grassland_background #0d1926
#define _theme_grassland_foreground #d9e6f2
#define _theme_grassland_cursorColor #238c0e
! black
#define _theme_grassland_color0 #00070d
! dark gray
#define _theme_grassland_color8 #666666
! red
#define _theme_grassland_color1 #a83a71
! bright red
#define _theme_grassland_color9 #d78bb1
! green
#define _theme_grassland_color2 #71a83a
! bright green
#define _theme_grassland_color10 #b1d78b
! yellow
#define _theme_grassland_color3 #a8713a
! bright yellow
#define _theme_grassland_color11 #d7b18b
! blue
#define _theme_grassland_color4 #3a71a8
! bright blue
#define _theme_grassland_color12 #8bb1d7
! magenta
#define _theme_grassland_color5 #713aa8
! bright magenta
#define _theme_grassland_color13 #b18bd7
! cyan
#define _theme_grassland_color6 #3aa871
! bright cyan
#define _theme_grassland_color14 #8bd7b1
! light gray
#define _theme_grassland_color7 #a6a6a6
! white
#define _theme_grassland_color15 #e6e6e6
! vim:ft=xdefaults
! }}}
! theme_jhvid, https://bbs.archlinux.org/viewtopic.php?pid=795103#p795103 {{{
#define _theme_jhvid_background #353333
#define _theme_jhvid_foreground #ffffff
#define _theme_jhvid_color0 #464444
#define _theme_jhvid_color1 #EF3460
#define _theme_jhvid_color2 #BDEF34
#define _theme_jhvid_color3 #EFC334
#define _theme_jhvid_color4 #34BDEF
#define _theme_jhvid_color5 #B300FF
#define _theme_jhvid_color6 #3DD8FF
#define _theme_jhvid_color7 #FFFFFF
#define _theme_jhvid_color8 #8a8888
#define _theme_jhvid_color9 #F25A7D
#define _theme_jhvid_color10 #DCF692
#define _theme_jhvid_color11 #F6DF92
#define _theme_jhvid_color12 #92AAF6
#define _theme_jhvid_color13 #DF92F6
#define _theme_jhvid_color14 #5AF2CE
#define _theme_jhvid_color15 #FFFFFF
! }}}
! theme_korakogg green on semi-light gray {{{
! http://crunchbang.org/forums/viewtopic.php?id=9935&p=5
#define _theme_korakogg_background #2B2B2B
#define _theme_korakogg_foreground #A2DBB4
#define _theme_korakogg_colorUL #86a2b0
!black
#define _theme_korakogg_color0 #2B2B2B
#define _theme_korakogg_color8 #0E190E
!red
#define _theme_korakogg_color1 #369D58
#define _theme_korakogg_color9 #216136
!green
#define _theme_korakogg_color2 #34D4CC
#define _theme_korakogg_color10 #12B2B8
!yellow
#define _theme_korakogg_color3 #6BBF59
#define _theme_korakogg_color11 #4D7E42
!blue
#define _theme_korakogg_color4 #4F8F60
#define _theme_korakogg_color12 #228443
!magenta
#define _theme_korakogg_color5 #268745
#define _theme_korakogg_color13 #216136
!cyan
#define _theme_korakogg_color6 #397157
#define _theme_korakogg_color14 #1C6332
!white
#define _theme_korakogg_color7 #A2DBB4
#define _theme_korakogg_color15 #6AB07C
! }}}
! theme_mikazuki http://crunchbang.org/forums/viewtopic.php?id=9935&p=2 {{{
!Mikazuki no Shindai
#define _theme_mikazuki_background #2a1d17
#define _theme_mikazuki_foreground #e9e9e9
!kuro
#define _theme_mikazuki_color0 #2a1d17
#define _theme_mikazuki_color8 #4f362b
!aka
#define _theme_mikazuki_color1 #da1657
#define _theme_mikazuki_color9 #da4375
!midori
#define _theme_mikazuki_color2 #3ea250
#define _theme_mikazuki_color10 #6cb87a
!kiiro
#define _theme_mikazuki_color3 #e3d33d
#define _theme_mikazuki_color11 #e3da84
!ao
#define _theme_mikazuki_color4 #3ea290
#define _theme_mikazuki_color12 #8ca8a3
!momoiro
#define _theme_mikazuki_color5 #ff850d
#define _theme_mikazuki_color13 #ffa64f
!mizuiro
#define _theme_mikazuki_color6 #8c16da
#define _theme_mikazuki_color14 #a167c7
!shiro
#define _theme_mikazuki_color7 #e9e9e9
#define _theme_mikazuki_color15 #fdfdfd
! }}}
! theme_molokai https://gist.github.com/vreon/845878 {{{
#define _theme_molokai_background #101010
#define _theme_molokai_foreground #d0d0d0
#define _theme_molokai_cursorColor #d0d0d0
#define _theme_molokai_color0 #101010
#define _theme_molokai_color1 #960050
#define _theme_molokai_color2 #66aa11
#define _theme_molokai_color3 #c47f2c
#define _theme_molokai_color4 #30309b
#define _theme_molokai_color5 #7e40a5
#define _theme_molokai_color6 #3579a8
#define _theme_molokai_color7 #9999aa
#define _theme_molokai_color8 #303030
#define _theme_molokai_color9 #ff0090
#define _theme_molokai_color10 #80ff00
#define _theme_molokai_color11 #ffba68
#define _theme_molokai_color12 #5f5fee
#define _theme_molokai_color13 #bb88dd
#define _theme_molokai_color14 #4eb4fa
#define _theme_molokai_color15 #d0d0d0
! }}}
! theme_mono1 http://chneukirchen.org/dotfiles/.Xresources {{{
#define _theme_mono1_foreground #B0B0B0
#define _theme_mono1_background #282828
#define _theme_mono1_color0 #000000
#define _theme_mono1_color1 #434343
#define _theme_mono1_color2 #6B6B6B
#define _theme_mono1_color3 #969696
#define _theme_mono1_color4 #4A4A4A
#define _theme_mono1_color5 #707070
#define _theme_mono1_color6 #A9A9A9
#define _theme_mono1_color7 #FFFFFF
#define _theme_mono1_color8 #222222
#define _theme_mono1_color9 #434343
#define _theme_mono1_color10 #A5A5A5
#define _theme_mono1_color11 #E5E5E5
#define _theme_mono1_color12 #4D4D4D
#define _theme_mono1_color13 #747474
#define _theme_mono1_color14 #C4C4C4
#define _theme_mono1_color15 #DEDEDE
! }}}
! theme_mono2 http://chneukirchen.org/dotfiles/.Xresources {{{
#define _theme_mono2_foreground #ffffff
#define _theme_mono2_background #000000
#define _theme_mono2_color0 #000000
#define _theme_mono2_color1 #777777
#define _theme_mono2_color2 #888888
#define _theme_mono2_color3 #999999
#define _theme_mono2_color4 #aaaaaa
#define _theme_mono2_color5 #bbbbbb
#define _theme_mono2_color6 #cccccc
#define _theme_mono2_color7 #ffffff
#define _theme_mono2_color8 #000000
#define _theme_mono2_color9 #999999
#define _theme_mono2_color10 #aaaaaa
#define _theme_mono2_color11 #bbbbbb
#define _theme_mono2_color12 #cccccc
#define _theme_mono2_color13 #dddddd
#define _theme_mono2_color14 #eeeeee
#define _theme_mono2_color15 #ffffff
! }}}
! theme_mono3, always monochrome... {{{
#define _theme_mono3_background #222c2e
#define _theme_mono3_foreground #dee2e3
#define _theme_mono3_cursorColor #545f65
#define _theme_mono3_color0 #000000
#define _theme_mono3_color1 #545f65
#define _theme_mono3_color2 #6d787c
#define _theme_mono3_color3 #dee2e3
#define _theme_mono3_color4 #9ea8aa
#define _theme_mono3_color5 #97a1a3
#define _theme_mono3_color6 #97a1a3
#define _theme_mono3_color7 #dee2e3
#define _theme_mono3_color8 #666666
#define _theme_mono3_color9 #dae3e8
#define _theme_mono3_color10 #99a2a7
#define _theme_mono3_color11 #efef60
#define _theme_mono3_color12 #dee2e3
#define _theme_mono3_color13 #c2c7ca
#define _theme_mono3_color14 #c2c7ca
#define _theme_mono3_color15 #efefef
! }}}
! theme_pipicaca https://bbs.archlinux.org/viewtopic.php?pid=1194680 {{{
#define _theme_pipicaca_background #dde1c2
#define _theme_pipicaca_color0 #87981a
#define _theme_pipicaca_color8 #709080
#define _theme_pipicaca_color1 #f9060a
#define _theme_pipicaca_color9 #930000
#define _theme_pipicaca_color2 #6d9223
#define _theme_pipicaca_color10 #97ca31
#define _theme_pipicaca_color3 #df9800
#define _theme_pipicaca_color11 #24211a
#define _theme_pipicaca_color4 #2d642d
#define _theme_pipicaca_color12 #2c6735
#define _theme_pipicaca_color5 #dc5052
#define _theme_pipicaca_color13 #ec4949
#define _theme_pipicaca_color6 #4e5343
#define _theme_pipicaca_color14 #5e673c
#define _theme_pipicaca_color7 #2d3d40
#define _theme_pipicaca_color15 #dde1c2
#define _theme_pipicaca_foreground #2e3127
! }}}
! https://theme_sdkmvx.wordpress.com/2008/08/13/rxvt-unicode-terminal-colors/ {{{
! theme_sdkmvx
#define _theme_sdkmvx_foreground #f2f2f2
#define _theme_sdkmvx_background #101010
! Normal
! color0 black
! color1 red
! color2 green
! color3 yellow
! color4 blue
! color5 purple
! color6 cyan
! color7 white
#define _theme_sdkmvx_color0 #6c6c6c
#define _theme_sdkmvx_color1 #e9897c
#define _theme_sdkmvx_color2 #b6e77d
#define _theme_sdkmvx_color3 #ecebbe
#define _theme_sdkmvx_color4 #a9cdeb
#define _theme_sdkmvx_color5 #ea96eb
#define _theme_sdkmvx_color6 #c9caec
#define _theme_sdkmvx_color7 #f2f2f2
! Light
! color8 black
! color9 red
! color10 green
! color11 yellow
! color12 blue
! color13 purple
! color14 cyan
! color15 white
#define _theme_sdkmvx_color8 #747474
#define _theme_sdkmvx_color9 #f99286
#define _theme_sdkmvx_color10 #c3f786
#define _theme_sdkmvx_color11 #fcfbcc
#define _theme_sdkmvx_color12 #b6defb
#define _theme_sdkmvx_color13 #fba1fb
#define _theme_sdkmvx_color14 #d7d9fc
#define _theme_sdkmvx_color15 #e2e2e2
! }}}
! theme_skwid skwid colors, from a collection! {{{
! https://github.com/roylez/dotfiles/raw/master/.Xresources
#define _theme_skwid_foreground #DDEEDD
#define _theme_skwid_background #1C1C1C
#define _theme_skwid_color0 #1C1C1C
#define _theme_skwid_color8 #4d4d4d
#define _theme_skwid_color1 #D81860
#define _theme_skwid_color9 #F00060
#define _theme_skwid_color2 #B7CE42
#define _theme_skwid_color10 #BDE077
#define _theme_skwid_color3 #FEA63C
#define _theme_skwid_color11 #FFE863
#define _theme_skwid_color4 #66AABB
#define _theme_skwid_color12 #AACCBB
#define _theme_skwid_color5 #B7416E
#define _theme_skwid_color13 #BB4466
#define _theme_skwid_color6 #5E7175
#define _theme_skwid_color14 #A3BABF
#define _theme_skwid_color7 #DDEEDD
#define _theme_skwid_color15 #6C887A
!}}}
! theme_VGA http://pod.tst.eu/http://cvs.schmorp.de/rxvt-unicode/doc/rxvt.7.pod {{{
#define _theme_VGA_color0 #000000
#define _theme_VGA_color1 #A80000
#define _theme_VGA_color2 #00A800
#define _theme_VGA_color3 #A8A800
#define _theme_VGA_color4 #0000A8
#define _theme_VGA_color5 #A800A8
#define _theme_VGA_color6 #00A8A8
#define _theme_VGA_color7 #A8A8A8
#define _theme_VGA_color8 #000054
#define _theme_VGA_color9 #FF0054
#define _theme_VGA_color10 #00FF54
#define _theme_VGA_color11 #FFFF54
#define _theme_VGA_color12 #0000FF
#define _theme_VGA_color13 #FF00FF
#define _theme_VGA_color14 #00FFFF
#define _theme_VGA_color15 #FFFFFF
! }}}
! theme_tango {{{
#define _theme_tango_background #ffffff
#define _theme_tango_foreground #000000
! black
#define _theme_tango_color0 #2E3436
#define _theme_tango_color8 #555753
! red
#define _theme_tango_color1 #a40000
#define _theme_tango_color9 #EF2929
! green
#define _theme_tango_color2 #4E9A06
#define _theme_tango_color10 #8AE234
! yellow
#define _theme_tango_color3 #C4A000
#define _theme_tango_color11 #FCE94F
! blue
#define _theme_tango_color4 #3465A4
#define _theme_tango_color12 #729FCF
! purple
#define _theme_tango_color5 #75507B
#define _theme_tango_color13 #AD7FA8
! orange (replaces cyan)
#define _theme_tango_color6 #ce5c00
#define _theme_tango_color14 #fcaf3e
! white
#define _theme_tango_color7 #babdb9
#define _theme_tango_color15 #EEEEEC
! }}}
! theme_taffy dotshare.it/dots/628/ black on light grey {{{
#define _theme_taffy_foreground #707070
#define _theme_taffy_background #f3f3f3
#define _theme_taffy_cursorColor #e4e4e4
#define _theme_taffy_color0 #d3d3d3
#define _theme_taffy_color8 #b3b3b3
#define _theme_taffy_color1 #ff807a
#define _theme_taffy_color9 #ff605a
#define _theme_taffy_color2 #b4c158
#define _theme_taffy_color10 #94c138
#define _theme_taffy_color3 #f59335
#define _theme_taffy_color11 #f59335
#define _theme_taffy_color4 #bbdbe2
#define _theme_taffy_color12 #9bbbe2
#define _theme_taffy_color5 #fec7cd
#define _theme_taffy_color13 #d2a4b4
#define _theme_taffy_color6 #95c1c0
#define _theme_taffy_color14 #75A1A0
#define _theme_taffy_color7 #707070
#define _theme_taffy_color15 #909090
! }}}
! theme_tartan {{{
#define _theme_tartan_background #2B2B2B
#define _theme_tartan_foreground #DEDEDE
#define _theme_tartan_colorUL #86a2b0
! black
#define _theme_tartan_color0 #2E3436
#define _theme_tartan_color8 #555753
! red
#define _theme_tartan_color1 #CC0000
#define _theme_tartan_color9 #EF2929
! green
#define _theme_tartan_color2 #4E9A06
#define _theme_tartan_color10 #8AE234
! yellow
#define _theme_tartan_color3 #C4A000
#define _theme_tartan_color11 #FCE94F
! blue
#define _theme_tartan_color4 #3465A4
#define _theme_tartan_color12 #729FCF
! magenta
#define _theme_tartan_color5 #75507B
#define _theme_tartan_color13 #AD7FA8
! cyan
#define _theme_tartan_color6 #06989A
#define _theme_tartan_color14 #34E2E2
! white
#define _theme_tartan_color7 #D3D7CF
#define _theme_tartan_color15 #EEEEEC
! }}}
! theme_termendous http://theme_termendous.org/xterm generated with theme_termendous.org {{{
#define _theme_termendous_background #2e002e
#define _theme_termendous_foreground #d9b800
!Black
#define _theme_termendous_color0 #5c465c
#define _theme_termendous_color8 #8a5d8a
!Red
#define _theme_termendous_color1 #c41c1c
#define _theme_termendous_color9 #e80000
!Green
#define _theme_termendous_color2 #14db49
#define _theme_termendous_color10 #2dfa3b
!Yellow
#define _theme_termendous_color3 #c7de6a
#define _theme_termendous_color11 #d0f00
!Blue
#define _theme_termendous_color4 #6655eb
#define _theme_termendous_color12 #4c82ff
!Magenta
#define _theme_termendous_color5 #b007bf
#define _theme_termendous_color13 #e637cc
!Cyan
#define _theme_termendous_color6 #31c2b6
#define _theme_termendous_color14 #41f0d9
!White
#define _theme_termendous_color7 #c0c0c0
#define _theme_termendous_color15 #ffffff
! }}}
! theme_tirmm {{{
#define _theme_tirmm_background #1B1D1E
#define _theme_tirmm_foreground #FFFFFF
#define _theme_tirmm_color0 #000000
#define _theme_tirmm_color1 #FF0000
#define _theme_tirmm_color2 #A6E22E
#define _theme_tirmm_color3 #FD971F
#define _theme_tirmm_color4 #AE81FF
#define _theme_tirmm_color5 #F92672
#define _theme_tirmm_color6 #66D9EF
#define _theme_tirmm_color7 #F2F2F2
#define _theme_tirmm_color8 #5D5D5D
#define _theme_tirmm_color9 #FF0000
#define _theme_tirmm_color10 #A6E22E
#define _theme_tirmm_color11 #FD971F
#define _theme_tirmm_color12 #AE81FF
#define _theme_tirmm_color13 #F92672
#define _theme_tirmm_color14 #66D9EF
#define _theme_tirmm_color15 #FFFFFF
! }}}
! theme_tvale from a collection of themes... {{{
! https://github.com/roylez/dotfiles/raw/master/.Xresources
!*background: #000000
#define _theme_tvale_background #333333
#define _theme_tvale_foreground #FFFFFF
!black
#define _theme_tvale_color0 #222222
#define _theme_tvale_color8 #454545
!red
#define _theme_tvale_color1 #B22222
#define _theme_tvale_color9 #FA8072
!green
#define _theme_tvale_color2 #556B2F
#define _theme_tvale_color10 #9ACD32
!yellow
#define _theme_tvale_color3 #B8860B
#define _theme_tvale_color11 #DAA520
!blue
#define _theme_tvale_color4 #4682B4
#define _theme_tvale_color12 #6495ED
!magenta
#define _theme_tvale_color5 #9932CC
#define _theme_tvale_color13 #DA70D6
!cyan
#define _theme_tvale_color6 #87CEEB
#define _theme_tvale_color14 #B0E0E6
!white
#define _theme_tvale_color7 #C0C0C0
#define _theme_tvale_color15 #FFFFFF
! }}}
! theme_unix4life http://unix4lyfe.org/xterm/ {{{
#define _theme_unix4life_foreground rgb:a8/a8/a8
#define _theme_unix4life_background rgb:00/00/00
#define _theme_unix4life_color0 rgb:00/00/00
#define _theme_unix4life_color1 rgb:a8/00/00
#define _theme_unix4life_color2 rgb:00/a8/00
#define _theme_unix4life_color3 rgb:a8/54/00
#define _theme_unix4life_color4 rgb:00/00/a8
#define _theme_unix4life_color5 rgb:a8/00/a8
#define _theme_unix4life_color6 rgb:00/a8/a8
#define _theme_unix4life_color7 rgb:a8/a8/a8
#define _theme_unix4life_color8 rgb:54/54/54
#define _theme_unix4life_color9 rgb:fc/54/54
#define _theme_unix4life_color10 rgb:54/fc/54
#define _theme_unix4life_color11 rgb:fc/fc/54
#define _theme_unix4life_color12 rgb:54/54/fc
#define _theme_unix4life_color13 rgb:fc/54/fc
#define _theme_unix4life_color14 rgb:54/fc/fc
#define _theme_unix4life_color15 rgb:fc/fc/fc
#define _theme_unix4life_colorBD rgb:fc/fc/fc
! }}}
! theme_vypr https://github.com/vypr/dottie/raw/master/.Xresources {{{
! Really really beautiful!
#define _theme_vypr_background #313131
#define _theme_vypr_foreground #d9e6f2
! black
#define _theme_vypr_color0 #313131
! bright_black
#define _theme_vypr_color8 #5c5c5c
! red
#define _theme_vypr_color1 #dc6a3d
! bright_red
#define _theme_vypr_color9 #eaa88e
! green
#define _theme_vypr_color2 #3ddc6a
! bright_green
#define _theme_vypr_color10 #8eeaa8
! yellow
#define _theme_vypr_color3 #afdc3d
! bright_yellow
#define _theme_vypr_color11 #d0ea8e
! blue
#define _theme_vypr_color4 #0000e9
! bright_blue
#define _theme_vypr_color12 #a88eea
! magenta
#define _theme_vypr_color5 #dc3daf
! bright_magenta
#define _theme_vypr_color13 #ea8ed0
! cyan
#define _theme_vypr_color6 #3dafdc
! bright_cyan
#define _theme_vypr_color14 #8ed0ea
! white
#define _theme_vypr_color7 #d6d6d6
! bright_white
#define _theme_vypr_color15 #ffffff
! }}}
! theme_zenburn {{{
#define _theme_zenburn_tintColor gray30
#define _theme_zenburn_background #000010
#define _theme_zenburn_foreground Wheat
#define _theme_zenburn_cursorColor magenta
#define _theme_zenburn_colorUL #c5f779
#define _theme_zenburn_underlineColor #c5f779
#define _theme_zenburn_color0 #000000
#define _theme_zenburn_color1 #9e1828
#define _theme_zenburn_color2 #aece92
#define _theme_zenburn_color3 #968a38
#define _theme_zenburn_color4 #414171
#define _theme_zenburn_color5 #963c59
#define _theme_zenburn_color6 #418179
#define _theme_zenburn_color7 #bebebe
#define _theme_zenburn_color8 #666666
#define _theme_zenburn_color9 #cf6171
#define _theme_zenburn_color10 #c5f779
#define _theme_zenburn_color11 #fff796
#define _theme_zenburn_color12 #4186be
#define _theme_zenburn_color13 #cf9ebe
#define _theme_zenburn_color14 #71bebe
#define _theme_zenburn_color15 #ffffff
! }}}
#ifndef URXVT_THEME
//# define URXVT_THEME theme_awesome - ok, blue is a bit dark
# define URXVT_THEME theme_tirmm
#endif
#undef THEME
#define THEME URXVT_THEME
! {{{ URxvt -- size of binary is ok
urxvt*cursorBlink: false
!URxvt.transparent: true
URxvt.transparent: false
!URxvt.shading: 13
!URxvt.shading: 0
URxvt.saveLines: 8192
! Look like the background
URxvt.inheritPixmap: false
URxvt.scrollBar: false
URxvt.scrollBar_right: true
!! XXX urxvt-lite lacks xft: fonts
!urxvt.font: fixed
!urxvt.font: xft:Monospace:pixelsize=11
!urxvt.font: xft:Dustismo
!xft:Droid Sans Mono-10 // echo nw | grep --color nw --> 'w'
!xft:DejaVu Sans Mono-10 --> emacs etc
!ttf-anonymous-pro is meant for programming! XXX huge? restart X server
//urxvt.font: \
xft:Anonymous Pro:pixelsize=13:antialiasing=true \
-misc-fixed-bold-r-normal--15-140-75-75-c-90-iso10646-1,\
-misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1,
!xft:Inconsolata // bellissimo ma TROPPO LARGO -- urxvt.letterSpace!!!
urxvt.font: xft:Inconsolata: // looks WONDERFUL in vim!
!urxvt.font: xft:Bitstream Vera Sans Mono:autohint=true:size=11
!urxvt.font: xft:Terminus
!urxvt.font: xft:dejavu sans mono:pixelsize=12:
!urxvt.boldFont: -xos4-terminus-bold-r-normal--14-140-72-72-c-80-iso8859-15
!urxvt.italicFont: xft:Bitstream Vera Sans Mono:italic:autohint=true
!urxvt.boldItalicFont: xft:Bitstream Vera Sans Mono:bold:italic:autohint=true
// this is SO AWESOME:
URxvt.fading: 15
! https://bbs.archlinux.org/viewtopic.php?id=44800&p=2
URxvt.letterSpace: -1
! This does wonders, it lets me use inconsolata in dwm!!!
// ok, now color scheme
urxvt*background: BG()
urxvt*foreground: FG()
URxvt*underlineColor: COLO(7)
URxvt*colorBD: COLO(7) // SYNOPSIS
URxvt*colorIT: pink
URxvt*colorUL: COLO(6) // option
urxvt*color0: COLO(0)
urxvt*color8: COLO(8)
urxvt*color1: COLO(1)
urxvt*color9: COLO(9)
urxvt*color2: COLO(2)
urxvt*color10: COLO(10)
urxvt*color3: COLO(3)
urxvt*color11: COLO(11)
urxvt*color4: COLO(4)
urxvt*color12: COLO(12)
urxvt*color5: COLO(5)
urxvt*color13: COLO(13)
urxvt*color6: COLO(6)
urxvt*color14: COLO(14)
urxvt*color7: COLO(7)
urxvt*color15: COLO(15)
! }}}
rxvt.font: xft:Inconsolata: // looks WONDERFUL in vim!
// Fantasque Sans is also an AWESOME font!
! {{{ X M E S S A G E - Setting
.xmessage.form.okay.shapeStyle: rectangle
.xmessage.form.okay.background: #777777
.xmessage.form.okay.foreground: snow
!xmessage*message*background: snow
xmessage*defaultButton: okay
Xmessage.form.message.Scroll: WhenNeeded
! }}}
! plan (pland) complains - idiot! (30,24)
plan*yearBoxWidth: 80
plan*yearBoxHeight: 40
#ifndef UXTERM_THEME
# define UXTERM_THEME theme_vypr
#endif
#undef THEME
#define THEME UXTERM_THEME
! {{{ UXterm
UXTerm*scrollBar: false
UXTerm*saveLines: 10000
UXTerm*vt100.metaSendsEscape: true
UXTerm.termName: uxterm
!UXTerm*font: -*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*
UXTerm*font: -dosemu-vga-medium-r-normal--20-200-75-75-c-100-ibm-cp866
!UXTerm*faceName: Anonymous Pro
!UXTerm*faceName: DejaVu Sans Mono
UXTerm*faceName: Liberation Mono
UXTerm*background: BG()
UXTerm*foreground: FG()
UXTerm*color0: COLO(0)
UXTerm*color8: COLO(8)
UXTerm*color1: COLO(1)
UXTerm*color9: COLO(9)
UXTerm*color2: COLO(2)
UXTerm*color10: COLO(10)
UXTerm*color3: COLO(3)
UXTerm*color11: COLO(11)
UXTerm*color4: COLO(4)
UXTerm*color12: COLO(12)
UXTerm*color5: COLO(5)
UXTerm*color13: COLO(13)
UXTerm*color6: COLO(6)
UXTerm*color14: COLO(14)
UXTerm*color7: COLO(7)
UXTerm*color15: COLO(15)
! }}}
#ifndef XTERM_THEME
# define XTERM_THEME theme_molokai
#endif
#undef THEME
#define THEME XTERM_THEME
! {{{ XTerm
! "faceName" is the xft for "font"
XTerm*faceName: xft:Bitstream Vera Sans Mono:autohint=true:size=11
XTerm*highlightSelection: true
XTerm*background: BG()
XTerm*foreground: FG()
XTerm*underlineColor: COLO(4)
XTerm*colorBD: COLO(7)
XTerm*colorIT: black
XTerm*colorUL: COLO(4)
XTerm*color0: COLO(0)
XTerm*color8: COLO(8)
XTerm*color1: COLO(1)
XTerm*color9: COLO(9)
XTerm*color2: COLO(2)
XTerm*color10: COLO(10)
XTerm*color3: COLO(3)
XTerm*color11: COLO(11)
XTerm*color4: COLO(4)
XTerm*color12: COLO(12)
XTerm*color5: COLO(5)
XTerm*color13: COLO(13)
XTerm*color6: COLO(6)
XTerm*color14: COLO(14)
XTerm*color7: COLO(7)
XTerm*color15: COLO(15)
! bold => bright
xterm*boldMode: false
! }}}
! ok; now default theme!
#define DEFAULT_THEME theme_skwid
#ifndef DEFAULT_THEME
//# define DEFAULT_THEME theme_mono1 // mono1: grep --color
//# define DEFAULT_THEME theme_mono2 // mono2: lynx/links
#define DEFAULT_THEME theme_unix4life
#endif
#undef THEME
#define THEME DEFAULT_THEME
! yadda yadda {{{
*background: BG()
*foreground: FG()
*color0: COLO(0)
*color8: COLO(8)
*color1: COLO(1)
*color9: COLO(9)
*color2: COLO(2)
*color10: COLO(10)
*color3: COLO(3)
*color11: COLO(11)
*color4: COLO(4)
*color12: COLO(12)
*color5: COLO(5)
*color13: COLO(13)
*color6: COLO(6)
*color14: COLO(14)
*color7: COLO(7)
*color15: COLO(15)
! }}}
! /usr/share/doc/ratmenu/Xresources.ratmenu {{{
! Look in /etc/X11/rgb.txt for supported color names
ratmenu*fgcolor: yellow
ratmenu*bgcolor: blue
! Look in /etc/X11/fonts/*/*.alias for possible fonts */
!ratmenu*font: -dosemu-vga-medium-r-normal--20-200-75-75-c-100-ibm-cp866
!ratmenu*font: vga
ratmenu*font: fixed
! Possible values: snazzy, dreary
ratmenu*style: dreary
! Possible values: true, false
ratmenu*persist: false
! Possible values: left, center, right
ratmenu*align: right
! }}}
! oclock default resources - according to the manpage;
//! if I run oclock without options/resources it's all black (^^)
// a '!' comment can't have an apostrophe, it counts as a quote!
Clock*Background: grey
Clock*BorderColor: light blue
Clock*hour: yellow
Clock*jewel: yellow
Clock*minute: yellow
@loreb
Copy link
Author

loreb commented Apr 10, 2015

UPDATE: my google-fu sucks! after googling something like what I wanted, writing it from scratch and converting the old themes, I noticed I googled "xterm bright theme" and found the awesome https://github.com/mbadolato/iTerm2-Color-Schemes/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment