# 這個是要用default engine來實現black-white，但是目前仍有些不完美

gtk_font_name = "Sans 16"

style "bg"
{
 fg[NORMAL]        = "#FFFFFF" #Main window text
  fg[PRELIGHT]      = "#FFFFFF" #Highlighted widget text
  fg[ACTIVE]        = "#FFFFFF" #Inactive widget text
  fg[SELECTED]      = "#c58400" #?#E9E9E9
  fg[INSENSITIVE]   = "#FFFFFF" #CAN'T TOUCH DIS -[EDIT] I did (bvc)

  bg[NORMAL]        = "#000000" #Backround
  bg[PRELIGHT]      = "#d2ff00" #Highlight Widget
  bg[ACTIVE]        = "#384865" #Selected Widget
  bg[SELECTED]      = "#384865" #The box words are usually in @_@!
  bg[INSENSITIVE]   = "#4e4e4e" #Can't touch this! Nuh nuh nuh nuh
  
  base[NORMAL]      = "#000000" # 文字編輯區域或勾選處的背景顏色。
  base[PRELIGHT]    = "#92b6f4" #  滑鼠移至「勾選處」上方時變成這個選色
  base[ACTIVE]      = "#3b588c" #Unfocused Select
  base[SELECTED]    = "#6284c0" #Selected Text area item, and that bar over the tabs.
  base[INSENSITIVE] = "#696969" #Haven't got a clue

  text[NORMAL]      = "#FFFFFF" # Text area widget text.
  text[PRELIGHT]    = "#6284c0" #?
  text[ACTIVE]      = "#FFFFFF" #?
  text[SELECTED]    = "#222222" #Selected Text area widget text.
  text[INSENSITIVE] = "#969696" #CAN'T TOUCH DIS -[EDIT] I did (bvc)
}

style "button"
{
  engine "pixmap" {
    image 
      {
        function        = BOX
	recolorable     = TRUE
	file            = "button.png"
	stretch         = TRUE
#	stretch         = FALSE
      }
     image 
      {
        function        = FLAT_BOX
	recolorable     = TRUE
	file            = "button.png"
	border          = { 1,1,1,1 }
#	stretch         = TRUE
	stretch         = FALSE
      }
}
}


style "gcin-setup-list"
{
  engine "pixmap" {
     image 
      {
        function        = FLAT_BOX
	recolorable     = TRUE
	file            = "list_bg.png"
	border          = { 1,1,1,1 }
	stretch         = TRUE
#	stretch         = FALSE #（用這個會導致gcin-setup看不到輸入法icon）
      }

}
}

#目前這個寫法只得到一個黑底白字的輸入框，沒有白邊框
widget_class "GtkWindow*" style "bg"
#widget_class "GtkWindow.GtkFrame.GtkVBox.GtkHBox.GtkEventBox*" style "bg"
widget "GtkWindow.GtkFrame.GtkVBox.GtkHBox.GtkEventBox.GtkFrame" style "bg"
#widget_class "GtkWindow.GtkFrame.GtkVBox.GtkHBox.GtkButton*" style "bg"

#class "GtkTreeView"          style "gcin-setup-list"
#class "GtkWidget"          style "bg"
#class "GtkButton"          style "button"
