# This is an example .gtkrc-2.0 for customizing the default values for
# Guifications.
#
# This example shows how to set the default background color and shows
# how to use a textured background, although it is commented out. Just
# read the comments and you'll be fine.

# First we need to define our style.  This is the setting that we want to
# change.
style "gf" {
	# We'll pick a big font here just for the sake of clarity.
	font_name = "Sans 24"

	# Here we set our text color.  The color works just like HTML colors,
	# making this black.
	fg[NORMAL] = "#000000"

	# Now let's set our background to a nice gray.
	bg[NORMAL] = "#CFCFCF"

	# This is how we would set our background to a textured image.
	#bg_pixmap[NORMAL] = "some_image.png"
}

# And finally, let's tell gtk what widgets we want to use our new style.
widget "*guifications" style "gf"