diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-04-06 17:27:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-04-06 17:27:16 +0000 |
commit | 4b5f9a0375c4c3b72b19f501b8a8383fdd39f6ac (patch) | |
tree | d49c1655880e29385024d7941bbb964b03c3e960 /perl-install/share/themes-mdk.rc | |
parent | 658f028abc50486955e99d7083cdff8e07088e6f (diff) | |
download | drakx-4b5f9a0375c4c3b72b19f501b8a8383fdd39f6ac.tar drakx-4b5f9a0375c4c3b72b19f501b8a8383fdd39f6ac.tar.gz drakx-4b5f9a0375c4c3b72b19f501b8a8383fdd39f6ac.tar.bz2 drakx-4b5f9a0375c4c3b72b19f501b8a8383fdd39f6ac.tar.xz drakx-4b5f9a0375c4c3b72b19f501b8a8383fdd39f6ac.zip |
no_comment
Diffstat (limited to 'perl-install/share/themes-mdk.rc')
-rw-r--r-- | perl-install/share/themes-mdk.rc | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/perl-install/share/themes-mdk.rc b/perl-install/share/themes-mdk.rc new file mode 100644 index 000000000..c9e31fc62 --- /dev/null +++ b/perl-install/share/themes-mdk.rc @@ -0,0 +1,125 @@ +style "checkradiobutton" { + engine "pixmap" { + image + { + function = CHECK + recolorable = TRUE + shadow = OUT + overlay_file = "mdk-check_off.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + shadow = IN + overlay_file = "mdk-check_on.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + shadow = OUT + overlay_file = "mdk-toggle_off.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + shadow = IN + overlay_file = "mdk-toggle_on.png" + overlay_stretch = FALSE + } + image + { + function = FOCUS + recolorable = TRUE + overlay_file = "focus.png" + overlay_border = { 4, 4, 4, 4 } + overlay_stretch = TRUE + } + } +} + +style "window" +{ + engine "pixmap" { + image + { + function = FLAT_BOX + recolorable = TRUE + file = "mdk-bg.png" + stretch = FALSE + } + } +} + +style "any" +{ + base[NORMAL] = { 0.2, 0.2, 0.4 } + bg[NORMAL] = { 0.2, 0.2, 0.4 } + bg[INSENSITIVE] = { 0.6, 0.6, 0.8 } + base[INSENSITIVE]={ 0.6, 0.6, 0.8 } + bg[ACTIVE] = { 0.6, 0.6, 0.8 } + bg[PRELIGHT] = { 0.4, 0.4, 0.6 } + + text[NORMAL] = { 1.0, 1.0, 1.0 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } + fg[INSENSITIVE] = { 1.0, 1.0, 1.0 } + text[INSENSITIVE]={ 1.0, 1.0, 1.0 } + fg[ACTIVE] = { 1.0, 1.0, 1.0 } + fg[PRELIGHT] = { 1.0, 1.0, 1.0 } + + bg[SELECTED] = { 1.0, 1.0, 1.0 } + fg[SELECTED] = { 0.2, 0.2, 0.4 } +} + +style "entry" +{ + base[NORMAL] = { 0.4, 0.4, 0.6 } + base[ACTIVE] = { 0.4, 0.4, 0.6 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } +} + +style "notebook" +{ + bg[NORMAL] = { 0, 0, 1.0 } + bg[ACTIVE] = { 0, 0, 0.67 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } +} + +style "button" = "any" +{ + bg[NORMAL] = { 0.4, 0.4, 0.6 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } + bg[PRELIGHT] = { 0.36, 0.36, 0.56 } + fg[PRELIGHT] = { 0.8, 0.8, 1.0 } +} + +style "background" +{ + bg[NORMAL] = { 0.6, 0.6, 0.8 } + bg[PRELIGHT] = { 0.8, 0.8, 0.99 } +} + +style "steps" +{ + bg[NORMAL] = { 0.4, 0.4, 0.6 } + fg[NORMAL] = { 1.0, 1.0, 1.0 } +} + +widget_class "GtkWindow" style "window" +widget_class "*" style "any" +widget_class "*GtkSpin*" style "entry" +widget_class "*GtkEntry*" style "entry" +widget_class "*Gtk*List*" style "entry" +widget_class "*GtkCTree*" style "entry" +widget_class "*GtkNotebook*" style "notebook" +widget "*GtkButton*" style "button" +widget "*background*" style "background" +widget "*Steps*" style "steps" + +class "GtkRadioButton" style "checkradiobutton" +class "GtkCheckButton" style "checkradiobutton" |