######################################################################### # # # File di configurazione della GTK+ # # # ######################################################################### ############################################################## # # definizione della tonalita' azzurro # imposta lo stile generico delle finestre style "window_azzurro" { bg[NORMAL]={0.0,0.666,1.0} } # imposta lo stile generico dei widget style "widget_azzurro" { bg[NORMAL]={0.2,0.73,1.0} bg[PRELIGHT]={0.35,0.78,1.0} bg[ACTIVE]={0.0,0.46,0.70} } # ############################################################## ############################################################## # # definizione della tonalita' arancione # imposta lo stile generico delle finestre style "window_arancio" { bg[NORMAL]={1.0,0.36,0.0} } # imposta lo stile generico dei widget style "widget_arancio" { bg[NORMAL]={1.0,0.49,0.20} bg[PRELIGHT]={1.0,0.62,0.40} bg[ACTIVE]={0.65,0.24,0.0} } # ############################################################## ############################################################## # # definizione della tonalita' rosso # Questo stile viene di solito utilizzato per # evidenziale il tasto di uscita. # imposta lo stile del bottone di uscita style "button_rosso" { bg[NORMAL]={1.0,0.2,0.2} bg[PRELIGHT]={1.0,0.4,0.4} bg[ACTIVE]={0.65,0.0,0.0} } # ############################################################## ############################################################## # # assegnazione dei colori # imposta lo stile azzurro widget_class "GtkWindow" style "window_azzurro" widget_class "main_window.*.*" style "widget_azzurro" # imposta lo stile arancione # widget_class "GtkWindow" style "window_arancione" # widget_class "main_window.*.*" style "widget_arancione" # imposta lo stile del tasto di uscita # widget "GtkWindow.*.exit_button" style "button_rosso" widget "main_window.*.exit_button" style "button_rosso" # ##############################################################