/gtk-2.0/apps/terminal.rc
Windows Resource File | 49 lines | 45 code | 4 blank | 0 comment | 0 complexity | 26edbca0a8e721d4c7fe2cd856f6008e MD5 | raw file
1style "terminal" = "murrine-dark" 2{ 3 bg[NORMAL] = @text_color 4 bg[ACTIVE] = @text_color 5 bg[PRELIGHT] = @text_color 6 bg[SELECTED] = @text_color 7 base[NORMAL] = @text_color 8} 9 10style "terminal-screen" = "murrine-dark" 11{ 12 base[NORMAL] = @text_color 13 bg[NORMAL] = @selected_fg_color 14 bg[PRELIGHT] = shade (0.7, @selected_fg_color) 15 TerminalScreen::background-darkness = 0.75 16} 17 18style "terminal-scrollbar" 19{ 20 engine "murrine" { 21 gradient_shades = {2.5,2.5,2.5,2.5} 22 glowstyle = 0 23 trough_shades = { 0.1, 0.1} 24 border_shades = { 0.1, 0.1} 25 prelight_shade = 1.35 26 contrast = 0.0 27 } 28} 29 30style "terminal-notebook" = "murrine-dark" 31{ 32 bg[NORMAL] = shade (0.0, @text_color_dark) # Tab background. 33 bg[ACTIVE] = shade (0.2, @text_color_dark) # Unfocused tab background. 34 bg[PRELIGHT] = shade (0.1, @selected_fg_color) 35 base[NORMAL] = @text_color 36 fg[NORMAL] = "#fff" 37 fg[ACTIVE] = "#fff" 38 engine "murrine" 39 { 40 roundness = 0 41 contrast = 0.1 42 prelight_shade = 1.5 43 } 44} 45 46class "*TerminalWindow" style "terminal" 47#widget_class "TerminalWindow*GtkNotebook" style "terminal-notebook" 48widget "*TerminalWindow.*.GtkVScrollbar" style "terminal-scrollbar" 49widget "*TerminalWindow.*.TerminalScreen*" style "terminal-screen"