style "button" 
{
	xthickness = 4
	ythickness = 4
	fg[NORMAL] = @text_color
	fg[PRELIGHT] = @text_color
	fg[ACTIVE] = @text_color
	fg[INSENSITIVE] = mix (0.3, @base_color, @text_color)
  engine "pixmap"
  {
		image
		{
			function		= BOX
			recolorable		= TRUE
			detail			= "buttondefault"
			file			= "Buttons/button-default.png"
			border			= { 0, 0, 0, 0}
			stretch			= TRUE
		}
    image
    {
      function			= BOX
      state				= PRELIGHT
      recolorable		= TRUE
      shadow			= OUT
      file				= "Buttons/button-prelight.png"
      border			= { 0, 0, 0, 0 }
      stretch			= TRUE
    }
    image
    {
      function			= BOX
      state				= PRELIGHT
      recolorable		= TRUE
      shadow			= IN
      file				= "Buttons/button-pressed.png"
      border			= { 0, 0, 0, 0 }
      stretch			= TRUE
    }
    image
    {
      function			= BOX
      state				= ACTIVE
      file				= "Buttons/button-pressed.png"
      border			= { 0, 0, 0, 0 }
      stretch			= TRUE
    }	
    image 
   {
     function			= BOX
     state				= INSENSITIVE
     file					= "Buttons/button-insensitive.png"
     border			= { 0, 0, 0, 0 }
     stretch			= TRUE
    }
    image 
    {
      function			= BOX
      file				= "Buttons/button-normal.png"		
      border			= { 0, 0, 0, 0 }
      stretch			= TRUE
     }	
  }
}
widget_class "*.<GtkButton>.*"		style "button"
class "GtkButton"	style "button"
widget_class "*GtkToggleButton*"   style "button"

