
# style for parent widgets
style "parent_style" = "default"
{
	bg[NORMAL] = { 0.6, 0.6, 0.9 }
	bg[PRELIGHT] = { 0.8, 0.8, 1 }
	bg[ACTIVE] = { 0.6, 0.6, 0.9 }
	bg[SELECTED] = { 0.6, 0.6, 0.9 }
	bg[INSENSITIVE] = { 0.4, 0.4, 0.7 }
}

# style for child widgets
style "child_style" = "default"
{
	bg[NORMAL] = { 0.4, 0.4, 0.8 }
	bg[PRELIGHT] = { 0.6, 0.6, 1 }
	bg[ACTIVE] = { 0.4, 0.4, 0.8 }
	bg[SELECTED] = { 0.4, 0.4, 0.8 }
	bg[INSENSITIVE] = { 0.2, 0.2, 0.6 }
}

# style for selected widgets
style "selected_style" = "default"
{
	bg[NORMAL] = { 0.1, 0.7, 0.6 }
	bg[PRELIGHT] = { 0.2, 0.8, 0.7 }
	bg[ACTIVE] = { 0.1, 0.7, 0.6 }
	bg[SELECTED] = { 0.1, 0.7, 0.6 }
	bg[INSENSITIVE] = { 0, 0.4, 0.3 }
}

# style for widgets with errors in them
style "error_style" = "default"
{
	bg[NORMAL] = { 0.8, 0.3, 0.3 }
	bg[PRELIGHT] = { 0.9, 0.4, 0.4 }
	bg[ACTIVE] = { 0.8, 0.3, 0.3 }
	bg[SELECTED] = { 0.8, 0.3, 0.3 }
	bg[INSENSITIVE] = { 0.5, 0.1, 0.1 }
}

# style for dirty widgets (need recalculation)
style "dirty_style" = "default"
{
	bg[NORMAL] = { 0.7, 0.5, 0.1 }
	bg[PRELIGHT] = { 0.8, 0.6, 0.2 }
	bg[ACTIVE] = { 0.7, 0.5, 0.1 }
	bg[SELECTED] = { 0.7, 0.5, 0.1 }
	bg[INSENSITIVE] = { 0.5, 0.3, 0 }
}

# style for centre button in a set ot toggles
style "centre_style" = "default"
{
	bg[NORMAL] = { 0.75, 0.6, 0.6 }
	bg[PRELIGHT] = { 0.85, 0.7, 0.7 }
	bg[ACTIVE] = { 0.75, 0.6, 0.6 }
	bg[SELECTED] = { 0.75, 0.6, 0.6 }
	bg[INSENSITIVE] = { 0.55, 0.4, 0.4 }
}

# style for tooltips
style "tooltip_style" = "default"
{
	font = "-adobe-helvetica-medium-r-*-*-*-100-*-*-*-*-*-*"
	bg[NORMAL] = { 0.9, 0.8, 0.5 }
}

widget "*parent_widget" style "parent_style"
widget "*child_widget" style "child_style"
widget "*selected_widget" style "selected_style"
widget "*error_widget" style "error_style"
widget "*dirty_widget" style "dirty_style"
widget "*tooltip_widget" style "tooltip_style"
widget "*caption_widget" style "tooltip_style"
widget "*centre_widget" style "centre_style"
