25 lines
678 B
Plaintext
25 lines
678 B
Plaintext
# Define background for msfconsole
|
|
|
|
# For a black background
|
|
style "console"
|
|
{
|
|
# base[NORMAL] = { 0.0, 0.0, 0.0 } # black
|
|
# fg[NORMAL] = { 1.0, 1.0, 1.0 } # white
|
|
# text[NORMAL] = { 1.0, 1.0, 1.0 } # white
|
|
|
|
base[NORMAL] = { 1.0, 1.0, 1.0 } # white
|
|
fg[NORMAL] = { 0.0, 0.0, 0.0 } # black
|
|
text[NORMAL] = { 0.0, 0.0, 0.0 } # black
|
|
fontset="-*-lucida-medium-r-*-*-14-*-*-*-*-*-*-*"
|
|
}
|
|
|
|
|
|
# For the cursor
|
|
style "white-cursor" {
|
|
GtkTextView::cursor-color = "white"
|
|
}
|
|
|
|
# Attach style with the specific widget name
|
|
widget_class "GtkWindow.GtkVBox.GtkScrolledWindow.GtkTextView" style "console"
|
|
widget_class "GtkWindow.GtkVBox.GtkScrolledWindow.GtkTextView" style "white-cursor"
|