/usr/share/themes/CleanIce-Marble/gtk-2.0/gtkrc is in gtk2-engines-cleanice 2.4.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # CleanIce-Marble Theme, inspired by a dark theme of a similar name.
# Author: Stanislav Maslovski <stanislav.maslovski@gmail.com>
# License: GNU GPL version 2 or later (/usr/share/common-licenses/GPL-2 on Debian).
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#DADAD4\nbg_color:#5A5C5F\nbase_color:#000\ntext_color:#E2E2E2\nselected_bg_color:#424446\nselected_fg_color:#E2E2E2\ntooltip_bg_color:#5A5C5F\ntooltip_fg_color:#CACAC6"
style "default"
{
########
# Style Properties
########
GtkEntry::cursor_color = "#FFCE00"
GtkTextView::cursor_color = "#FFCE00"
NautilusIconContainer::frame_text = 1
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = darker (@bg_color)
bg[NORMAL] = @bg_color
bg[PRELIGHT] = shade (1.17, @bg_color)
bg[SELECTED] = @selected_bg_color
bg[INSENSITIVE] = @bg_color
bg[ACTIVE] = shade (0.8, @bg_color)
base[NORMAL] = @base_color
base[PRELIGHT] = shade (1.11, @bg_color)
base[ACTIVE] = shade (1.36, @selected_bg_color)
base[SELECTED] = @selected_bg_color
base[INSENSITIVE] = @bg_color
text[NORMAL] = @text_color
text[PRELIGHT] = @text_color
text[ACTIVE] = @selected_fg_color
text[SELECTED] = @selected_fg_color
text[INSENSITIVE] = darker (@bg_color)
engine "cleanice" { }
}
class "GtkWidget" style "default"
|