diff options
author | raveit65 <[email protected]> | 2018-04-16 20:52:47 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-19 23:01:37 +0200 |
commit | e1d740e726ed8dfa1e136c75e51ea9192b4dfb0a (patch) | |
tree | 62f427a3c6e415a18a89d481e5cb1229dec2840a /desktop-themes/HighContrastInverse | |
parent | f429af3626f8c464ce89f815f93cf447ca0db2c9 (diff) | |
download | mate-themes-e1d740e726ed8dfa1e136c75e51ea9192b4dfb0a.tar.bz2 mate-themes-e1d740e726ed8dfa1e136c75e51ea9192b4dfb0a.tar.xz |
use HighContrastInverse theme from gtk+
Diffstat (limited to 'desktop-themes/HighContrastInverse')
135 files changed, 591 insertions, 0 deletions
diff --git a/desktop-themes/HighContrastInverse/Makefile.am b/desktop-themes/HighContrastInverse/Makefile.am new file mode 100644 index 00000000..3cce48c2 --- /dev/null +++ b/desktop-themes/HighContrastInverse/Makefile.am @@ -0,0 +1,16 @@ +THEME_NAME=HighContrastInverse +THEME_IN_FILES=index.theme.in + +@INTLTOOL_THEME_RULE@ + +themedir = $(datadir)/themes/$(THEME_NAME) + +theme_DATA = index.theme + +SUBDIRS = \ + gtk-2.0 \ + metacity-1 \ + pixmaps + +DISTCLEANFILES=index.theme +EXTRA_DIST=index.theme.in diff --git a/desktop-themes/HighContrastInverse/gtk-2.0/Makefile.am b/desktop-themes/HighContrastInverse/gtk-2.0/Makefile.am new file mode 100644 index 00000000..fd52b180 --- /dev/null +++ b/desktop-themes/HighContrastInverse/gtk-2.0/Makefile.am @@ -0,0 +1,5 @@ +themedir = $(datadir)/themes/HighContrastInverse/gtk-2.0 + +theme_DATA = gtkrc + +EXTRA_DIST= $(theme_DATA) diff --git a/desktop-themes/HighContrastInverse/gtk-2.0/gtkrc.in b/desktop-themes/HighContrastInverse/gtk-2.0/gtkrc.in new file mode 100755 index 00000000..678f111f --- /dev/null +++ b/desktop-themes/HighContrastInverse/gtk-2.0/gtkrc.in @@ -0,0 +1,106 @@ +# High-Contrast Inverse, "Normal Size" Theme +# +# Original gtkrc by Bill Haneman, based on Standard theme by T. Liebeck, +# which was in turn based on lots of different gtkrc files but +# primarily the one for the metal theme. +# +# High-contrast pixmap icons by jimmac with input from tigert. + +#Note: we just use the LargePrint icons for now, they will be scaled +#to the correct size + +pixmap_path "@prefix@/share/themes/HighContrastInverse/pixmaps" + +#TODO: move sun-jds style downstream +style "sun-jds" +{ + PanelMenu::stripe-gradient-top = "#000033" + PanelMenu::stripe-gradient-bottom = "#000033" +} +class "GtkWidget" style "sun-jds" + +style "default" +{ + engine "hcengine" { + edge_thickness = 2 + } + + xthickness = 2 + ythickness = 2 + + EelEditableLabel::cursor_aspect_ratio = 0.1 + EelEditableLabel::cursor_color = "#00cccc" + + GtkEntry::cursor_color = "#00cccc" + GtkEntry::cursor_aspect_ratio = 0.1 + + GtkHSV::focus-line-pattern = "\0" + + GtkRange::stepper-size = 20 + + GtkTextView::cursor_aspect_ratio = 0.1 + GtkTextView::cursor_color = "#00cccc" + + GtkTreeView::expander-size = 16 + +# GtkWidget::cursor_aspect_ratio = 0.1 + GtkWidget::focus-line-pattern = "\4\2" + GtkWidget::focus-line-width = 0 + GtkWidget::focus-padding = 0 + GtkWidget::interior_focus = 1 + GtkWidget::link-color = "#80ccff" + GtkWidget::visited-link-color = "#ff80ff" + + # Caja + CajaIconContainer::frame_text = 1 + + # Pidgin + GtkIMHtml::hyperlink-color = "#80ccff" + GtkIMHtml::hyperlink-visited-color = "#ff80ff" + GtkIMHtml::hyperlink-prelight-color = "#ffccff" + + # Evolution + GtkHTML::link_color = "#80ccff" + GtkHTML::vlink_color = "#ff80ff" + GtkHTML::cite_color = "#ccff80" + + fg[NORMAL] = "#ffffff" + text[NORMAL] = "#ffffff" + bg[NORMAL] = "#000000" + base[NORMAL] = "#000000" + + fg[INSENSITIVE] = "#999999" + bg[INSENSITIVE] = "#333333" + text[INSENSITIVE] = "#999999" + base[INSENSITIVE] = "#333333" + + fg[PRELIGHT] = "#ffffff" + text[PRELIGHT] = "#003333" + bg[PRELIGHT] = "#666699" + base[PRELIGHT] = "#003333" + + fg[ACTIVE] = "#ffffff" + text[ACTIVE] = "#ffffff" + bg[ACTIVE] = "#666699" + base[ACTIVE] = "#666699" + + fg[SELECTED] = "#000033" + text[SELECTED] = "#000033" + bg[SELECTED] = "#ffffff" + base[SELECTED] = "#ffcccc" + +@gtk_stock_icons_rc@ +@panel_stock_icons_rc@ +@media_stock_icons_rc@ +@capplet_stock_icons_rc@ +@marco_stock_icons_rc@ + +#caja improvements + +style "caja-location" +{ + bg[NORMAL] = "#000000" +} + +widget "*.caja-extra-view-widget" style : highest "caja-location" + diff --git a/desktop-themes/HighContrastInverse/index.theme.in b/desktop-themes/HighContrastInverse/index.theme.in new file mode 100644 index 00000000..e53d34fe --- /dev/null +++ b/desktop-themes/HighContrastInverse/index.theme.in @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +_Name=High Contrast Inverse +_Comment=White-on-black text and icons +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=HighContrastInverse +IconTheme=ContrastHigh +MetacityTheme=HighContrastInverse +CursorTheme=mate +CursorSize=24 diff --git a/desktop-themes/HighContrastInverse/metacity-1/Makefile.am b/desktop-themes/HighContrastInverse/metacity-1/Makefile.am new file mode 100644 index 00000000..597c9863 --- /dev/null +++ b/desktop-themes/HighContrastInverse/metacity-1/Makefile.am @@ -0,0 +1,7 @@ +THEME_NAME=HighContrastInverse + +themedir = $(datadir)/themes/$(THEME_NAME)/metacity-1 + +theme_DATA = metacity-theme-1.xml + +EXTRA_DIST = $(theme_DATA) diff --git a/desktop-themes/HighContrastInverse/metacity-1/metacity-theme-1.xml b/desktop-themes/HighContrastInverse/metacity-1/metacity-theme-1.xml new file mode 100644 index 00000000..9129356a --- /dev/null +++ b/desktop-themes/HighContrastInverse/metacity-1/metacity-theme-1.xml @@ -0,0 +1,350 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>HighContrastInverse</name> + <author>Havoc Pennington <[email protected]></author> + <copyright>Â Havoc Pennington, 2002</copyright> + <date>February 3, 2002</date> + <description>Simple low-overhead default theme that comes with Metacity.</description> +</info> + +<frame_geometry name="normal"> + <distance name="left_width" value="6"/> + <distance name="right_width" value="6"/> + <distance name="bottom_height" value="7"/> + <distance name="left_titlebar_edge" value="6"/> + <distance name="right_titlebar_edge" value="6"/> + <aspect_ratio name="button" value="1.0"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="3" right="4" top="4" bottom="3"/> + <border name="button_border" left="0" right="0" top="1" bottom="1"/> +</frame_geometry> + +<!-- strip borders off the normal geometry --> +<frame_geometry name="normal_small_borders" parent="normal"> + <distance name="left_width" value="0"/> + <distance name="right_width" value="0"/> + <distance name="bottom_height" value="0"/> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> +</frame_geometry> + +<frame_geometry name="utility" title_scale="xx-small"> + <distance name="left_width" value="3"/> + <distance name="right_width" value="3"/> + <distance name="bottom_height" value="4"/> + <distance name="left_titlebar_edge" value="3"/> + <distance name="right_titlebar_edge" value="3"/> + <distance name="button_width" value="11"/> + <distance name="button_height" value="11"/> + <distance name="title_vertical_pad" value="1"/> + <border name="title_border" left="3" right="4" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="1" bottom="1"/> +</frame_geometry> + +<frame_geometry name="border" has_title="false"> + <distance name="left_width" value="4"/> + <distance name="right_width" value="4"/> + <distance name="bottom_height" value="4"/> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="button_width" value="0"/> + <distance name="button_height" value="0"/> + <distance name="title_vertical_pad" value="4"/> + <border name="title_border" left="0" right="0" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<!-- define constants --> +<constant name="ArrowSpacer" value="8"/> +<constant name="MinArrowSize" value="7"/> +<constant name="ButtonIPad" value="6"/> +<constant name="ThickLineWidth" value="3"/> +<constant name="IconTitleSpacing" value="2"/> +<constant name="SpacerWidth" value="6"/> +<constant name="SpacerHeight" value="9"/> +<constant name="SpacerOffset" value="4"/> + +<!-- Buttons --> + +<draw_ops name="button_pressed_bg"> + <gtk_box state="active" shadow="in" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="menu_button"> + <gtk_arrow state="normal" shadow="out" arrow="down" + x="ArrowSpacer `min` (width-MinArrowSize)/2" + y="ArrowSpacer `min` (height-MinArrowSize)/2" + width="(width-(ArrowSpacer*2)) `max` MinArrowSize" + height="(height-(ArrowSpacer*2)) `max` MinArrowSize"/> +</draw_ops> + +<draw_ops name="menu_button_pressed"> + <include name="menu_button"/> +</draw_ops> + +<draw_ops name="minimize_button"> + <line color="gtk:fg[NORMAL]" + x1="ButtonIPad" + y1="height - ButtonIPad - ThickLineWidth + 1" + x2="width - ButtonIPad" + y2="height - ButtonIPad - ThickLineWidth + 1" + width="3"/> <!-- FIXME allow a constant here --> +</draw_ops> + +<draw_ops name="minimize_button_pressed"> + <include name="minimize_button"/> +</draw_ops> + +<draw_ops name="maximize_button"> + <rectangle color="gtk:fg[NORMAL]" filled="false" + x="ButtonIPad" y="ButtonIPad" width="width-ButtonIPad*2-1" height="height-ButtonIPad*2-1"/> + <line color="gtk:fg[NORMAL]" width="3" + x1="ButtonIPad" y1="ButtonIPad+1" x2="width-ButtonIPad" y2="ButtonIPad+1"/> +</draw_ops> + +<draw_ops name="maximize_button_pressed"> + <include name="maximize_button"/> +</draw_ops> + +<draw_ops name="mini_window_icon"> + <rectangle color="gtk:bg[NORMAL]" filled="true" + x="0" y="0" width="width-1" height="height-1"/> + <rectangle color="gtk:fg[NORMAL]" filled="false" + x="0" y="0" width="width-1" height="height-1"/> + <line color="gtk:fg[NORMAL]" width="2" + x1="0" y1="1" x2="width" y2="1"/> +</draw_ops> + +<draw_ops name="restore_button"> + <include name="mini_window_icon" + x="ButtonIPad" y="ButtonIPad" + width="width - 5 - ButtonIPad" + height="height - 5 - ButtonIPad"/> + <include name="mini_window_icon" + x="3 + ButtonIPad" y="3 + ButtonIPad" + width="width - 5 - ButtonIPad" + height="height - 5 - ButtonIPad"/> +</draw_ops> + +<draw_ops name="restore_button_pressed"> + <include name="restore_button"/> +</draw_ops> + +<draw_ops name="close_button"> + <line color="gtk:fg[NORMAL]" + x1="ButtonIPad" y1="ButtonIPad" + x2="width - ButtonIPad - 1" y2="height - ButtonIPad - 1" + width="1"/> + <line color="gtk:fg[NORMAL]" + x1="ButtonIPad" y1="height - ButtonIPad - 1" + x2="width - ButtonIPad - 1" y2="ButtonIPad" + width="1"/> +</draw_ops> + +<draw_ops name="close_button_pressed"> + <include name="close_button"/> +</draw_ops> + +<draw_ops name="outer_bevel"> + <rectangle color="gtk:fg[NORMAL]" + x="0" y="0" width="width-1" height="height-1"/> + <line color="gtk:light[NORMAL]" + x1="1" y1="1" x2="1" y2="height-2"/> + <line color="gtk:light[NORMAL]" + x1="1" y1="1" x2="width-2" y2="1"/> + <line color="gtk:dark[NORMAL]" + x1="width-2" y1="1" x2="width-2" y2="height-2"/> + <line color="gtk:dark[NORMAL]" + x1="1" y1="height-2" x2="width-2" y2="height-2"/> +</draw_ops> + +<draw_ops name="blank"> +<!-- nothing --> +</draw_ops> + +<draw_ops name="focus_outline"> + <rectangle color="gtk:fg[NORMAL]" + x="left_width-1" y="top_height-1" + width="width-left_width-right_width+1" + height="height-top_height-bottom_height+1"/> +</draw_ops> + +<draw_ops name="focus_background"> + <include name="outer_bevel"/> + <include name="focus_outline"/> +</draw_ops> + +<draw_ops name="background_unfocused"> + <include name="outer_bevel"/> + <include name="focus_outline"/> +</draw_ops> + +<draw_ops name="title_gradient"> + <gradient type="diagonal" x="0" y="0" width="width-SpacerWidth" height="height"> + <color value="#666699"/> + <color value="#666699"/> + </gradient> +</draw_ops> + +<draw_ops name="title_spacer"> + <gtk_vline state="normal" x="width+1-SpacerWidth/2" + y1="SpacerOffset" + y2="height - SpacerOffset"/> +</draw_ops> + +<draw_ops name="title_text_focused_with_icon"> + <clip x="0" y="0" width="width-SpacerWidth" height="height"/> + <title color="#000000" + x="(0 `max` (width-title_width-mini_icon_width-IconTitleSpacing)) / 2 + mini_icon_width + IconTitleSpacing" + y="((height - title_height) / 2) `max` 0"/> + <icon x="(0 `max` (width-title_width-mini_icon_width-IconTitleSpacing)) / 2" + y="(height-mini_icon_height) / 2" + width="mini_icon_width" height="mini_icon_height"/> +</draw_ops> + +<draw_ops name="title_text_focused_no_icon"> + <clip x="0" y="0" width="width-SpacerWidth" height="height"/> + <title color="gtk:fg[SELECTED]" + x="(0 `max` (width-title_width)) / 2" + y="((height - title_height) / 2) `max` 0"/> +</draw_ops> + +<draw_ops name="title_text_with_icon"> + <clip x="0" y="0" width="width-SpacerWidth" height="height"/> + <title color="gtk:fg[NORMAL]" + x="(0 `max` (width-title_width-mini_icon_width-IconTitleSpacing)) / 2 + mini_icon_width + IconTitleSpacing" + y="((height - title_height) / 2) `max` 0"/> + <icon x="(0 `max` (width-title_width-mini_icon_width-IconTitleSpacing)) / 2" + y="(height-mini_icon_height) / 2" + width="mini_icon_width" height="mini_icon_height"/> +</draw_ops> + +<draw_ops name="title_text_no_icon"> + <clip x="0" y="0" width="width-SpacerWidth" height="height"/> + <title color="gtk:fg[NORMAL]" + x="(0 `max` (width-title_width)) / 2" + y="((height - title_height) / 2) `max` 0"/> +</draw_ops> + +<draw_ops name="title_normal"> + <include name="title_spacer"/> + <include name="title_text_with_icon"/> +</draw_ops> + +<draw_ops name="title_focused"> + <include name="title_gradient"/> + <include name="title_spacer"/> + <include name="title_text_focused_with_icon"/> +</draw_ops> + +<draw_ops name="title_utility"> + <include name="title_spacer"/> + <include name="title_text_no_icon"/> +</draw_ops> + +<draw_ops name="title_utility_focused"> + <include name="title_gradient"/> + <include name="title_spacer"/> + <include name="title_text_focused_no_icon"/> +</draw_ops> + +<frame_style name="normal_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="background_unfocused"/> + <piece position="title" draw_ops="title_normal"/> + + <!-- we don't specify for prelight, so normal is used --> + <button function="left_left_background" state="pressed" draw_ops="button_pressed_bg"/> + <button function="left_middle_background" state="pressed" draw_ops="button_pressed_bg"/> + <button function="left_right_background" state="pressed" draw_ops="button_pressed_bg"/> + <button function="right_left_background" state="pressed" draw_ops="button_pressed_bg"/> + <button function="right_middle_background" state="pressed" draw_ops="button_pressed_bg"/> + <button function="right_right_background" state="pressed" draw_ops="button_pressed_bg"/> + + <button function="close" state="normal" draw_ops="close_button"/> + <button function="close" state="pressed" draw_ops="close_button_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_button"/> + <button function="minimize" state="pressed" draw_ops="minimize_button_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_button"/> + <button function="maximize" state="pressed" draw_ops="maximize_button_pressed"/> + <button function="menu" state="normal" draw_ops="menu_button"/> + <button function="menu" state="pressed" draw_ops="menu_button_pressed"/> +</frame_style> + +<frame_style name="normal_focused" geometry="normal" parent="normal_unfocused"> + <piece position="entire_background" draw_ops="focus_background"/> + <piece position="title" draw_ops="title_focused"/> +</frame_style> + +<frame_style name="maximized_unfocused" geometry="normal_small_borders" parent="normal_unfocused"> + <piece position="entire_background" draw_ops="blank"/> + <button function="maximize" state="normal" draw_ops="restore_button"/> + <button function="maximize" state="pressed" draw_ops="restore_button_pressed"/> +</frame_style> + +<frame_style name="maximized_focused" geometry="normal_small_borders" parent="normal_focused"> + <piece position="entire_background" draw_ops="focus_outline"/> + <button function="maximize" state="normal" draw_ops="restore_button"/> + <button function="maximize" state="pressed" draw_ops="restore_button_pressed"/> +</frame_style> + +<frame_style name="utility_unfocused" geometry="utility" parent="normal_unfocused"> + <piece position="title" draw_ops="title_utility"/> +</frame_style> + +<frame_style name="utility_focused" geometry="utility" parent="normal_focused"> + <piece position="title" draw_ops="title_utility_focused"/> +</frame_style> + +<frame_style name="border" geometry="border" parent="normal_unfocused"> + <piece position="entire_background" draw_ops="outer_bevel"/> + <piece position="title" draw_ops="blank"/> +</frame_style> + +<frame_style_set name="normal"> +<frame focus="yes" state="normal" resize="both" style="normal_focused"/> +<frame focus="no" state="normal" resize="both" style="normal_unfocused"/> +<frame focus="yes" state="maximized" style="maximized_focused"/> +<frame focus="no" state="maximized" style="maximized_unfocused"/> +<frame focus="yes" state="shaded" style="normal_focused"/> +<frame focus="no" state="shaded" style="normal_unfocused"/> +<frame focus="yes" state="maximized_and_shaded" style="maximized_focused"/> +<frame focus="no" state="maximized_and_shaded" style="maximized_unfocused"/> +</frame_style_set> + +<frame_style_set name="utility" parent="normal"> +<frame focus="yes" state="normal" resize="both" style="utility_focused"/> +<frame focus="no" state="normal" resize="both" style="utility_unfocused"/> +<!-- this is a bunch of crack since utility windows shouldn't be maximized --> +<frame focus="yes" state="maximized" style="utility_focused"/> +<frame focus="no" state="maximized" style="utility_unfocused"/> +<frame focus="yes" state="shaded" style="utility_focused"/> +<frame focus="no" state="shaded" style="utility_unfocused"/> +<frame focus="yes" state="maximized_and_shaded" style="utility_focused"/> +<frame focus="no" state="maximized_and_shaded" style="utility_unfocused"/> +</frame_style_set> + +<frame_style_set name="border"> +<frame focus="yes" state="normal" resize="both" style="border"/> +<frame focus="no" state="normal" resize="both" style="border"/> +<frame focus="yes" state="maximized" style="border"/> +<frame focus="no" state="maximized" style="border"/> +<frame focus="yes" state="shaded" style="border"/> +<frame focus="no" state="shaded" style="border"/> +<frame focus="yes" state="maximized_and_shaded" style="border"/> +<frame focus="no" state="maximized_and_shaded" style="border"/> +</frame_style_set> + +<window type="normal" style_set="normal"/> +<window type="dialog" style_set="normal"/> +<window type="modal_dialog" style_set="normal"/> +<window type="menu" style_set="normal"/> +<window type="utility" style_set="utility"/> +<window type="border" style_set="border"/> + +<menu_icon function="close" state="normal" draw_ops="close_button"/> +<menu_icon function="maximize" state="normal" draw_ops="maximize_button"/> +<menu_icon function="unmaximize" state="normal" draw_ops="restore_button"/> +<menu_icon function="minimize" state="normal" draw_ops="minimize_button"/> + +</metacity_theme> diff --git a/desktop-themes/HighContrastInverse/pixmaps/Makefile.am b/desktop-themes/HighContrastInverse/pixmaps/Makefile.am new file mode 100644 index 00000000..1a1e164a --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/Makefile.am @@ -0,0 +1,5 @@ +pixmapdir= $(datadir)/themes/HighContrastInverse/pixmaps + +EXTRA_DIST= $(pixmap_DATA) + +include $(top_srcdir)/common/all-stock-icons.data diff --git a/desktop-themes/HighContrastInverse/pixmaps/double-click-maybe.png b/desktop-themes/HighContrastInverse/pixmaps/double-click-maybe.png Binary files differnew file mode 100644 index 00000000..e776cbac --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/double-click-maybe.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/double-click-off.png b/desktop-themes/HighContrastInverse/pixmaps/double-click-off.png Binary files differnew file mode 100644 index 00000000..418db8b7 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/double-click-off.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/double-click-on.png b/desktop-themes/HighContrastInverse/pixmaps/double-click-on.png Binary files differnew file mode 100644 index 00000000..c9ba34a5 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/double-click-on.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/marco-delete.png b/desktop-themes/HighContrastInverse/pixmaps/marco-delete.png Binary files differnew file mode 100755 index 00000000..b2f69aa1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/marco-delete.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/marco-maximize.png b/desktop-themes/HighContrastInverse/pixmaps/marco-maximize.png Binary files differnew file mode 100644 index 00000000..ffacacc4 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/marco-maximize.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/marco-minimize.png b/desktop-themes/HighContrastInverse/pixmaps/marco-minimize.png Binary files differnew file mode 100644 index 00000000..9e283409 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/marco-minimize.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-backward.png b/desktop-themes/HighContrastInverse/pixmaps/media-backward.png Binary files differnew file mode 100644 index 00000000..d62926e6 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-backward.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-eject.png b/desktop-themes/HighContrastInverse/pixmaps/media-eject.png Binary files differnew file mode 100644 index 00000000..2d72a5fa --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-eject.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-forward.png b/desktop-themes/HighContrastInverse/pixmaps/media-forward.png Binary files differnew file mode 100644 index 00000000..8643b914 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-forward.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-next.png b/desktop-themes/HighContrastInverse/pixmaps/media-next.png Binary files differnew file mode 100644 index 00000000..58c63a85 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-next.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-pause.png b/desktop-themes/HighContrastInverse/pixmaps/media-pause.png Binary files differnew file mode 100644 index 00000000..70d17d1b --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-pause.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-play.png b/desktop-themes/HighContrastInverse/pixmaps/media-play.png Binary files differnew file mode 100644 index 00000000..24b797d3 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-play.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-prev.png b/desktop-themes/HighContrastInverse/pixmaps/media-prev.png Binary files differnew file mode 100644 index 00000000..d0cf74cf --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-prev.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-record.png b/desktop-themes/HighContrastInverse/pixmaps/media-record.png Binary files differnew file mode 100644 index 00000000..a83915c6 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-record.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/media-stop.png b/desktop-themes/HighContrastInverse/pixmaps/media-stop.png Binary files differnew file mode 100644 index 00000000..7ab1051b --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/media-stop.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/printer-broken.png b/desktop-themes/HighContrastInverse/pixmaps/printer-broken.png Binary files differnew file mode 100644 index 00000000..cbcd5480 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/printer-broken.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/printer-default.png b/desktop-themes/HighContrastInverse/pixmaps/printer-default.png Binary files differnew file mode 100644 index 00000000..f2eb8b59 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/printer-default.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/printer-inkjet.png b/desktop-themes/HighContrastInverse/pixmaps/printer-inkjet.png Binary files differnew file mode 100644 index 00000000..0d3ffe43 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/printer-inkjet.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/printer-personal-laser.png b/desktop-themes/HighContrastInverse/pixmaps/printer-personal-laser.png Binary files differnew file mode 100644 index 00000000..f7800534 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/printer-personal-laser.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/printer-workgroup-laser.png b/desktop-themes/HighContrastInverse/pixmaps/printer-workgroup-laser.png Binary files differnew file mode 100644 index 00000000..534db451 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/printer-workgroup-laser.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_about.png b/desktop-themes/HighContrastInverse/pixmaps/stock_about.png Binary files differnew file mode 100755 index 00000000..f0b3235d --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_about.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_accessories.png b/desktop-themes/HighContrastInverse/pixmaps/stock_accessories.png Binary files differnew file mode 100755 index 00000000..8cecf42c --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_accessories.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_add.png b/desktop-themes/HighContrastInverse/pixmaps/stock_add.png Binary files differnew file mode 100755 index 00000000..5123745a --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_add.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_amusements.png b/desktop-themes/HighContrastInverse/pixmaps/stock_amusements.png Binary files differnew file mode 100755 index 00000000..a7bb13fd --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_amusements.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_apply.png b/desktop-themes/HighContrastInverse/pixmaps/stock_apply.png Binary files differnew file mode 100755 index 00000000..f5eceb2f --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_apply.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_attach.png b/desktop-themes/HighContrastInverse/pixmaps/stock_attach.png Binary files differnew file mode 100755 index 00000000..45b7bbcd --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_attach.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_bold.png b/desktop-themes/HighContrastInverse/pixmaps/stock_bold.png Binary files differnew file mode 100755 index 00000000..14abb2e6 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_bold.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_book.png b/desktop-themes/HighContrastInverse/pixmaps/stock_book.png Binary files differnew file mode 100755 index 00000000..b5d0f299 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_book.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_cancel.png b/desktop-themes/HighContrastInverse/pixmaps/stock_cancel.png Binary files differnew file mode 100755 index 00000000..b2f69aa1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_cancel.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_cde-menu.png b/desktop-themes/HighContrastInverse/pixmaps/stock_cde-menu.png Binary files differnew file mode 100755 index 00000000..6f23299d --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_cde-menu.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_cdrom.png b/desktop-themes/HighContrastInverse/pixmaps/stock_cdrom.png Binary files differnew file mode 100755 index 00000000..0edc5919 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_cdrom.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_clear.png b/desktop-themes/HighContrastInverse/pixmaps/stock_clear.png Binary files differnew file mode 100755 index 00000000..6f68d267 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_clear.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_close.png b/desktop-themes/HighContrastInverse/pixmaps/stock_close.png Binary files differnew file mode 100755 index 00000000..b2f69aa1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_close.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_commandline-browser.xpm b/desktop-themes/HighContrastInverse/pixmaps/stock_commandline-browser.xpm new file mode 100644 index 00000000..00b8f23a --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_commandline-browser.xpm @@ -0,0 +1,35 @@ +/* XPM */ +static char * stock_commandline_browser_xpm[] = { +"24 24 8 1", +" c None", +". c #000000", +"+ c #616161", +"@ c #B7B7B7", +"# c #ECECEC", +"$ c #303030", +"% c #C9C9C9", +"& c #FFFFFF", +" ", +" ", +" ", +" ", +" ..... ", +" ......... ", +" ...+@#@+... ", +" ..$%&&&&&%$.. ", +" ..%&&&&&&&%.. ", +" ..+&&&&&&&&&+.. ", +" ..@&&&&&&&&&@.. ", +" ..#&&&&&&&&&#.. ", +" ..@&&&&&&&&&@.. ", +" ..+&&&&&&&&&+.. ", +" ..%&&&&&&&%.. ", +" ..$%&&&&&%$.. ", +" ...+@#@+... ", +" ......... ", +" ..... ", +" ", +" ", +" ", +" ", +" "}; diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_commandline-history.xpm b/desktop-themes/HighContrastInverse/pixmaps/stock_commandline-history.xpm new file mode 100644 index 00000000..875a6b3a --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_commandline-history.xpm @@ -0,0 +1,55 @@ +/* XPM */ +static char * stock_commandline_history_xpm[] = { +"24 24 28 1", +" c None", +". c #000000", +"+ c #5F5F5F", +"@ c #6F6F6F", +"# c #6E6E6E", +"$ c #636363", +"% c #7E7E7E", +"& c #E2E2E2", +"* c #E9E9E9", +"= c #E7E7E7", +"- c #C2C2C2", +"; c #606060", +"> c #3E3E3E", +", c #AFAFAF", +"' c #F7F7F7", +") c #FFFFFF", +"! c #FCFCFC", +"~ c #D4D4D4", +"{ c #676767", +"] c #1D1D1D", +"^ c #444444", +"/ c #E0E0E0", +"( c #EFEFEF", +"_ c #777777", +": c #787878", +"< c #969696", +"[ c #5C5C5C", +"} c #242424", +" ", +" ", +" ", +" ", +"........................", +".+@@@@@@@@@@@@@@@@@@@#$.", +".%&*****************=-;.", +".>,')))))))))))))))!~{] ", +" .^,')))))))))))))!~{] ", +" .^,')))))))))))!~{] ", +" .^,'))))))))))/;] ", +" .^,'))))))))(_. ", +" .^,'))))))(:.. ", +" .^,'))))(:.. ", +" .^,'))(:.. ", +" .^,'(:.. ", +" .^<[.. ", +" .}.. ", +" . ", +" ", +" ", +" ", +" ", +" "}; diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_connect.png b/desktop-themes/HighContrastInverse/pixmaps/stock_connect.png Binary files differnew file mode 100755 index 00000000..65a018a5 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_connect.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_convert.png b/desktop-themes/HighContrastInverse/pixmaps/stock_convert.png Binary files differnew file mode 100755 index 00000000..eb773acd --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_convert.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_copy.png b/desktop-themes/HighContrastInverse/pixmaps/stock_copy.png Binary files differnew file mode 100755 index 00000000..d465318e --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_copy.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_cut.png b/desktop-themes/HighContrastInverse/pixmaps/stock_cut.png Binary files differnew file mode 100755 index 00000000..d90a0999 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_cut.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_delete.png b/desktop-themes/HighContrastInverse/pixmaps/stock_delete.png Binary files differnew file mode 100755 index 00000000..74fcdf7d --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_delete.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_error.png b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_error.png Binary files differnew file mode 100755 index 00000000..d0eb2267 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_error.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_info.png b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_info.png Binary files differnew file mode 100755 index 00000000..60f08e7a --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_info.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_question.png b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_question.png Binary files differnew file mode 100755 index 00000000..0e792ba3 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_question.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_warning.png b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_warning.png Binary files differnew file mode 100755 index 00000000..31b218d1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_dialog_warning.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_disconnect.png b/desktop-themes/HighContrastInverse/pixmaps/stock_disconnect.png Binary files differnew file mode 100755 index 00000000..238d9430 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_disconnect.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_dnd.png b/desktop-themes/HighContrastInverse/pixmaps/stock_dnd.png Binary files differnew file mode 100755 index 00000000..c0a3c01a --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_dnd.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_dnd_multiple.png b/desktop-themes/HighContrastInverse/pixmaps/stock_dnd_multiple.png Binary files differnew file mode 100755 index 00000000..98348a25 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_dnd_multiple.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_drawer.png b/desktop-themes/HighContrastInverse/pixmaps/stock_drawer.png Binary files differnew file mode 100755 index 00000000..96220265 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_drawer.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_edit.png b/desktop-themes/HighContrastInverse/pixmaps/stock_edit.png Binary files differnew file mode 100755 index 00000000..46ca3701 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_edit.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_empty.png b/desktop-themes/HighContrastInverse/pixmaps/stock_empty.png Binary files differnew file mode 100755 index 00000000..31969a44 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_empty.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_execute.png b/desktop-themes/HighContrastInverse/pixmaps/stock_execute.png Binary files differnew file mode 100755 index 00000000..cb9461f8 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_execute.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_export.png b/desktop-themes/HighContrastInverse/pixmaps/stock_export.png Binary files differnew file mode 100755 index 00000000..c928149a --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_export.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_find-and-replace.png b/desktop-themes/HighContrastInverse/pixmaps/stock_find-and-replace.png Binary files differnew file mode 100755 index 00000000..ffeb60cf --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_find-and-replace.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_find.png b/desktop-themes/HighContrastInverse/pixmaps/stock_find.png Binary files differnew file mode 100755 index 00000000..89e0c8ac --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_find.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_floppy.png b/desktop-themes/HighContrastInverse/pixmaps/stock_floppy.png Binary files differnew file mode 100755 index 00000000..cb7b3ba3 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_floppy.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_go-back.png b/desktop-themes/HighContrastInverse/pixmaps/stock_go-back.png Binary files differnew file mode 100755 index 00000000..916265b4 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_go-back.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_go-down.png b/desktop-themes/HighContrastInverse/pixmaps/stock_go-down.png Binary files differnew file mode 100755 index 00000000..e650695b --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_go-down.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_go-forward.png b/desktop-themes/HighContrastInverse/pixmaps/stock_go-forward.png Binary files differnew file mode 100755 index 00000000..63ba5723 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_go-forward.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_go-up.png b/desktop-themes/HighContrastInverse/pixmaps/stock_go-up.png Binary files differnew file mode 100755 index 00000000..9b0d41bf --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_go-up.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_goto-bottom.png b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-bottom.png Binary files differnew file mode 100755 index 00000000..7c15a6b0 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-bottom.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_goto-first.png b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-first.png Binary files differnew file mode 100755 index 00000000..1ba9e5e5 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-first.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_goto-last.png b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-last.png Binary files differnew file mode 100755 index 00000000..4ccb91b6 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-last.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_goto-top.png b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-top.png Binary files differnew file mode 100755 index 00000000..9d5317b5 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_goto-top.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_harddisk.png b/desktop-themes/HighContrastInverse/pixmaps/stock_harddisk.png Binary files differnew file mode 100755 index 00000000..937ca439 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_harddisk.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_help.png b/desktop-themes/HighContrastInverse/pixmaps/stock_help.png Binary files differnew file mode 100755 index 00000000..bb875287 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_help.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_home.png b/desktop-themes/HighContrastInverse/pixmaps/stock_home.png Binary files differnew file mode 100755 index 00000000..0f669761 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_home.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_import.png b/desktop-themes/HighContrastInverse/pixmaps/stock_import.png Binary files differnew file mode 100755 index 00000000..f49e8573 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_import.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_index.png b/desktop-themes/HighContrastInverse/pixmaps/stock_index.png Binary files differnew file mode 100755 index 00000000..46286ef4 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_index.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_info.png b/desktop-themes/HighContrastInverse/pixmaps/stock_info.png Binary files differnew file mode 100644 index 00000000..a4b89df6 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_info.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_insert-image.png b/desktop-themes/HighContrastInverse/pixmaps/stock_insert-image.png Binary files differnew file mode 100755 index 00000000..70439f74 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_insert-image.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_insert-object.png b/desktop-themes/HighContrastInverse/pixmaps/stock_insert-object.png Binary files differnew file mode 100755 index 00000000..f2dfda46 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_insert-object.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_insert-table.png b/desktop-themes/HighContrastInverse/pixmaps/stock_insert-table.png Binary files differnew file mode 100755 index 00000000..1a35df78 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_insert-table.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_internet.png b/desktop-themes/HighContrastInverse/pixmaps/stock_internet.png Binary files differnew file mode 100755 index 00000000..bc9a5a91 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_internet.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_italic.png b/desktop-themes/HighContrastInverse/pixmaps/stock_italic.png Binary files differnew file mode 100755 index 00000000..f8065487 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_italic.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_jump-to.png b/desktop-themes/HighContrastInverse/pixmaps/stock_jump-to.png Binary files differnew file mode 100755 index 00000000..b8296c39 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_jump-to.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_justify-center.png b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-center.png Binary files differnew file mode 100755 index 00000000..9f98b919 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-center.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_justify-fill.png b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-fill.png Binary files differnew file mode 100755 index 00000000..33a2bfd3 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-fill.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_justify-left.png b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-left.png Binary files differnew file mode 100755 index 00000000..5138e00c --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-left.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_justify-right.png b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-right.png Binary files differnew file mode 100755 index 00000000..e89c0af1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_justify-right.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_launcher-program.png b/desktop-themes/HighContrastInverse/pixmaps/stock_launcher-program.png Binary files differnew file mode 100755 index 00000000..778c34d4 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_launcher-program.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_line-in.png b/desktop-themes/HighContrastInverse/pixmaps/stock_line-in.png Binary files differnew file mode 100755 index 00000000..3b44ff10 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_line-in.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_lockscreen.png b/desktop-themes/HighContrastInverse/pixmaps/stock_lockscreen.png Binary files differnew file mode 100755 index 00000000..ba1ced46 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_lockscreen.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_logout.png b/desktop-themes/HighContrastInverse/pixmaps/stock_logout.png Binary files differnew file mode 100755 index 00000000..f55f1feb --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_logout.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_mate-logo.png b/desktop-themes/HighContrastInverse/pixmaps/stock_mate-logo.png Binary files differnew file mode 100644 index 00000000..825288cf --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_mate-logo.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_mate-util.png b/desktop-themes/HighContrastInverse/pixmaps/stock_mate-util.png Binary files differnew file mode 100755 index 00000000..611140f9 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_mate-util.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_mic.png b/desktop-themes/HighContrastInverse/pixmaps/stock_mic.png Binary files differnew file mode 100755 index 00000000..e87e12d7 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_mic.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_missing-image.png b/desktop-themes/HighContrastInverse/pixmaps/stock_missing-image.png Binary files differnew file mode 100755 index 00000000..077de5b7 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_missing-image.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_multimedia.png b/desktop-themes/HighContrastInverse/pixmaps/stock_multimedia.png Binary files differnew file mode 100755 index 00000000..9a292a98 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_multimedia.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_new.png b/desktop-themes/HighContrastInverse/pixmaps/stock_new.png Binary files differnew file mode 100755 index 00000000..aec40a31 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_new.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_no.png b/desktop-themes/HighContrastInverse/pixmaps/stock_no.png Binary files differnew file mode 100755 index 00000000..b2f69aa1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_no.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_ok.png b/desktop-themes/HighContrastInverse/pixmaps/stock_ok.png Binary files differnew file mode 100755 index 00000000..f5eceb2f --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_ok.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_open.png b/desktop-themes/HighContrastInverse/pixmaps/stock_open.png Binary files differnew file mode 100755 index 00000000..7e5486f5 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_open.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_paste.png b/desktop-themes/HighContrastInverse/pixmaps/stock_paste.png Binary files differnew file mode 100755 index 00000000..94836722 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_paste.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_preferences.png b/desktop-themes/HighContrastInverse/pixmaps/stock_preferences.png Binary files differnew file mode 100755 index 00000000..08cae539 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_preferences.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_print-preview.png b/desktop-themes/HighContrastInverse/pixmaps/stock_print-preview.png Binary files differnew file mode 100755 index 00000000..f34d4dc2 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_print-preview.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_print.png b/desktop-themes/HighContrastInverse/pixmaps/stock_print.png Binary files differnew file mode 100755 index 00000000..5b638d23 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_print.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_properties.png b/desktop-themes/HighContrastInverse/pixmaps/stock_properties.png Binary files differnew file mode 100755 index 00000000..cd3d6940 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_properties.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_quit.png b/desktop-themes/HighContrastInverse/pixmaps/stock_quit.png Binary files differnew file mode 100755 index 00000000..f1a055f3 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_quit.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_redo.png b/desktop-themes/HighContrastInverse/pixmaps/stock_redo.png Binary files differnew file mode 100755 index 00000000..292eefc6 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_redo.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_refresh.png b/desktop-themes/HighContrastInverse/pixmaps/stock_refresh.png Binary files differnew file mode 100755 index 00000000..63679fdb --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_refresh.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_remove.png b/desktop-themes/HighContrastInverse/pixmaps/stock_remove.png Binary files differnew file mode 100755 index 00000000..52c7a879 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_remove.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_revert-to-saved.png b/desktop-themes/HighContrastInverse/pixmaps/stock_revert-to-saved.png Binary files differnew file mode 100755 index 00000000..9f16adc4 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_revert-to-saved.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_run.png b/desktop-themes/HighContrastInverse/pixmaps/stock_run.png Binary files differnew file mode 100755 index 00000000..33a4fbac --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_run.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_save-as.png b/desktop-themes/HighContrastInverse/pixmaps/stock_save-as.png Binary files differnew file mode 100755 index 00000000..ead822f1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_save-as.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_save.png b/desktop-themes/HighContrastInverse/pixmaps/stock_save.png Binary files differnew file mode 100755 index 00000000..cb7b3ba3 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_save.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_screenshot.png b/desktop-themes/HighContrastInverse/pixmaps/stock_screenshot.png Binary files differnew file mode 100755 index 00000000..3aa4b30b --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_screenshot.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_searchtool.png b/desktop-themes/HighContrastInverse/pixmaps/stock_searchtool.png Binary files differnew file mode 100755 index 00000000..64c1cdac --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_searchtool.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_select-color.png b/desktop-themes/HighContrastInverse/pixmaps/stock_select-color.png Binary files differnew file mode 100755 index 00000000..f6347934 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_select-color.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_select-font.png b/desktop-themes/HighContrastInverse/pixmaps/stock_select-font.png Binary files differnew file mode 100755 index 00000000..7ae2e00e --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_select-font.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_sort-ascending.png b/desktop-themes/HighContrastInverse/pixmaps/stock_sort-ascending.png Binary files differnew file mode 100755 index 00000000..d92df958 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_sort-ascending.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_sort-descending.png b/desktop-themes/HighContrastInverse/pixmaps/stock_sort-descending.png Binary files differnew file mode 100755 index 00000000..8e26b4c2 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_sort-descending.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_spell-check.png b/desktop-themes/HighContrastInverse/pixmaps/stock_spell-check.png Binary files differnew file mode 100755 index 00000000..41126415 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_spell-check.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_stop.png b/desktop-themes/HighContrastInverse/pixmaps/stock_stop.png Binary files differnew file mode 100755 index 00000000..cb9f0427 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_stop.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_strikethrough.png b/desktop-themes/HighContrastInverse/pixmaps/stock_strikethrough.png Binary files differnew file mode 100755 index 00000000..11aca0bc --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_strikethrough.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_undelete.png b/desktop-themes/HighContrastInverse/pixmaps/stock_undelete.png Binary files differnew file mode 100755 index 00000000..80a7ba27 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_undelete.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_underline.png b/desktop-themes/HighContrastInverse/pixmaps/stock_underline.png Binary files differnew file mode 100755 index 00000000..b8e15b8e --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_underline.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_undo.png b/desktop-themes/HighContrastInverse/pixmaps/stock_undo.png Binary files differnew file mode 100755 index 00000000..ee061eda --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_undo.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_volume.png b/desktop-themes/HighContrastInverse/pixmaps/stock_volume.png Binary files differnew file mode 100755 index 00000000..982fc309 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_volume.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_yes.png b/desktop-themes/HighContrastInverse/pixmaps/stock_yes.png Binary files differnew file mode 100755 index 00000000..f5eceb2f --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_yes.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-100.png b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-100.png Binary files differnew file mode 100755 index 00000000..6cd2fa7e --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-100.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-fit.png b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-fit.png Binary files differnew file mode 100755 index 00000000..457c516d --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-fit.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-in.png b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-in.png Binary files differnew file mode 100755 index 00000000..f72c0bbb --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-in.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-out.png b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-out.png Binary files differnew file mode 100755 index 00000000..dd902879 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/stock_zoom-out.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/volume-max.png b/desktop-themes/HighContrastInverse/pixmaps/volume-max.png Binary files differnew file mode 100644 index 00000000..b71d0cae --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/volume-max.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/volume-medium.png b/desktop-themes/HighContrastInverse/pixmaps/volume-medium.png Binary files differnew file mode 100644 index 00000000..b52e2432 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/volume-medium.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/volume-min.png b/desktop-themes/HighContrastInverse/pixmaps/volume-min.png Binary files differnew file mode 100644 index 00000000..18490db1 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/volume-min.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/volume-mute.png b/desktop-themes/HighContrastInverse/pixmaps/volume-mute.png Binary files differnew file mode 100644 index 00000000..1d0fa048 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/volume-mute.png diff --git a/desktop-themes/HighContrastInverse/pixmaps/volume-zero.png b/desktop-themes/HighContrastInverse/pixmaps/volume-zero.png Binary files differnew file mode 100644 index 00000000..3d1f01d6 --- /dev/null +++ b/desktop-themes/HighContrastInverse/pixmaps/volume-zero.png |