├── .gitignore ├── .nvmrc ├── AUTHORS ├── COPYING ├── ChangeLog ├── HACKING.md ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── common ├── Makefile.am ├── cinnamon │ ├── buttons │ │ ├── button-border-active.svg │ │ ├── button-border-focused-hover.svg │ │ ├── button-border-focused.svg │ │ ├── button-border-hover.svg │ │ ├── button-border-insensitive.svg │ │ └── button-border.svg │ ├── checkbox │ │ ├── checkbox-checked-focused.svg │ │ ├── checkbox-checked.svg │ │ ├── checkbox-unchecked-focused.svg │ │ └── checkbox-unchecked.svg │ ├── cinnamon.css │ ├── entry │ │ ├── entry-border-focused.svg │ │ ├── entry-border-insensitive.svg │ │ └── entry-border.svg │ ├── menu │ │ ├── menu-arrow-symbolic.svg │ │ ├── menu-hover.svg │ │ ├── menu-separator.svg │ │ ├── menu.svg │ │ ├── submenu-open.svg │ │ └── submenu.svg │ ├── misc │ │ ├── add-workspace-hover.svg │ │ ├── add-workspace.svg │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-not-today.svg │ │ ├── calendar-today.svg │ │ ├── close-window-active.svg │ │ ├── close-window-hover.svg │ │ ├── close-window.svg │ │ ├── corner-ripple-ltr.svg │ │ ├── corner-ripple-rtl.svg │ │ ├── desklet-header.svg │ │ ├── desklet.svg │ │ ├── message.svg │ │ ├── modal.svg │ │ ├── notification.svg │ │ ├── osd.svg │ │ ├── overview-hover.png │ │ ├── overview.png │ │ ├── radiobutton-off.svg │ │ ├── radiobutton.svg │ │ ├── slider-osd.svg │ │ ├── slider.svg │ │ └── trash-icon.svg │ ├── panel │ │ ├── panel-bottom.svg │ │ ├── panel-button-border-active.svg │ │ ├── panel-button-border-hover.svg │ │ ├── panel-button-border.svg │ │ └── panel-top.svg │ ├── switch │ │ ├── switch-off.svg │ │ └── switch-on.svg │ ├── theme.json │ └── thumbnail.png ├── gnome-shell │ ├── 3.10 │ ├── 3.12 │ ├── 3.14 │ │ ├── LICENSE │ │ ├── assets │ │ │ ├── app-folder │ │ │ │ ├── app-folder-active.svg │ │ │ │ ├── app-folder-focus.svg │ │ │ │ ├── app-folder-hover.svg │ │ │ │ └── app-folder.svg │ │ │ ├── button │ │ │ │ ├── app-control-left-active.svg │ │ │ │ ├── app-control-left-hover.svg │ │ │ │ ├── app-control-left.svg │ │ │ │ ├── app-control-right-active.svg │ │ │ │ ├── app-control-right-hover.svg │ │ │ │ ├── app-control-right.svg │ │ │ │ ├── button-border-active.svg │ │ │ │ ├── button-border-focused-hover.svg │ │ │ │ ├── button-border-focused.svg │ │ │ │ ├── button-border-hover.svg │ │ │ │ ├── button-border-insensitive.svg │ │ │ │ ├── button-border.svg │ │ │ │ ├── shutdown-button-border-active.svg │ │ │ │ ├── shutdown-button-border-hover.svg │ │ │ │ └── shutdown-button-border.svg │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── dash │ │ │ │ ├── bottom_button-active-hover.svg │ │ │ │ ├── bottom_button-active.svg │ │ │ │ ├── bottom_button-hover.svg │ │ │ │ ├── bottom_button-running-active.svg │ │ │ │ ├── bottom_button-running-hover.svg │ │ │ │ ├── bottom_button-running.svg │ │ │ │ ├── button-active-hover.svg │ │ │ │ ├── button-active.svg │ │ │ │ ├── button-hover.svg │ │ │ │ ├── button-running-active.svg │ │ │ │ ├── button-running-hover.svg │ │ │ │ ├── button-running.svg │ │ │ │ ├── dash-bottom.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── dash-top.svg │ │ │ │ ├── dash.svg │ │ │ │ ├── right_button-active.svg │ │ │ │ ├── right_button-hover.svg │ │ │ │ ├── right_button-running-active.svg │ │ │ │ ├── right_button-running-hover.svg │ │ │ │ ├── right_button-running.svg │ │ │ │ ├── top_button-active.svg │ │ │ │ ├── top_button-hover.svg │ │ │ │ ├── top_button-running-active.svg │ │ │ │ ├── top_button-running-hover.svg │ │ │ │ └── top_button-running.svg │ │ │ ├── entry │ │ │ │ ├── entry-border-focused.svg │ │ │ │ ├── entry-border-insensitive.svg │ │ │ │ └── entry-border.svg │ │ │ ├── menu │ │ │ │ ├── menu-arrow-symbolic.svg │ │ │ │ ├── menu-hover.svg │ │ │ │ ├── menu-separator.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── calendar-not-today.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── close-window-active.svg │ │ │ │ ├── close-window-hover.svg │ │ │ │ ├── close-window.svg │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── logged-in-indicator.svg │ │ │ │ ├── message-tray-background.png │ │ │ │ ├── modal.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── noise-texture.png │ │ │ │ ├── notification.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── page-indicator-active.svg │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── search-separator.svg │ │ │ │ ├── slider-osd.svg │ │ │ │ ├── slider.svg │ │ │ │ ├── summary-counter.svg │ │ │ │ ├── workspace-thumb-bg-rtl.svg │ │ │ │ ├── workspace-thumb-bg.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ └── ws-switch-arrow-up.png │ │ │ ├── panel │ │ │ │ ├── panel-button-border-active.svg │ │ │ │ ├── panel-button-border-hover.svg │ │ │ │ ├── panel-button-highlight-wide.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── gnome-shell.css │ ├── 3.16 │ │ ├── assets │ │ │ ├── app-folder │ │ │ │ ├── app-folder-active.svg │ │ │ │ ├── app-folder-focus.svg │ │ │ │ ├── app-folder-hover.svg │ │ │ │ └── app-folder.svg │ │ │ ├── button │ │ │ │ ├── app-control-left-active.svg │ │ │ │ ├── app-control-left-hover.svg │ │ │ │ ├── app-control-left.svg │ │ │ │ ├── app-control-right-active.svg │ │ │ │ ├── app-control-right-hover.svg │ │ │ │ ├── app-control-right.svg │ │ │ │ ├── button-border-active.svg │ │ │ │ ├── button-border-focused-hover.svg │ │ │ │ ├── button-border-focused.svg │ │ │ │ ├── button-border-hover.svg │ │ │ │ ├── button-border-insensitive.svg │ │ │ │ ├── button-border.svg │ │ │ │ ├── shutdown-button-border-active.svg │ │ │ │ ├── shutdown-button-border-hover.svg │ │ │ │ └── shutdown-button-border.svg │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── dash │ │ │ │ ├── button-active.svg │ │ │ │ ├── button-horizontal-active.svg │ │ │ │ ├── button-horizontal-hover.svg │ │ │ │ ├── button-horizontal.svg │ │ │ │ ├── button-hover.svg │ │ │ │ ├── button.svg │ │ │ │ ├── dash-bottom.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── dash-top.svg │ │ │ │ ├── dash.svg │ │ │ │ └── running-dot.svg │ │ │ ├── entry │ │ │ │ ├── entry-border-focused.svg │ │ │ │ ├── entry-border-insensitive.svg │ │ │ │ └── entry-border.svg │ │ │ ├── menu │ │ │ │ ├── menu-arrow-symbolic.svg │ │ │ │ ├── menu-hover.svg │ │ │ │ ├── menu-separator.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── calendar-not-today.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── close-window-active.svg │ │ │ │ ├── close-window-hover.svg │ │ │ │ ├── close-window.svg │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ ├── lg.svg │ │ │ │ ├── logged-in-indicator.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message-list-close-active.svg │ │ │ │ ├── message-list-close-hover.svg │ │ │ │ ├── message-list-close.svg │ │ │ │ ├── message.svg │ │ │ │ ├── modal.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── noise-texture.png │ │ │ │ ├── notification.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── page-indicator-active.svg │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── running-dot.svg │ │ │ │ ├── slider-osd.svg │ │ │ │ ├── slider.svg │ │ │ │ ├── summary-counter.svg │ │ │ │ ├── workspace-thumb-bg-rtl.svg │ │ │ │ ├── workspace-thumb-bg.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ └── ws-switch-arrow-up.png │ │ │ ├── panel │ │ │ │ ├── panel-button-border-active.svg │ │ │ │ ├── panel-button-border-hover.svg │ │ │ │ ├── panel-button-highlight-wide.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss │ ├── 3.18 │ │ ├── assets │ │ │ ├── app-folder │ │ │ │ ├── app-folder-active.svg │ │ │ │ ├── app-folder-focus.svg │ │ │ │ ├── app-folder-hover.svg │ │ │ │ └── app-folder.svg │ │ │ ├── button │ │ │ │ ├── app-control-left-active.svg │ │ │ │ ├── app-control-left-hover.svg │ │ │ │ ├── app-control-left.svg │ │ │ │ ├── app-control-right-active.svg │ │ │ │ ├── app-control-right-hover.svg │ │ │ │ ├── app-control-right.svg │ │ │ │ ├── button-border-active.svg │ │ │ │ ├── button-border-focused-hover.svg │ │ │ │ ├── button-border-focused.svg │ │ │ │ ├── button-border-hover.svg │ │ │ │ ├── button-border-insensitive.svg │ │ │ │ ├── button-border.svg │ │ │ │ ├── modal-dialog-button-active.svg │ │ │ │ ├── modal-dialog-button-hover.svg │ │ │ │ ├── modal-dialog-button-insensitive.svg │ │ │ │ ├── modal-dialog-button-left-active.svg │ │ │ │ ├── modal-dialog-button-left-hover.svg │ │ │ │ ├── modal-dialog-button-left-insensitive.svg │ │ │ │ ├── modal-dialog-button-left.svg │ │ │ │ ├── modal-dialog-button-middle-active.svg │ │ │ │ ├── modal-dialog-button-middle-hover.svg │ │ │ │ ├── modal-dialog-button-middle-insensitive.svg │ │ │ │ ├── modal-dialog-button-middle.svg │ │ │ │ ├── modal-dialog-button-right-active.svg │ │ │ │ ├── modal-dialog-button-right-hover.svg │ │ │ │ ├── modal-dialog-button-right-insensitive.svg │ │ │ │ ├── modal-dialog-button-right.svg │ │ │ │ ├── modal-dialog-button.svg │ │ │ │ ├── shutdown-button-border-active.svg │ │ │ │ ├── shutdown-button-border-hover.svg │ │ │ │ └── shutdown-button-border.svg │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── dash │ │ │ │ ├── button-active.svg │ │ │ │ ├── button-horizontal-active.svg │ │ │ │ ├── button-horizontal-hover.svg │ │ │ │ ├── button-horizontal.svg │ │ │ │ ├── button-hover.svg │ │ │ │ ├── button.svg │ │ │ │ ├── dash-bottom.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── dash-top.svg │ │ │ │ ├── dash.svg │ │ │ │ └── running-dot.svg │ │ │ ├── entry │ │ │ │ ├── entry-border-focused.svg │ │ │ │ ├── entry-border-insensitive.svg │ │ │ │ └── entry-border.svg │ │ │ ├── menu │ │ │ │ ├── menu-arrow-symbolic.svg │ │ │ │ ├── menu-hover.svg │ │ │ │ ├── menu-separator.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── calendar-not-today.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── close-window-active.svg │ │ │ │ ├── close-window-hover.svg │ │ │ │ ├── close-window.svg │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ ├── lg.svg │ │ │ │ ├── logged-in-indicator.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message-list-close-active.svg │ │ │ │ ├── message-list-close-hover.svg │ │ │ │ ├── message-list-close.svg │ │ │ │ ├── message.svg │ │ │ │ ├── modal.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── noise-texture.png │ │ │ │ ├── notification.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── page-indicator-active.svg │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── running-dot.svg │ │ │ │ ├── slider-osd.svg │ │ │ │ ├── slider.svg │ │ │ │ ├── summary-counter.svg │ │ │ │ ├── workspace-thumb-bg-rtl.svg │ │ │ │ ├── workspace-thumb-bg.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ └── ws-switch-arrow-up.png │ │ │ ├── panel │ │ │ │ ├── panel-button-border-active.svg │ │ │ │ ├── panel-button-border-hover.svg │ │ │ │ ├── panel-button-highlight-wide.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss │ ├── 3.20 │ │ ├── assets │ │ │ ├── app-folder │ │ │ │ ├── app-folder-active.svg │ │ │ │ ├── app-folder-focus.svg │ │ │ │ ├── app-folder-hover.svg │ │ │ │ └── app-folder.svg │ │ │ ├── button │ │ │ │ ├── app-control-left-active.svg │ │ │ │ ├── app-control-left-hover.svg │ │ │ │ ├── app-control-left.svg │ │ │ │ ├── app-control-right-active.svg │ │ │ │ ├── app-control-right-hover.svg │ │ │ │ ├── app-control-right.svg │ │ │ │ ├── button-border-active.svg │ │ │ │ ├── button-border-focused-hover.svg │ │ │ │ ├── button-border-focused.svg │ │ │ │ ├── button-border-hover.svg │ │ │ │ ├── button-border-insensitive.svg │ │ │ │ ├── button-border.svg │ │ │ │ ├── modal-dialog-button-active.svg │ │ │ │ ├── modal-dialog-button-hover.svg │ │ │ │ ├── modal-dialog-button-insensitive.svg │ │ │ │ ├── modal-dialog-button-left-active.svg │ │ │ │ ├── modal-dialog-button-left-hover.svg │ │ │ │ ├── modal-dialog-button-left-insensitive.svg │ │ │ │ ├── modal-dialog-button-left.svg │ │ │ │ ├── modal-dialog-button-middle-active.svg │ │ │ │ ├── modal-dialog-button-middle-hover.svg │ │ │ │ ├── modal-dialog-button-middle-insensitive.svg │ │ │ │ ├── modal-dialog-button-middle.svg │ │ │ │ ├── modal-dialog-button-right-active.svg │ │ │ │ ├── modal-dialog-button-right-hover.svg │ │ │ │ ├── modal-dialog-button-right-insensitive.svg │ │ │ │ ├── modal-dialog-button-right.svg │ │ │ │ ├── modal-dialog-button.svg │ │ │ │ ├── shutdown-button-border-active.svg │ │ │ │ ├── shutdown-button-border-hover.svg │ │ │ │ └── shutdown-button-border.svg │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── dash │ │ │ │ ├── button-active.svg │ │ │ │ ├── button-horizontal-active.svg │ │ │ │ ├── button-horizontal-hover.svg │ │ │ │ ├── button-horizontal.svg │ │ │ │ ├── button-hover.svg │ │ │ │ ├── button.svg │ │ │ │ ├── dash-bottom.svg │ │ │ │ ├── dash-placeholder.svg │ │ │ │ ├── dash-right.svg │ │ │ │ ├── dash-top.svg │ │ │ │ ├── dash.svg │ │ │ │ └── running-dot.svg │ │ │ ├── entry │ │ │ │ ├── entry-border-focused.svg │ │ │ │ ├── entry-border-insensitive.svg │ │ │ │ └── entry-border.svg │ │ │ ├── menu │ │ │ │ ├── menu-arrow-symbolic.svg │ │ │ │ ├── menu-hover.svg │ │ │ │ ├── menu-separator.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── submenu-open.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── calendar-not-today.svg │ │ │ │ ├── calendar-today.svg │ │ │ │ ├── close-window-active.svg │ │ │ │ ├── close-window-hover.svg │ │ │ │ ├── close-window.svg │ │ │ │ ├── corner-ripple-ltr.svg │ │ │ │ ├── corner-ripple-rtl.svg │ │ │ │ ├── lg.svg │ │ │ │ ├── logged-in-indicator.svg │ │ │ │ ├── message-hover.svg │ │ │ │ ├── message-list-close-active.svg │ │ │ │ ├── message-list-close-hover.svg │ │ │ │ ├── message-list-close.svg │ │ │ │ ├── message.svg │ │ │ │ ├── modal.svg │ │ │ │ ├── more-results.svg │ │ │ │ ├── noise-texture.png │ │ │ │ ├── notification.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── page-indicator-active.svg │ │ │ │ ├── page-indicator-checked.svg │ │ │ │ ├── page-indicator-hover.svg │ │ │ │ ├── page-indicator-inactive.svg │ │ │ │ ├── process-working.svg │ │ │ │ ├── running-dot.svg │ │ │ │ ├── slider-osd.svg │ │ │ │ ├── slider.svg │ │ │ │ ├── summary-counter.svg │ │ │ │ ├── workspace-thumb-bg-rtl.svg │ │ │ │ ├── workspace-thumb-bg.svg │ │ │ │ ├── ws-switch-arrow-down.png │ │ │ │ └── ws-switch-arrow-up.png │ │ │ ├── panel │ │ │ │ ├── panel-button-border-active.svg │ │ │ │ ├── panel-button-border-hover.svg │ │ │ │ ├── panel-button-highlight-wide.svg │ │ │ │ └── panel.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ ├── gnome-shell.css │ │ └── sass │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ └── gnome-shell.scss │ └── 3.22 ├── gtk-2.0-dark │ ├── Arrows │ │ ├── arrow-down-insens.png │ │ ├── arrow-down-prelight.png │ │ ├── arrow-down-small-insens.png │ │ ├── arrow-down-small-prelight.png │ │ ├── arrow-down-small.png │ │ ├── arrow-down.png │ │ ├── arrow-left-insens.png │ │ ├── arrow-left-prelight.png │ │ ├── arrow-left.png │ │ ├── arrow-right-insens.png │ │ ├── arrow-right-prelight.png │ │ ├── arrow-right.png │ │ ├── arrow-up-insens.png │ │ ├── arrow-up-prelight.png │ │ ├── arrow-up-small-insens.png │ │ ├── arrow-up-small-prelight.png │ │ ├── arrow-up-small.png │ │ ├── arrow-up.png │ │ ├── menu-arrow-prelight.png │ │ └── menu-arrow.png │ ├── Buttons │ │ ├── button-default-nohilight.png │ │ ├── button-default.png │ │ ├── button-default.svg │ │ ├── button-insensitive-nohilight.png │ │ ├── button-insensitive.png │ │ ├── button-prelight-nohilight.png │ │ ├── button-prelight.png │ │ ├── button-pressed-nohilight.png │ │ └── button-pressed.png │ ├── Check-Radio │ │ ├── checkbox-checked-insensitive.png │ │ ├── checkbox-checked.png │ │ ├── checkbox-unchecked-insensitive.png │ │ ├── checkbox-unchecked.png │ │ ├── menu-checkbox-checked-hover.png │ │ ├── menu-checkbox-checked-hover.svg │ │ ├── menu-checkbox-checked-insensitive.png │ │ ├── menu-checkbox-checked-insensitive.svg │ │ ├── menu-checkbox-checked.png │ │ ├── menu-checkbox-checked.svg │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ ├── menu-checkbox-unchecked-insensitive.svg │ │ ├── menu-checkbox-unchecked.png │ │ ├── menu-checkbox-unchecked.svg │ │ ├── menu-option-checked-hover.png │ │ ├── menu-option-checked-hover.svg │ │ ├── menu-option-checked-insensitive.png │ │ ├── menu-option-checked-insensitive.svg │ │ ├── menu-option-checked.png │ │ ├── menu-option-checked.svg │ │ ├── menu-option-unchecked-insensitive.png │ │ ├── menu-option-unchecked-insensitive.svg │ │ ├── menu-option-unchecked.png │ │ ├── menu-option-unchecked.svg │ │ ├── option-checked-insensitive.png │ │ ├── option-checked.png │ │ ├── option-unchecked-insensitive.png │ │ └── option-unchecked.png │ ├── Entry │ │ ├── combo-entry-border-active-bg.png │ │ ├── combo-entry-border-active-notebook.png │ │ ├── combo-entry-border-active-rtl-bg.png │ │ ├── combo-entry-border-active-rtl-notebook.png │ │ ├── combo-entry-border-bg.png │ │ ├── combo-entry-border-disabled-bg.png │ │ ├── combo-entry-border-disabled-notebook.png │ │ ├── combo-entry-border-disabled-rtl-bg.png │ │ ├── combo-entry-border-disabled-rtl-notebook.png │ │ ├── combo-entry-border-notebook.png │ │ ├── combo-entry-border-rtl-bg.png │ │ ├── combo-entry-border-rtl-notebook.png │ │ ├── combo-entry-button-active-rtl.png │ │ ├── combo-entry-button-active.png │ │ ├── combo-entry-button-disabled-rtl.png │ │ ├── combo-entry-button-disabled.png │ │ ├── combo-entry-button-rtl.png │ │ ├── combo-entry-button.png │ │ ├── entry-border-active-bg-solid.png │ │ ├── entry-border-active-bg.png │ │ ├── entry-border-active-notebook.png │ │ ├── entry-border-bg-solid.png │ │ ├── entry-border-bg.png │ │ ├── entry-border-disabled-bg.png │ │ ├── entry-border-disabled-notebook.png │ │ ├── entry-border-fill-plain.png │ │ ├── entry-border-fill-solid.png │ │ ├── entry-border-fill.png │ │ ├── entry-border-notebook.png │ │ ├── ff-entry-bg.svg │ │ └── ff-entry.svg │ ├── Expanders │ │ ├── minus.png │ │ └── plus.png │ ├── Handles │ │ ├── handle-h.png │ │ └── handle-v.png │ ├── Lines │ │ ├── line-h.png │ │ ├── line-v.png │ │ └── menu_line_h.png │ ├── Menu-Menubar │ │ └── menubar_button.png │ ├── Menu │ │ └── menuitem.png │ ├── Others │ │ ├── focus.png │ │ ├── null.png │ │ └── tree_header.png │ ├── ProgressBar │ │ ├── progressbar.png │ │ ├── progressbar_v.png │ │ ├── trough-progressbar.png │ │ └── trough-progressbar_v.png │ ├── Range │ │ ├── slider-horiz-prelight.png │ │ ├── slider-horiz.png │ │ ├── slider-vert-prelight.png │ │ ├── slider-vert.png │ │ ├── trough-horizontal.png │ │ └── trough-vertical.png │ ├── Scrollbars │ │ ├── slider-horiz-active.png │ │ ├── slider-horiz-insens.png │ │ ├── slider-horiz-prelight.png │ │ ├── slider-horiz.png │ │ ├── slider-vert-active.png │ │ ├── slider-vert-insens.png │ │ ├── slider-vert-prelight.png │ │ ├── slider-vert.png │ │ ├── trough-scrollbar-horiz.png │ │ └── trough-scrollbar-vert.png │ ├── Shadows │ │ ├── frame-gap-end.png │ │ ├── frame-gap-start.png │ │ └── frame.png │ ├── Spin │ │ ├── down-background-disable-rtl.png │ │ ├── down-background-disable.png │ │ ├── down-background-rtl.png │ │ ├── down-background.png │ │ ├── up-background-disable-rtl.png │ │ ├── up-background-disable.png │ │ ├── up-background-rtl.png │ │ └── up-background.png │ ├── Tabs │ │ ├── notebook-gap-horiz.png │ │ ├── notebook-gap-vert.png │ │ ├── notebook.png │ │ ├── tab-bottom-active.png │ │ ├── tab-bottom.png │ │ ├── tab-left-active.png │ │ ├── tab-left.png │ │ ├── tab-right-active.png │ │ ├── tab-right.png │ │ ├── tab-top-active.png │ │ ├── tab-top.png │ │ └── tab.svg │ ├── Toolbar │ │ ├── inline-toolbar.png │ │ └── toolbar.png │ ├── gtkrc │ └── panel.rc ├── gtk-2.0 │ ├── Arrows │ │ ├── arrow-down-insens.png │ │ ├── arrow-down-prelight.png │ │ ├── arrow-down-small-insens.png │ │ ├── arrow-down-small-prelight.png │ │ ├── arrow-down-small.png │ │ ├── arrow-down.png │ │ ├── arrow-left-insens.png │ │ ├── arrow-left-prelight.png │ │ ├── arrow-left.png │ │ ├── arrow-right-insens.png │ │ ├── arrow-right-prelight.png │ │ ├── arrow-right.png │ │ ├── arrow-up-insens.png │ │ ├── arrow-up-prelight.png │ │ ├── arrow-up-small-insens.png │ │ ├── arrow-up-small-prelight.png │ │ ├── arrow-up-small.png │ │ ├── arrow-up.png │ │ ├── menu-arrow-prelight.png │ │ └── menu-arrow.png │ ├── Buttons │ │ ├── button-default-nohilight.png │ │ ├── button-default.png │ │ ├── button-default.svg │ │ ├── button-insensitive-nohilight.png │ │ ├── button-insensitive.png │ │ ├── button-prelight-nohilight.png │ │ ├── button-prelight.png │ │ ├── button-pressed-alt.png │ │ ├── button-pressed-nohilight.png │ │ └── button-pressed.png │ ├── Check-Radio │ │ ├── checkbox-checked-insensitive.png │ │ ├── checkbox-checked.png │ │ ├── checkbox-unchecked-insensitive.png │ │ ├── checkbox-unchecked.png │ │ ├── menu-checkbox-checked-hover.png │ │ ├── menu-checkbox-checked-hover.svg │ │ ├── menu-checkbox-checked-insensitive.png │ │ ├── menu-checkbox-checked-insensitive.svg │ │ ├── menu-checkbox-checked.png │ │ ├── menu-checkbox-checked.svg │ │ ├── menu-checkbox-unchecked-insensitive.png │ │ ├── menu-checkbox-unchecked-insensitive.svg │ │ ├── menu-checkbox-unchecked.png │ │ ├── menu-checkbox-unchecked.svg │ │ ├── menu-option-checked-hover.png │ │ ├── menu-option-checked-hover.svg │ │ ├── menu-option-checked-insensitive.png │ │ ├── menu-option-checked-insensitive.svg │ │ ├── menu-option-checked.png │ │ ├── menu-option-checked.svg │ │ ├── menu-option-unchecked-insensitive.png │ │ ├── menu-option-unchecked-insensitive.svg │ │ ├── menu-option-unchecked.png │ │ ├── menu-option-unchecked.svg │ │ ├── option-checked-insensitive.png │ │ ├── option-checked.png │ │ ├── option-unchecked-insensitive.png │ │ └── option-unchecked.png │ ├── Entry │ │ ├── combo-entry-border-active-bg.png │ │ ├── combo-entry-border-active-notebook.png │ │ ├── combo-entry-border-active-rtl-bg.png │ │ ├── combo-entry-border-active-rtl-notebook.png │ │ ├── combo-entry-border-bg.png │ │ ├── combo-entry-border-disabled-bg.png │ │ ├── combo-entry-border-disabled-notebook.png │ │ ├── combo-entry-border-disabled-rtl-bg.png │ │ ├── combo-entry-border-disabled-rtl-notebook.png │ │ ├── combo-entry-border-notebook.png │ │ ├── combo-entry-border-rtl-bg.png │ │ ├── combo-entry-border-rtl-notebook.png │ │ ├── combo-entry-button-active-rtl.png │ │ ├── combo-entry-button-active.png │ │ ├── combo-entry-button-disabled-rtl.png │ │ ├── combo-entry-button-disabled.png │ │ ├── combo-entry-button-rtl.png │ │ ├── combo-entry-button.png │ │ ├── entry-border-active-bg-solid.png │ │ ├── entry-border-active-bg.png │ │ ├── entry-border-active-notebook.png │ │ ├── entry-border-bg-solid.png │ │ ├── entry-border-bg.png │ │ ├── entry-border-disabled-bg.png │ │ ├── entry-border-disabled-notebook.png │ │ ├── entry-border-fill-plain.png │ │ ├── entry-border-fill-solid.png │ │ ├── entry-border-fill.png │ │ └── entry-border-notebook.png │ ├── Expanders │ │ ├── minus.png │ │ └── plus.png │ ├── Handles │ │ ├── handle-h.png │ │ └── handle-v.png │ ├── Lines │ │ ├── line-h.png │ │ ├── line-v.png │ │ └── menu_line_h.png │ ├── Menu-Menubar │ │ └── menubar_button.png │ ├── Menu │ │ └── menuitem.png │ ├── Others │ │ ├── focus.png │ │ ├── null.png │ │ └── tree_header.png │ ├── ProgressBar │ │ ├── progressbar.png │ │ ├── progressbar_v.png │ │ ├── trough-progressbar.png │ │ └── trough-progressbar_v.png │ ├── Range │ │ ├── slider-horiz-prelight.png │ │ ├── slider-horiz.png │ │ ├── slider-vert-prelight.png │ │ ├── slider-vert.png │ │ ├── trough-horizontal.png │ │ └── trough-vertical.png │ ├── Scrollbars │ │ ├── slider-horiz-active.png │ │ ├── slider-horiz-insens.png │ │ ├── slider-horiz-prelight.png │ │ ├── slider-horiz.png │ │ ├── slider-vert-active.png │ │ ├── slider-vert-insens.png │ │ ├── slider-vert-prelight.png │ │ ├── slider-vert.png │ │ ├── trough-scrollbar-horiz.png │ │ └── trough-scrollbar-vert.png │ ├── Shadows │ │ ├── frame-gap-end.png │ │ ├── frame-gap-start.png │ │ └── frame.png │ ├── Spin │ │ ├── down-background-disable-rtl.png │ │ ├── down-background-disable.png │ │ ├── down-background-rtl.png │ │ ├── down-background.png │ │ ├── up-background-disable-rtl.png │ │ ├── up-background-disable.png │ │ ├── up-background-rtl.png │ │ └── up-background.png │ ├── Tabs │ │ ├── notebook-gap-horiz.png │ │ ├── notebook-gap-vert.png │ │ ├── notebook.png │ │ ├── tab-bottom-active.png │ │ ├── tab-bottom.png │ │ ├── tab-left-active.png │ │ ├── tab-left.png │ │ ├── tab-right-active.png │ │ ├── tab-right.png │ │ ├── tab-top-active.png │ │ ├── tab-top.png │ │ └── tab.svg │ ├── Toolbar │ │ ├── inline-toolbar.png │ │ └── toolbar.png │ ├── gtkrc │ ├── gtkrc-light │ └── panel.rc ├── gtk-3.0 │ ├── 3.10 │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── checkbox-checked-dark.png │ │ │ ├── checkbox-checked-dark@2.png │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ ├── checkbox-checked-selected-dark.png │ │ │ ├── checkbox-checked-selected-dark@2.png │ │ │ ├── checkbox-checked-selected.png │ │ │ ├── checkbox-checked-selected@2.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked@2.png │ │ │ ├── checkbox-mixed-dark.png │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ ├── checkbox-mixed-selected-dark.png │ │ │ ├── checkbox-mixed-selected-dark@2.png │ │ │ ├── checkbox-mixed-selected.png │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed@2.png │ │ │ ├── checkbox-unchecked-dark.png │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ ├── checkbox-unchecked-selected-dark.png │ │ │ ├── checkbox-unchecked-selected-dark@2.png │ │ │ ├── checkbox-unchecked-selected.png │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked@2.png │ │ │ ├── dnd-counter.svg │ │ │ ├── grid-selection-checked-dark.png │ │ │ ├── grid-selection-checked-dark@2.png │ │ │ ├── grid-selection-checked.png │ │ │ ├── grid-selection-checked@2.png │ │ │ ├── grid-selection-unchecked-dark.png │ │ │ ├── grid-selection-unchecked-dark@2.png │ │ │ ├── grid-selection-unchecked.png │ │ │ ├── grid-selection-unchecked@2.png │ │ │ ├── header-separator-dark.png │ │ │ ├── header-separator-dark@2.png │ │ │ ├── header-separator-left-dark.png │ │ │ ├── header-separator-left-dark@2.png │ │ │ ├── header-separator-left.png │ │ │ ├── header-separator-left@2.png │ │ │ ├── header-separator-selectionmode-dark.png │ │ │ ├── header-separator-selectionmode-dark@2.png │ │ │ ├── header-separator-selectionmode-left-dark.png │ │ │ ├── header-separator-selectionmode-left-dark@2.png │ │ │ ├── header-separator-selectionmode-left.png │ │ │ ├── header-separator-selectionmode-left@2.png │ │ │ ├── header-separator-selectionmode.png │ │ │ ├── header-separator-selectionmode@2.png │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── noise-texture-dark.png │ │ │ ├── noise-texture-light.png │ │ │ ├── pane-separator-grip-dark.svg │ │ │ ├── pane-separator-grip-prelight-dark.svg │ │ │ ├── pane-separator-grip-prelight.svg │ │ │ ├── pane-separator-grip-vertical-dark.svg │ │ │ ├── pane-separator-grip-vertical-prelight-dark.svg │ │ │ ├── pane-separator-grip-vertical-prelight.svg │ │ │ ├── pane-separator-grip-vertical.svg │ │ │ ├── pane-separator-grip.svg │ │ │ ├── radio-checked-dark.png │ │ │ ├── radio-checked-dark@2.png │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked-insensitive@2.png │ │ │ ├── radio-checked-selected-dark.png │ │ │ ├── radio-checked-selected-dark@2.png │ │ │ ├── radio-checked-selected.png │ │ │ ├── radio-checked-selected@2.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-checked@2.png │ │ │ ├── radio-mixed-dark.png │ │ │ ├── radio-mixed-dark@2.png │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ ├── radio-mixed-selected-dark.png │ │ │ ├── radio-mixed-selected-dark@2.png │ │ │ ├── radio-mixed-selected.png │ │ │ ├── radio-mixed-selected@2.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed@2.png │ │ │ ├── radio-unchecked-dark.png │ │ │ ├── radio-unchecked-dark@2.png │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ ├── radio-unchecked-selected-dark.png │ │ │ ├── radio-unchecked-selected-dark@2.png │ │ │ ├── radio-unchecked-selected.png │ │ │ ├── radio-unchecked-selected@2.png │ │ │ ├── radio-unchecked.png │ │ │ ├── radio-unchecked@2.png │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-down-backdrop-dark.png │ │ │ ├── scale-slider-down-backdrop-dark@2.png │ │ │ ├── scale-slider-down-backdrop.png │ │ │ ├── scale-slider-down-backdrop@2.png │ │ │ ├── scale-slider-up-backdrop-dark.png │ │ │ ├── scale-slider-up-backdrop-dark@2.png │ │ │ ├── scale-slider-up-backdrop.png │ │ │ ├── scale-slider-up-backdrop@2.png │ │ │ ├── scrollbar-slider-active-dark.png │ │ │ ├── scrollbar-slider-active-dark@2.png │ │ │ ├── scrollbar-slider-active.png │ │ │ ├── scrollbar-slider-active@2.png │ │ │ ├── scrollbar-slider-dark.png │ │ │ ├── scrollbar-slider-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active-dark.png │ │ │ ├── scrollbar-slider-horizontal-active-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active.png │ │ │ ├── scrollbar-slider-horizontal-active@2.png │ │ │ ├── scrollbar-slider-horizontal-dark.png │ │ │ ├── scrollbar-slider-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover.png │ │ │ ├── scrollbar-slider-horizontal-hover@2.png │ │ │ ├── scrollbar-slider-horizontal.png │ │ │ ├── scrollbar-slider-horizontal@2.png │ │ │ ├── scrollbar-slider-hover-dark.png │ │ │ ├── scrollbar-slider-hover-dark@2.png │ │ │ ├── scrollbar-slider-hover.png │ │ │ ├── scrollbar-slider-hover@2.png │ │ │ ├── scrollbar-slider.png │ │ │ ├── scrollbar-slider@2.png │ │ │ ├── scrollbar-trough-dark.png │ │ │ ├── scrollbar-trough-dark@2.png │ │ │ ├── scrollbar-trough-horizontal-dark.png │ │ │ ├── scrollbar-trough-horizontal-dark@2.png │ │ │ ├── scrollbar-trough-horizontal.png │ │ │ ├── scrollbar-trough-horizontal@2.png │ │ │ ├── scrollbar-trough.png │ │ │ ├── scrollbar-trough@2.png │ │ │ ├── slider-active-dark.png │ │ │ ├── slider-active-dark@2.png │ │ │ ├── slider-active.png │ │ │ ├── slider-active@2.png │ │ │ ├── slider-dark.png │ │ │ ├── slider-dark@2.png │ │ │ ├── slider-hover-dark.png │ │ │ ├── slider-hover-dark@2.png │ │ │ ├── slider-hover.png │ │ │ ├── slider-hover@2.png │ │ │ ├── slider-insensitive-dark.png │ │ │ ├── slider-insensitive-dark@2.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-insensitive@2.png │ │ │ ├── slider.png │ │ │ ├── slider@2.png │ │ │ ├── switch-active-dark.png │ │ │ ├── switch-active-dark@2.png │ │ │ ├── switch-active-insensitive-dark.png │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ ├── switch-active-insensitive-selected.png │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ ├── switch-active-insensitive.png │ │ │ ├── switch-active-insensitive@2.png │ │ │ ├── switch-active-selected.png │ │ │ ├── switch-active-selected@2.png │ │ │ ├── switch-active.png │ │ │ ├── switch-active@2.png │ │ │ ├── switch-dark.png │ │ │ ├── switch-dark@2.png │ │ │ ├── switch-insensitive-dark.png │ │ │ ├── switch-insensitive-dark@2.png │ │ │ ├── switch-insensitive-selected.png │ │ │ ├── switch-insensitive-selected@2.png │ │ │ ├── switch-insensitive.png │ │ │ ├── switch-insensitive@2.png │ │ │ ├── switch-selected.png │ │ │ ├── switch-selected@2.png │ │ │ ├── switch-slider-dark.png │ │ │ ├── switch-slider-dark@2.png │ │ │ ├── switch-slider-insensitive-dark.png │ │ │ ├── switch-slider-insensitive-dark@2.png │ │ │ ├── switch-slider-insensitive.png │ │ │ ├── switch-slider-insensitive@2.png │ │ │ ├── switch-slider.png │ │ │ ├── switch-slider@2.png │ │ │ ├── switch.png │ │ │ ├── switch@2.png │ │ │ ├── thumbnail-frame.png │ │ │ ├── titlebutton-close-prelight.png │ │ │ ├── titlebutton-close-prelight@2.png │ │ │ ├── titlebutton-max-prelight.png │ │ │ ├── titlebutton-max-prelight@2.png │ │ │ ├── titlebutton-min-prelight.png │ │ │ ├── titlebutton-min-prelight@2.png │ │ │ ├── titlebutton-pressed.png │ │ │ ├── titlebutton-pressed@2.png │ │ │ ├── titlebutton-unfocused.png │ │ │ ├── titlebutton-unfocused@2.png │ │ │ ├── titlebutton.png │ │ │ └── titlebutton@2.png │ │ ├── borders.txt │ │ ├── borders │ │ │ ├── button-active-border-dark.png │ │ │ ├── button-active-border-dark@2.png │ │ │ ├── button-active-border-destructive-dark.png │ │ │ ├── button-active-border-destructive-dark@2.png │ │ │ ├── button-active-border-destructive.png │ │ │ ├── button-active-border-destructive@2.png │ │ │ ├── button-active-border-suggested-dark.png │ │ │ ├── button-active-border-suggested-dark@2.png │ │ │ ├── button-active-border-suggested.png │ │ │ ├── button-active-border-suggested@2.png │ │ │ ├── button-active-border.png │ │ │ ├── button-active-border@2.png │ │ │ ├── button-border-dark.png │ │ │ ├── button-border-dark@2.png │ │ │ ├── button-border-default-dark.png │ │ │ ├── button-border-default-dark@2.png │ │ │ ├── button-border-default.png │ │ │ ├── button-border-default@2.png │ │ │ ├── button-border-destructive-dark.png │ │ │ ├── button-border-destructive-dark@2.png │ │ │ ├── button-border-destructive.png │ │ │ ├── button-border-destructive@2.png │ │ │ ├── button-border-suggested-dark.png │ │ │ ├── button-border-suggested-dark@2.png │ │ │ ├── button-border-suggested.png │ │ │ ├── button-border-suggested@2.png │ │ │ ├── button-border.png │ │ │ ├── button-border@2.png │ │ │ ├── generic-border-dark.png │ │ │ ├── generic-border-dark@2.png │ │ │ ├── generic-border-focused-dark.png │ │ │ ├── generic-border-focused-dark@2.png │ │ │ ├── generic-border-focused.png │ │ │ ├── generic-border-focused@2.png │ │ │ ├── generic-border.png │ │ │ ├── generic-border@2.png │ │ │ ├── left-button-active-border-dark.png │ │ │ ├── left-button-active-border-dark@2.png │ │ │ ├── left-button-active-border.png │ │ │ ├── left-button-active-border@2.png │ │ │ ├── left-button-border-dark.png │ │ │ ├── left-button-border-dark@2.png │ │ │ ├── left-button-border.png │ │ │ ├── left-button-border@2.png │ │ │ ├── middle-button-active-border-dark.png │ │ │ ├── middle-button-active-border-dark@2.png │ │ │ ├── middle-button-active-border.png │ │ │ ├── middle-button-active-border@2.png │ │ │ ├── middle-button-border-dark.png │ │ │ ├── middle-button-border-dark@2.png │ │ │ ├── middle-button-border.png │ │ │ ├── middle-button-border@2.png │ │ │ ├── osd-border.png │ │ │ ├── osd-border@2.png │ │ │ ├── right-button-active-border-dark.png │ │ │ ├── right-button-active-border-dark@2.png │ │ │ ├── right-button-active-border.png │ │ │ ├── right-button-active-border@2.png │ │ │ ├── right-button-border-dark.png │ │ │ ├── right-button-border-dark@2.png │ │ │ ├── right-button-border.png │ │ │ ├── right-button-border@2.png │ │ │ ├── scale-highlight-border-dark.png │ │ │ ├── scale-highlight-border-dark@2.png │ │ │ ├── scale-highlight-border.png │ │ │ ├── scale-highlight-border@2.png │ │ │ ├── scale-trough-border-dark.png │ │ │ ├── scale-trough-border-dark@2.png │ │ │ ├── scale-trough-border.png │ │ │ ├── scale-trough-border@2.png │ │ │ ├── scale-trough-osd-border.png │ │ │ ├── scale-trough-osd-border@2.png │ │ │ ├── scale-trough-vertical-border-dark.png │ │ │ ├── scale-trough-vertical-border-dark@2.png │ │ │ ├── scale-trough-vertical-border.png │ │ │ ├── scale-trough-vertical-border@2.png │ │ │ ├── scale-vertical-highlight-border-dark.png │ │ │ ├── scale-vertical-highlight-border-dark@2.png │ │ │ ├── scale-vertical-highlight-border.png │ │ │ ├── scale-vertical-highlight-border@2.png │ │ │ ├── tab-active-dark.png │ │ │ ├── tab-active-dark@2.png │ │ │ ├── tab-active-darker.png │ │ │ ├── tab-active-darker@2.png │ │ │ ├── tab-active.png │ │ │ ├── tab-active@2.png │ │ │ ├── terminal-tab-active-dark.png │ │ │ ├── terminal-tab-active-dark@2.png │ │ │ ├── terminal-tab-active-darker.png │ │ │ ├── terminal-tab-active-darker@2.png │ │ │ ├── terminal-tab-active.png │ │ │ ├── terminal-tab-active@2.png │ │ │ ├── tooltip-generic-border-focused.png │ │ │ ├── tooltip-generic-border-focused@2.png │ │ │ ├── tooltip-generic-border.png │ │ │ ├── tooltip-generic-border@2.png │ │ │ ├── trough-border-dark.png │ │ │ ├── trough-border-dark@2.png │ │ │ ├── trough-border-selected.png │ │ │ ├── trough-border-selected@2.png │ │ │ ├── trough-border.png │ │ │ ├── trough-border@2.png │ │ │ ├── trough-vertical-border-dark.png │ │ │ ├── trough-vertical-border-dark@2.png │ │ │ ├── trough-vertical-border.png │ │ │ └── trough-vertical-border@2.png │ │ ├── gnome-applications-dark-overrides.css │ │ ├── gnome-applications-darker-overrides.css │ │ ├── gnome-applications.css │ │ ├── granite.css │ │ ├── gtk-dark.css │ │ ├── gtk-fallback.css │ │ ├── gtk-light.css │ │ ├── gtk-main-common.css │ │ ├── gtk-main-dark.css │ │ ├── gtk-main-darker.css │ │ ├── gtk-main.css │ │ ├── gtk-widgets-3_10-dark-overrides.css │ │ ├── gtk-widgets-3_10-darker-overrides.css │ │ ├── gtk-widgets-3_10.css │ │ ├── gtk-widgets-assets-dark.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets-backgrounds.css │ │ ├── gtk-widgets-borders-dark.css │ │ ├── gtk-widgets-borders-darker-overrides.css │ │ ├── gtk-widgets-borders.css │ │ ├── gtk-widgets-dark-overrides.css │ │ ├── gtk-widgets-darker-overrides.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── render-assets.sh │ │ ├── render-borders.sh │ │ ├── settings.ini │ │ ├── thumbnail-dark.png │ │ ├── thumbnail.png │ │ ├── unity-darker.css │ │ ├── unity.css │ │ ├── window-controls-dark-overrides.css │ │ └── window-controls-darker-overrides.css │ ├── 3.12 │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── checkbox-checked-dark.png │ │ │ ├── checkbox-checked-dark@2.png │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ ├── checkbox-checked-selected-dark.png │ │ │ ├── checkbox-checked-selected-dark@2.png │ │ │ ├── checkbox-checked-selected.png │ │ │ ├── checkbox-checked-selected@2.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked@2.png │ │ │ ├── checkbox-mixed-dark.png │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ ├── checkbox-mixed-selected-dark.png │ │ │ ├── checkbox-mixed-selected-dark@2.png │ │ │ ├── checkbox-mixed-selected.png │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed@2.png │ │ │ ├── checkbox-unchecked-dark.png │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ ├── checkbox-unchecked-selected-dark.png │ │ │ ├── checkbox-unchecked-selected-dark@2.png │ │ │ ├── checkbox-unchecked-selected.png │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked@2.png │ │ │ ├── dnd-counter.svg │ │ │ ├── grid-selection-checked-dark.png │ │ │ ├── grid-selection-checked-dark@2.png │ │ │ ├── grid-selection-checked.png │ │ │ ├── grid-selection-checked@2.png │ │ │ ├── grid-selection-unchecked-dark.png │ │ │ ├── grid-selection-unchecked-dark@2.png │ │ │ ├── grid-selection-unchecked.png │ │ │ ├── grid-selection-unchecked@2.png │ │ │ ├── header-separator-dark.png │ │ │ ├── header-separator-dark@2.png │ │ │ ├── header-separator-left-dark.png │ │ │ ├── header-separator-left-dark@2.png │ │ │ ├── header-separator-left.png │ │ │ ├── header-separator-left@2.png │ │ │ ├── header-separator-selectionmode-dark.png │ │ │ ├── header-separator-selectionmode-dark@2.png │ │ │ ├── header-separator-selectionmode-left-dark.png │ │ │ ├── header-separator-selectionmode-left-dark@2.png │ │ │ ├── header-separator-selectionmode-left.png │ │ │ ├── header-separator-selectionmode-left@2.png │ │ │ ├── header-separator-selectionmode.png │ │ │ ├── header-separator-selectionmode@2.png │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── noise-texture-dark.png │ │ │ ├── noise-texture-light.png │ │ │ ├── pane-separator-grip-dark.svg │ │ │ ├── pane-separator-grip-prelight-dark.svg │ │ │ ├── pane-separator-grip-prelight.svg │ │ │ ├── pane-separator-grip-vertical-dark.svg │ │ │ ├── pane-separator-grip-vertical-prelight-dark.svg │ │ │ ├── pane-separator-grip-vertical-prelight.svg │ │ │ ├── pane-separator-grip-vertical.svg │ │ │ ├── pane-separator-grip.svg │ │ │ ├── radio-checked-dark.png │ │ │ ├── radio-checked-dark@2.png │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked-insensitive@2.png │ │ │ ├── radio-checked-selected-dark.png │ │ │ ├── radio-checked-selected-dark@2.png │ │ │ ├── radio-checked-selected.png │ │ │ ├── radio-checked-selected@2.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-checked@2.png │ │ │ ├── radio-mixed-dark.png │ │ │ ├── radio-mixed-dark@2.png │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ ├── radio-mixed-selected-dark.png │ │ │ ├── radio-mixed-selected-dark@2.png │ │ │ ├── radio-mixed-selected.png │ │ │ ├── radio-mixed-selected@2.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed@2.png │ │ │ ├── radio-unchecked-dark.png │ │ │ ├── radio-unchecked-dark@2.png │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ ├── radio-unchecked-selected-dark.png │ │ │ ├── radio-unchecked-selected-dark@2.png │ │ │ ├── radio-unchecked-selected.png │ │ │ ├── radio-unchecked-selected@2.png │ │ │ ├── radio-unchecked.png │ │ │ ├── radio-unchecked@2.png │ │ │ ├── resize-grip.svg │ │ │ ├── scale-slider-down-backdrop-dark.png │ │ │ ├── scale-slider-down-backdrop-dark@2.png │ │ │ ├── scale-slider-down-backdrop.png │ │ │ ├── scale-slider-down-backdrop@2.png │ │ │ ├── scale-slider-up-backdrop-dark.png │ │ │ ├── scale-slider-up-backdrop-dark@2.png │ │ │ ├── scale-slider-up-backdrop.png │ │ │ ├── scale-slider-up-backdrop@2.png │ │ │ ├── scrollbar-slider-active-dark.png │ │ │ ├── scrollbar-slider-active-dark@2.png │ │ │ ├── scrollbar-slider-active.png │ │ │ ├── scrollbar-slider-active@2.png │ │ │ ├── scrollbar-slider-dark.png │ │ │ ├── scrollbar-slider-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active-dark.png │ │ │ ├── scrollbar-slider-horizontal-active-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active.png │ │ │ ├── scrollbar-slider-horizontal-active@2.png │ │ │ ├── scrollbar-slider-horizontal-dark.png │ │ │ ├── scrollbar-slider-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover.png │ │ │ ├── scrollbar-slider-horizontal-hover@2.png │ │ │ ├── scrollbar-slider-horizontal.png │ │ │ ├── scrollbar-slider-horizontal@2.png │ │ │ ├── scrollbar-slider-hover-dark.png │ │ │ ├── scrollbar-slider-hover-dark@2.png │ │ │ ├── scrollbar-slider-hover.png │ │ │ ├── scrollbar-slider-hover@2.png │ │ │ ├── scrollbar-slider.png │ │ │ ├── scrollbar-slider@2.png │ │ │ ├── scrollbar-trough-dark.png │ │ │ ├── scrollbar-trough-dark@2.png │ │ │ ├── scrollbar-trough-horizontal-dark.png │ │ │ ├── scrollbar-trough-horizontal-dark@2.png │ │ │ ├── scrollbar-trough-horizontal.png │ │ │ ├── scrollbar-trough-horizontal@2.png │ │ │ ├── scrollbar-trough.png │ │ │ ├── scrollbar-trough@2.png │ │ │ ├── slider-active-dark.png │ │ │ ├── slider-active-dark@2.png │ │ │ ├── slider-active.png │ │ │ ├── slider-active@2.png │ │ │ ├── slider-dark.png │ │ │ ├── slider-dark@2.png │ │ │ ├── slider-hover-dark.png │ │ │ ├── slider-hover-dark@2.png │ │ │ ├── slider-hover.png │ │ │ ├── slider-hover@2.png │ │ │ ├── slider-insensitive-dark.png │ │ │ ├── slider-insensitive-dark@2.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-insensitive@2.png │ │ │ ├── slider.png │ │ │ ├── slider@2.png │ │ │ ├── switch-active-dark.png │ │ │ ├── switch-active-dark@2.png │ │ │ ├── switch-active-insensitive-dark.png │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ ├── switch-active-insensitive-selected.png │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ ├── switch-active-insensitive.png │ │ │ ├── switch-active-insensitive@2.png │ │ │ ├── switch-active-selected.png │ │ │ ├── switch-active-selected@2.png │ │ │ ├── switch-active.png │ │ │ ├── switch-active@2.png │ │ │ ├── switch-dark.png │ │ │ ├── switch-dark@2.png │ │ │ ├── switch-insensitive-dark.png │ │ │ ├── switch-insensitive-dark@2.png │ │ │ ├── switch-insensitive-selected.png │ │ │ ├── switch-insensitive-selected@2.png │ │ │ ├── switch-insensitive.png │ │ │ ├── switch-insensitive@2.png │ │ │ ├── switch-selected.png │ │ │ ├── switch-selected@2.png │ │ │ ├── switch-slider-dark.png │ │ │ ├── switch-slider-dark@2.png │ │ │ ├── switch-slider-insensitive-dark.png │ │ │ ├── switch-slider-insensitive-dark@2.png │ │ │ ├── switch-slider-insensitive.png │ │ │ ├── switch-slider-insensitive@2.png │ │ │ ├── switch-slider.png │ │ │ ├── switch-slider@2.png │ │ │ ├── switch.png │ │ │ ├── switch@2.png │ │ │ ├── thumbnail-frame.png │ │ │ ├── titlebutton-close-active.png │ │ │ ├── titlebutton-close-active@2.png │ │ │ ├── titlebutton-close-hover.png │ │ │ ├── titlebutton-close-hover@2.png │ │ │ ├── titlebutton-maximize-active.png │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ ├── titlebutton-maximize-hover.png │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ ├── titlebutton-minimize-active.png │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ ├── titlebutton-minimize-hover.png │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ ├── titlebutton-unfocused.png │ │ │ ├── titlebutton-unfocused@2.png │ │ │ ├── titlebutton.png │ │ │ └── titlebutton@2.png │ │ ├── borders.txt │ │ ├── borders │ │ │ ├── button-active-border-dark.png │ │ │ ├── button-active-border-dark@2.png │ │ │ ├── button-active-border-destructive-dark.png │ │ │ ├── button-active-border-destructive-dark@2.png │ │ │ ├── button-active-border-destructive.png │ │ │ ├── button-active-border-destructive@2.png │ │ │ ├── button-active-border-suggested-dark.png │ │ │ ├── button-active-border-suggested-dark@2.png │ │ │ ├── button-active-border-suggested.png │ │ │ ├── button-active-border-suggested@2.png │ │ │ ├── button-active-border.png │ │ │ ├── button-active-border@2.png │ │ │ ├── button-border-dark.png │ │ │ ├── button-border-dark@2.png │ │ │ ├── button-border-default-dark.png │ │ │ ├── button-border-default-dark@2.png │ │ │ ├── button-border-default.png │ │ │ ├── button-border-default@2.png │ │ │ ├── button-border-destructive-dark.png │ │ │ ├── button-border-destructive-dark@2.png │ │ │ ├── button-border-destructive.png │ │ │ ├── button-border-destructive@2.png │ │ │ ├── button-border-suggested-dark.png │ │ │ ├── button-border-suggested-dark@2.png │ │ │ ├── button-border-suggested.png │ │ │ ├── button-border-suggested@2.png │ │ │ ├── button-border.png │ │ │ ├── button-border@2.png │ │ │ ├── generic-border-dark.png │ │ │ ├── generic-border-dark@2.png │ │ │ ├── generic-border-focused-dark.png │ │ │ ├── generic-border-focused-dark@2.png │ │ │ ├── generic-border-focused.png │ │ │ ├── generic-border-focused@2.png │ │ │ ├── generic-border.png │ │ │ ├── generic-border@2.png │ │ │ ├── left-button-active-border-dark.png │ │ │ ├── left-button-active-border-dark@2.png │ │ │ ├── left-button-active-border.png │ │ │ ├── left-button-active-border@2.png │ │ │ ├── left-button-border-dark.png │ │ │ ├── left-button-border-dark@2.png │ │ │ ├── left-button-border.png │ │ │ ├── left-button-border@2.png │ │ │ ├── middle-button-active-border-dark.png │ │ │ ├── middle-button-active-border-dark@2.png │ │ │ ├── middle-button-active-border.png │ │ │ ├── middle-button-active-border@2.png │ │ │ ├── middle-button-border-dark.png │ │ │ ├── middle-button-border-dark@2.png │ │ │ ├── middle-button-border.png │ │ │ ├── middle-button-border@2.png │ │ │ ├── osd-border.png │ │ │ ├── osd-border@2.png │ │ │ ├── right-button-active-border-dark.png │ │ │ ├── right-button-active-border-dark@2.png │ │ │ ├── right-button-active-border.png │ │ │ ├── right-button-active-border@2.png │ │ │ ├── right-button-border-dark.png │ │ │ ├── right-button-border-dark@2.png │ │ │ ├── right-button-border.png │ │ │ ├── right-button-border@2.png │ │ │ ├── scale-highlight-border-dark.png │ │ │ ├── scale-highlight-border-dark@2.png │ │ │ ├── scale-highlight-border.png │ │ │ ├── scale-highlight-border@2.png │ │ │ ├── scale-trough-border-dark.png │ │ │ ├── scale-trough-border-dark@2.png │ │ │ ├── scale-trough-border.png │ │ │ ├── scale-trough-border@2.png │ │ │ ├── scale-trough-osd-border.png │ │ │ ├── scale-trough-osd-border@2.png │ │ │ ├── scale-trough-vertical-border-dark.png │ │ │ ├── scale-trough-vertical-border-dark@2.png │ │ │ ├── scale-trough-vertical-border.png │ │ │ ├── scale-trough-vertical-border@2.png │ │ │ ├── scale-vertical-highlight-border-dark.png │ │ │ ├── scale-vertical-highlight-border-dark@2.png │ │ │ ├── scale-vertical-highlight-border.png │ │ │ ├── scale-vertical-highlight-border@2.png │ │ │ ├── tab-active-dark.png │ │ │ ├── tab-active-dark@2.png │ │ │ ├── tab-active-darker.png │ │ │ ├── tab-active-darker@2.png │ │ │ ├── tab-active.png │ │ │ ├── tab-active@2.png │ │ │ ├── terminal-tab-active-dark.png │ │ │ ├── terminal-tab-active-dark@2.png │ │ │ ├── terminal-tab-active-darker.png │ │ │ ├── terminal-tab-active-darker@2.png │ │ │ ├── terminal-tab-active.png │ │ │ ├── terminal-tab-active@2.png │ │ │ ├── tooltip-generic-border-focused.png │ │ │ ├── tooltip-generic-border-focused@2.png │ │ │ ├── tooltip-generic-border.png │ │ │ ├── tooltip-generic-border@2.png │ │ │ ├── trough-border-dark.png │ │ │ ├── trough-border-dark@2.png │ │ │ ├── trough-border-selected.png │ │ │ ├── trough-border-selected@2.png │ │ │ ├── trough-border.png │ │ │ ├── trough-border@2.png │ │ │ ├── trough-vertical-border-dark.png │ │ │ ├── trough-vertical-border-dark@2.png │ │ │ ├── trough-vertical-border.png │ │ │ └── trough-vertical-border@2.png │ │ ├── dark-tabs.css │ │ ├── darker-tabs.css │ │ ├── gnome-applications-dark-overrides.css │ │ ├── gnome-applications-darker-overrides.css │ │ ├── gnome-applications.css │ │ ├── granite.css │ │ ├── gtk-dark.css │ │ ├── gtk-fallback.css │ │ ├── gtk-light.css │ │ ├── gtk-main-common.css │ │ ├── gtk-main-dark.css │ │ ├── gtk-main-darker.css │ │ ├── gtk-main.css │ │ ├── gtk-widgets-assets-dark.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets-backgrounds.css │ │ ├── gtk-widgets-borders-dark.css │ │ ├── gtk-widgets-borders-darker-overrides.css │ │ ├── gtk-widgets-borders.css │ │ ├── gtk-widgets-dark-overrides.css │ │ ├── gtk-widgets-darker-overrides.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── render-assets.sh │ │ ├── render-borders.sh │ │ ├── settings.ini │ │ ├── tabs.css │ │ ├── thumbnail-dark.png │ │ ├── thumbnail.png │ │ ├── unity-darker.css │ │ ├── unity.css │ │ ├── window-controls-dark-overrides.css │ │ ├── window-controls-darker-overrides.css │ │ └── window-controls.css │ ├── 3.14 │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── checkbox-checked-dark.png │ │ │ ├── checkbox-checked-dark@2.png │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected-dark.png │ │ │ ├── checkbox-checked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ ├── checkbox-checked-selected-dark.png │ │ │ ├── checkbox-checked-selected-dark@2.png │ │ │ ├── checkbox-checked-selected.png │ │ │ ├── checkbox-checked-selected@2.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked@2.png │ │ │ ├── checkbox-mixed-dark.png │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ ├── checkbox-mixed-selected-dark.png │ │ │ ├── checkbox-mixed-selected-dark@2.png │ │ │ ├── checkbox-mixed-selected.png │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed@2.png │ │ │ ├── checkbox-unchecked-dark.png │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ ├── checkbox-unchecked-selected-dark.png │ │ │ ├── checkbox-unchecked-selected-dark@2.png │ │ │ ├── checkbox-unchecked-selected.png │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked@2.png │ │ │ ├── grid-selection-checked-dark.png │ │ │ ├── grid-selection-checked-dark@2.png │ │ │ ├── grid-selection-checked.png │ │ │ ├── grid-selection-checked@2.png │ │ │ ├── grid-selection-unchecked-dark.png │ │ │ ├── grid-selection-unchecked-dark@2.png │ │ │ ├── grid-selection-unchecked.png │ │ │ ├── grid-selection-unchecked@2.png │ │ │ ├── header-separator-dark.png │ │ │ ├── header-separator-dark@2.png │ │ │ ├── header-separator-left-dark.png │ │ │ ├── header-separator-left-dark@2.png │ │ │ ├── header-separator-left.png │ │ │ ├── header-separator-left@2.png │ │ │ ├── header-separator-right-dark.png │ │ │ ├── header-separator-right-dark@2.png │ │ │ ├── header-separator-right.png │ │ │ ├── header-separator-right@2.png │ │ │ ├── header-separator-selectionmode-dark.png │ │ │ ├── header-separator-selectionmode-dark@2.png │ │ │ ├── header-separator-selectionmode-left-dark.png │ │ │ ├── header-separator-selectionmode-left-dark@2.png │ │ │ ├── header-separator-selectionmode-left.png │ │ │ ├── header-separator-selectionmode-left@2.png │ │ │ ├── header-separator-selectionmode-right-dark.png │ │ │ ├── header-separator-selectionmode-right-dark@2.png │ │ │ ├── header-separator-selectionmode-right.png │ │ │ ├── header-separator-selectionmode-right@2.png │ │ │ ├── header-separator-selectionmode.png │ │ │ ├── header-separator-selectionmode@2.png │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── radio-checked-dark.png │ │ │ ├── radio-checked-dark@2.png │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ ├── radio-checked-insensitive-selected-dark.png │ │ │ ├── radio-checked-insensitive-selected-dark@2.png │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked-insensitive@2.png │ │ │ ├── radio-checked-selected-dark.png │ │ │ ├── radio-checked-selected-dark@2.png │ │ │ ├── radio-checked-selected.png │ │ │ ├── radio-checked-selected@2.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-checked@2.png │ │ │ ├── radio-mixed-dark.png │ │ │ ├── radio-mixed-dark@2.png │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected-dark.png │ │ │ ├── radio-mixed-insensitive-selected-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ ├── radio-mixed-selected-dark.png │ │ │ ├── radio-mixed-selected-dark@2.png │ │ │ ├── radio-mixed-selected.png │ │ │ ├── radio-mixed-selected@2.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed@2.png │ │ │ ├── radio-unchecked-dark.png │ │ │ ├── radio-unchecked-dark@2.png │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected-dark.png │ │ │ ├── radio-unchecked-insensitive-selected-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ ├── radio-unchecked-selected-dark.png │ │ │ ├── radio-unchecked-selected-dark@2.png │ │ │ ├── radio-unchecked-selected.png │ │ │ ├── radio-unchecked-selected@2.png │ │ │ ├── radio-unchecked.png │ │ │ ├── radio-unchecked@2.png │ │ │ ├── scrollbar-slider-active-dark.png │ │ │ ├── scrollbar-slider-active-dark@2.png │ │ │ ├── scrollbar-slider-active.png │ │ │ ├── scrollbar-slider-active@2.png │ │ │ ├── scrollbar-slider-dark.png │ │ │ ├── scrollbar-slider-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active-dark.png │ │ │ ├── scrollbar-slider-horizontal-active-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active.png │ │ │ ├── scrollbar-slider-horizontal-active@2.png │ │ │ ├── scrollbar-slider-horizontal-dark.png │ │ │ ├── scrollbar-slider-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover.png │ │ │ ├── scrollbar-slider-horizontal-hover@2.png │ │ │ ├── scrollbar-slider-horizontal.png │ │ │ ├── scrollbar-slider-horizontal@2.png │ │ │ ├── scrollbar-slider-hover-dark.png │ │ │ ├── scrollbar-slider-hover-dark@2.png │ │ │ ├── scrollbar-slider-hover.png │ │ │ ├── scrollbar-slider-hover@2.png │ │ │ ├── scrollbar-slider-rtl-active-dark.png │ │ │ ├── scrollbar-slider-rtl-active-dark@2.png │ │ │ ├── scrollbar-slider-rtl-active.png │ │ │ ├── scrollbar-slider-rtl-active@2.png │ │ │ ├── scrollbar-slider-rtl-dark.png │ │ │ ├── scrollbar-slider-rtl-dark@2.png │ │ │ ├── scrollbar-slider-rtl-hover-dark.png │ │ │ ├── scrollbar-slider-rtl-hover-dark@2.png │ │ │ ├── scrollbar-slider-rtl-hover.png │ │ │ ├── scrollbar-slider-rtl-hover@2.png │ │ │ ├── scrollbar-slider-rtl.png │ │ │ ├── scrollbar-slider-rtl@2.png │ │ │ ├── scrollbar-slider.png │ │ │ ├── scrollbar-slider@2.png │ │ │ ├── scrollbar-trough-dark.png │ │ │ ├── scrollbar-trough-dark@2.png │ │ │ ├── scrollbar-trough-horizontal-dark.png │ │ │ ├── scrollbar-trough-horizontal-dark@2.png │ │ │ ├── scrollbar-trough-horizontal.png │ │ │ ├── scrollbar-trough-horizontal@2.png │ │ │ ├── scrollbar-trough-rtl-dark.png │ │ │ ├── scrollbar-trough-rtl-dark@2.png │ │ │ ├── scrollbar-trough-rtl.png │ │ │ ├── scrollbar-trough-rtl@2.png │ │ │ ├── scrollbar-trough.png │ │ │ ├── scrollbar-trough@2.png │ │ │ ├── slider-active-dark.png │ │ │ ├── slider-active-dark@2.png │ │ │ ├── slider-active-selected-dark.png │ │ │ ├── slider-active-selected-dark@2.png │ │ │ ├── slider-active-selected.png │ │ │ ├── slider-active-selected@2.png │ │ │ ├── slider-active.png │ │ │ ├── slider-active@2.png │ │ │ ├── slider-dark.png │ │ │ ├── slider-dark@2.png │ │ │ ├── slider-hover-dark.png │ │ │ ├── slider-hover-dark@2.png │ │ │ ├── slider-hover-selected-dark.png │ │ │ ├── slider-hover-selected-dark@2.png │ │ │ ├── slider-hover-selected.png │ │ │ ├── slider-hover-selected@2.png │ │ │ ├── slider-hover.png │ │ │ ├── slider-hover@2.png │ │ │ ├── slider-insensitive-dark.png │ │ │ ├── slider-insensitive-dark@2.png │ │ │ ├── slider-insensitive-selected-dark.png │ │ │ ├── slider-insensitive-selected-dark@2.png │ │ │ ├── slider-insensitive-selected.png │ │ │ ├── slider-insensitive-selected@2.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-insensitive@2.png │ │ │ ├── slider-selected-dark.png │ │ │ ├── slider-selected-dark@2.png │ │ │ ├── slider-selected.png │ │ │ ├── slider-selected@2.png │ │ │ ├── slider.png │ │ │ ├── slider@2.png │ │ │ ├── switch-active-dark.png │ │ │ ├── switch-active-dark@2.png │ │ │ ├── switch-active-insensitive-dark.png │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ ├── switch-active-insensitive-selected.png │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ ├── switch-active-insensitive.png │ │ │ ├── switch-active-insensitive@2.png │ │ │ ├── switch-active-selected.png │ │ │ ├── switch-active-selected@2.png │ │ │ ├── switch-active.png │ │ │ ├── switch-active@2.png │ │ │ ├── switch-dark.png │ │ │ ├── switch-dark@2.png │ │ │ ├── switch-insensitive-dark.png │ │ │ ├── switch-insensitive-dark@2.png │ │ │ ├── switch-insensitive-selected.png │ │ │ ├── switch-insensitive-selected@2.png │ │ │ ├── switch-insensitive.png │ │ │ ├── switch-insensitive@2.png │ │ │ ├── switch-selected.png │ │ │ ├── switch-selected@2.png │ │ │ ├── switch-slider-dark.png │ │ │ ├── switch-slider-dark@2.png │ │ │ ├── switch-slider-insensitive-dark.png │ │ │ ├── switch-slider-insensitive-dark@2.png │ │ │ ├── switch-slider-insensitive.png │ │ │ ├── switch-slider-insensitive@2.png │ │ │ ├── switch-slider.png │ │ │ ├── switch-slider@2.png │ │ │ ├── switch.png │ │ │ ├── switch@2.png │ │ │ ├── thumbnail-frame.png │ │ │ ├── titlebutton-close-active.png │ │ │ ├── titlebutton-close-active@2.png │ │ │ ├── titlebutton-close-hover.png │ │ │ ├── titlebutton-close-hover@2.png │ │ │ ├── titlebutton-maximize-active.png │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ ├── titlebutton-maximize-hover.png │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ ├── titlebutton-minimize-active.png │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ ├── titlebutton-minimize-hover.png │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ ├── titlebutton-unfocused.png │ │ │ ├── titlebutton-unfocused@2.png │ │ │ ├── titlebutton.png │ │ │ └── titlebutton@2.png │ │ ├── borders.txt │ │ ├── borders │ │ │ ├── bottom-vertical-button-active-border-dark.png │ │ │ ├── bottom-vertical-button-active-border-dark@2.png │ │ │ ├── bottom-vertical-button-active-border.png │ │ │ ├── bottom-vertical-button-active-border@2.png │ │ │ ├── bottom-vertical-button-normal-border-dark.png │ │ │ ├── bottom-vertical-button-normal-border-dark@2.png │ │ │ ├── bottom-vertical-button-normal-border.png │ │ │ ├── bottom-vertical-button-normal-border@2.png │ │ │ ├── bottom-vertical-entry-focused-border-dark.png │ │ │ ├── bottom-vertical-entry-focused-border-dark@2.png │ │ │ ├── bottom-vertical-entry-focused-border.png │ │ │ ├── bottom-vertical-entry-focused-border@2.png │ │ │ ├── bottom-vertical-entry-normal-border-dark.png │ │ │ ├── bottom-vertical-entry-normal-border-dark@2.png │ │ │ ├── bottom-vertical-entry-normal-border.png │ │ │ ├── bottom-vertical-entry-normal-border@2.png │ │ │ ├── button-active-border-dark.png │ │ │ ├── button-active-border-dark@2.png │ │ │ ├── button-active-border-destructive-dark.png │ │ │ ├── button-active-border-destructive-dark@2.png │ │ │ ├── button-active-border-destructive.png │ │ │ ├── button-active-border-destructive@2.png │ │ │ ├── button-active-border-selected.png │ │ │ ├── button-active-border-selected@2.png │ │ │ ├── button-active-border-suggested-dark.png │ │ │ ├── button-active-border-suggested-dark@2.png │ │ │ ├── button-active-border-suggested.png │ │ │ ├── button-active-border-suggested@2.png │ │ │ ├── button-active-border.png │ │ │ ├── button-active-border@2.png │ │ │ ├── button-border-selected-dark.png │ │ │ ├── button-border-selected-dark@2.png │ │ │ ├── button-focused-border-dark.png │ │ │ ├── button-focused-border-dark@2.png │ │ │ ├── button-focused-border.png │ │ │ ├── button-focused-border@2.png │ │ │ ├── button-normal-border-dark.png │ │ │ ├── button-normal-border-dark@2.png │ │ │ ├── button-normal-border-destructive-dark.png │ │ │ ├── button-normal-border-destructive-dark@2.png │ │ │ ├── button-normal-border-destructive.png │ │ │ ├── button-normal-border-destructive@2.png │ │ │ ├── button-normal-border-suggested-dark.png │ │ │ ├── button-normal-border-suggested-dark@2.png │ │ │ ├── button-normal-border-suggested.png │ │ │ ├── button-normal-border-suggested@2.png │ │ │ ├── button-normal-border.png │ │ │ ├── button-normal-border@2.png │ │ │ ├── entry-focused-border-dark.png │ │ │ ├── entry-focused-border-dark@2.png │ │ │ ├── entry-focused-border.png │ │ │ ├── entry-focused-border@2.png │ │ │ ├── entry-normal-border-dark.png │ │ │ ├── entry-normal-border-dark@2.png │ │ │ ├── entry-normal-border.png │ │ │ ├── entry-normal-border@2.png │ │ │ ├── left-button-active-border-dark.png │ │ │ ├── left-button-active-border-dark@2.png │ │ │ ├── left-button-active-border-destructive-dark.png │ │ │ ├── left-button-active-border-destructive-dark@2.png │ │ │ ├── left-button-active-border-destructive.png │ │ │ ├── left-button-active-border-destructive@2.png │ │ │ ├── left-button-active-border-suggested-dark.png │ │ │ ├── left-button-active-border-suggested-dark@2.png │ │ │ ├── left-button-active-border-suggested.png │ │ │ ├── left-button-active-border-suggested@2.png │ │ │ ├── left-button-active-border.png │ │ │ ├── left-button-active-border@2.png │ │ │ ├── left-button-normal-border-dark.png │ │ │ ├── left-button-normal-border-dark@2.png │ │ │ ├── left-button-normal-border-destructive-dark.png │ │ │ ├── left-button-normal-border-destructive-dark@2.png │ │ │ ├── left-button-normal-border-destructive.png │ │ │ ├── left-button-normal-border-destructive@2.png │ │ │ ├── left-button-normal-border-suggested-dark.png │ │ │ ├── left-button-normal-border-suggested-dark@2.png │ │ │ ├── left-button-normal-border-suggested.png │ │ │ ├── left-button-normal-border-suggested@2.png │ │ │ ├── left-button-normal-border.png │ │ │ ├── left-button-normal-border@2.png │ │ │ ├── left-entry-focused-border-dark.png │ │ │ ├── left-entry-focused-border-dark@2.png │ │ │ ├── left-entry-focused-border.png │ │ │ ├── left-entry-focused-border@2.png │ │ │ ├── left-entry-normal-border-dark.png │ │ │ ├── left-entry-normal-border-dark@2.png │ │ │ ├── left-entry-normal-border.png │ │ │ ├── left-entry-normal-border@2.png │ │ │ ├── middle-button-active-border-dark.png │ │ │ ├── middle-button-active-border-dark@2.png │ │ │ ├── middle-button-active-border-destructive-dark.png │ │ │ ├── middle-button-active-border-destructive-dark@2.png │ │ │ ├── middle-button-active-border-destructive.png │ │ │ ├── middle-button-active-border-destructive@2.png │ │ │ ├── middle-button-active-border-suggested-dark.png │ │ │ ├── middle-button-active-border-suggested-dark@2.png │ │ │ ├── middle-button-active-border-suggested.png │ │ │ ├── middle-button-active-border-suggested@2.png │ │ │ ├── middle-button-active-border.png │ │ │ ├── middle-button-active-border@2.png │ │ │ ├── middle-button-normal-border-dark.png │ │ │ ├── middle-button-normal-border-dark@2.png │ │ │ ├── middle-button-normal-border-destructive-dark.png │ │ │ ├── middle-button-normal-border-destructive-dark@2.png │ │ │ ├── middle-button-normal-border-destructive.png │ │ │ ├── middle-button-normal-border-destructive@2.png │ │ │ ├── middle-button-normal-border-suggested-dark.png │ │ │ ├── middle-button-normal-border-suggested-dark@2.png │ │ │ ├── middle-button-normal-border-suggested.png │ │ │ ├── middle-button-normal-border-suggested@2.png │ │ │ ├── middle-button-normal-border.png │ │ │ ├── middle-button-normal-border@2.png │ │ │ ├── middle-entry-focused-border-dark.png │ │ │ ├── middle-entry-focused-border-dark@2.png │ │ │ ├── middle-entry-focused-border.png │ │ │ ├── middle-entry-focused-border@2.png │ │ │ ├── middle-entry-normal-border-dark.png │ │ │ ├── middle-entry-normal-border-dark@2.png │ │ │ ├── middle-entry-normal-border.png │ │ │ ├── middle-entry-normal-border@2.png │ │ │ ├── middle-vertical-button-active-border-dark.png │ │ │ ├── middle-vertical-button-active-border-dark@2.png │ │ │ ├── middle-vertical-button-active-border.png │ │ │ ├── middle-vertical-button-active-border@2.png │ │ │ ├── middle-vertical-button-normal-border-dark.png │ │ │ ├── middle-vertical-button-normal-border-dark@2.png │ │ │ ├── middle-vertical-button-normal-border.png │ │ │ ├── middle-vertical-button-normal-border@2.png │ │ │ ├── middle-vertical-entry-focused-border-dark.png │ │ │ ├── middle-vertical-entry-focused-border-dark@2.png │ │ │ ├── middle-vertical-entry-focused-border.png │ │ │ ├── middle-vertical-entry-focused-border@2.png │ │ │ ├── middle-vertical-entry-normal-border-dark.png │ │ │ ├── middle-vertical-entry-normal-border-dark@2.png │ │ │ ├── middle-vertical-entry-normal-border.png │ │ │ ├── middle-vertical-entry-normal-border@2.png │ │ │ ├── right-button-active-border-dark.png │ │ │ ├── right-button-active-border-dark@2.png │ │ │ ├── right-button-active-border-destructive-dark.png │ │ │ ├── right-button-active-border-destructive-dark@2.png │ │ │ ├── right-button-active-border-destructive.png │ │ │ ├── right-button-active-border-destructive@2.png │ │ │ ├── right-button-active-border-suggested-dark.png │ │ │ ├── right-button-active-border-suggested-dark@2.png │ │ │ ├── right-button-active-border-suggested.png │ │ │ ├── right-button-active-border-suggested@2.png │ │ │ ├── right-button-active-border.png │ │ │ ├── right-button-active-border@2.png │ │ │ ├── right-button-normal-border-dark.png │ │ │ ├── right-button-normal-border-dark@2.png │ │ │ ├── right-button-normal-border-destructive-dark.png │ │ │ ├── right-button-normal-border-destructive-dark@2.png │ │ │ ├── right-button-normal-border-destructive.png │ │ │ ├── right-button-normal-border-destructive@2.png │ │ │ ├── right-button-normal-border-suggested-dark.png │ │ │ ├── right-button-normal-border-suggested-dark@2.png │ │ │ ├── right-button-normal-border-suggested.png │ │ │ ├── right-button-normal-border-suggested@2.png │ │ │ ├── right-button-normal-border.png │ │ │ ├── right-button-normal-border@2.png │ │ │ ├── right-entry-focused-border-dark.png │ │ │ ├── right-entry-focused-border-dark@2.png │ │ │ ├── right-entry-focused-border.png │ │ │ ├── right-entry-focused-border@2.png │ │ │ ├── right-entry-normal-border-dark.png │ │ │ ├── right-entry-normal-border-dark@2.png │ │ │ ├── right-entry-normal-border.png │ │ │ ├── right-entry-normal-border@2.png │ │ │ ├── scale-highlight-border-dark.png │ │ │ ├── scale-highlight-border-dark@2.png │ │ │ ├── scale-highlight-border-selected.png │ │ │ ├── scale-highlight-border-selected@2.png │ │ │ ├── scale-highlight-border.png │ │ │ ├── scale-highlight-border@2.png │ │ │ ├── scale-trough-border-dark.png │ │ │ ├── scale-trough-border-dark@2.png │ │ │ ├── scale-trough-border-selected.png │ │ │ ├── scale-trough-border-selected@2.png │ │ │ ├── scale-trough-border.png │ │ │ ├── scale-trough-border@2.png │ │ │ ├── scale-trough-osd-border.png │ │ │ ├── scale-trough-osd-border@2.png │ │ │ ├── scale-trough-vertical-border-dark.png │ │ │ ├── scale-trough-vertical-border-dark@2.png │ │ │ ├── scale-trough-vertical-border.png │ │ │ ├── scale-trough-vertical-border@2.png │ │ │ ├── scale-vertical-highlight-border-dark.png │ │ │ ├── scale-vertical-highlight-border-dark@2.png │ │ │ ├── scale-vertical-highlight-border.png │ │ │ ├── scale-vertical-highlight-border@2.png │ │ │ ├── tab-active-dark.png │ │ │ ├── tab-active-dark@2.png │ │ │ ├── tab-active-darker.png │ │ │ ├── tab-active-darker@2.png │ │ │ ├── tab-active.png │ │ │ ├── tab-active@2.png │ │ │ ├── terminal-tab-active-dark.png │ │ │ ├── terminal-tab-active-dark@2.png │ │ │ ├── terminal-tab-active-darker.png │ │ │ ├── terminal-tab-active-darker@2.png │ │ │ ├── terminal-tab-active.png │ │ │ ├── terminal-tab-active@2.png │ │ │ ├── tooltip-generic-border-focused.png │ │ │ ├── tooltip-generic-border-focused@2.png │ │ │ ├── tooltip-generic-border.png │ │ │ ├── tooltip-generic-border@2.png │ │ │ ├── top-vertical-button-active-border-dark.png │ │ │ ├── top-vertical-button-active-border-dark@2.png │ │ │ ├── top-vertical-button-active-border.png │ │ │ ├── top-vertical-button-active-border@2.png │ │ │ ├── top-vertical-button-normal-border-dark.png │ │ │ ├── top-vertical-button-normal-border-dark@2.png │ │ │ ├── top-vertical-button-normal-border.png │ │ │ ├── top-vertical-button-normal-border@2.png │ │ │ ├── top-vertical-entry-focused-border-dark.png │ │ │ ├── top-vertical-entry-focused-border-dark@2.png │ │ │ ├── top-vertical-entry-focused-border.png │ │ │ ├── top-vertical-entry-focused-border@2.png │ │ │ ├── top-vertical-entry-normal-border-dark.png │ │ │ ├── top-vertical-entry-normal-border-dark@2.png │ │ │ ├── top-vertical-entry-normal-border.png │ │ │ ├── top-vertical-entry-normal-border@2.png │ │ │ ├── trough-border-dark.png │ │ │ ├── trough-border-dark@2.png │ │ │ ├── trough-border-selected.png │ │ │ ├── trough-border-selected@2.png │ │ │ ├── trough-border.png │ │ │ ├── trough-border@2.png │ │ │ ├── trough-vertical-border-dark.png │ │ │ ├── trough-vertical-border-dark@2.png │ │ │ ├── trough-vertical-border.png │ │ │ └── trough-vertical-border@2.png │ │ ├── gtk-dark.css │ │ ├── gtk-light.css │ │ ├── gtk.css │ │ ├── render-assets.sh │ │ ├── render-borders.sh │ │ ├── sass │ │ │ ├── _applications.scss │ │ │ ├── _colors-public.scss │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ ├── _granite.scss │ │ │ ├── _tabs.scss │ │ │ ├── _unity.scss │ │ │ ├── gtk-dark.scss │ │ │ ├── gtk-light.scss │ │ │ └── gtk.scss │ │ ├── thumbnail-dark.png │ │ └── thumbnail.png │ ├── 3.16 │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── checkbox-checked-dark.png │ │ │ ├── checkbox-checked-dark@2.png │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected-dark.png │ │ │ ├── checkbox-checked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ ├── checkbox-checked-selected-dark.png │ │ │ ├── checkbox-checked-selected-dark@2.png │ │ │ ├── checkbox-checked-selected.png │ │ │ ├── checkbox-checked-selected@2.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked@2.png │ │ │ ├── checkbox-mixed-dark.png │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ ├── checkbox-mixed-selected-dark.png │ │ │ ├── checkbox-mixed-selected-dark@2.png │ │ │ ├── checkbox-mixed-selected.png │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed@2.png │ │ │ ├── checkbox-unchecked-dark.png │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ ├── checkbox-unchecked-selected-dark.png │ │ │ ├── checkbox-unchecked-selected-dark@2.png │ │ │ ├── checkbox-unchecked-selected.png │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked@2.png │ │ │ ├── grid-selection-checked-dark.png │ │ │ ├── grid-selection-checked-dark@2.png │ │ │ ├── grid-selection-checked.png │ │ │ ├── grid-selection-checked@2.png │ │ │ ├── grid-selection-unchecked-dark.png │ │ │ ├── grid-selection-unchecked-dark@2.png │ │ │ ├── grid-selection-unchecked.png │ │ │ ├── grid-selection-unchecked@2.png │ │ │ ├── header-separator-dark.png │ │ │ ├── header-separator-dark@2.png │ │ │ ├── header-separator-left-dark.png │ │ │ ├── header-separator-left-dark@2.png │ │ │ ├── header-separator-left.png │ │ │ ├── header-separator-left@2.png │ │ │ ├── header-separator-right-dark.png │ │ │ ├── header-separator-right-dark@2.png │ │ │ ├── header-separator-right.png │ │ │ ├── header-separator-right@2.png │ │ │ ├── header-separator-selectionmode-dark.png │ │ │ ├── header-separator-selectionmode-dark@2.png │ │ │ ├── header-separator-selectionmode-left-dark.png │ │ │ ├── header-separator-selectionmode-left-dark@2.png │ │ │ ├── header-separator-selectionmode-left.png │ │ │ ├── header-separator-selectionmode-left@2.png │ │ │ ├── header-separator-selectionmode-right-dark.png │ │ │ ├── header-separator-selectionmode-right-dark@2.png │ │ │ ├── header-separator-selectionmode-right.png │ │ │ ├── header-separator-selectionmode-right@2.png │ │ │ ├── header-separator-selectionmode.png │ │ │ ├── header-separator-selectionmode@2.png │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── radio-checked-dark.png │ │ │ ├── radio-checked-dark@2.png │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ ├── radio-checked-insensitive-selected-dark.png │ │ │ ├── radio-checked-insensitive-selected-dark@2.png │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked-insensitive@2.png │ │ │ ├── radio-checked-selected-dark.png │ │ │ ├── radio-checked-selected-dark@2.png │ │ │ ├── radio-checked-selected.png │ │ │ ├── radio-checked-selected@2.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-checked@2.png │ │ │ ├── radio-mixed-dark.png │ │ │ ├── radio-mixed-dark@2.png │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected-dark.png │ │ │ ├── radio-mixed-insensitive-selected-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ ├── radio-mixed-selected-dark.png │ │ │ ├── radio-mixed-selected-dark@2.png │ │ │ ├── radio-mixed-selected.png │ │ │ ├── radio-mixed-selected@2.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed@2.png │ │ │ ├── radio-unchecked-dark.png │ │ │ ├── radio-unchecked-dark@2.png │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected-dark.png │ │ │ ├── radio-unchecked-insensitive-selected-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ ├── radio-unchecked-selected-dark.png │ │ │ ├── radio-unchecked-selected-dark@2.png │ │ │ ├── radio-unchecked-selected.png │ │ │ ├── radio-unchecked-selected@2.png │ │ │ ├── radio-unchecked.png │ │ │ ├── radio-unchecked@2.png │ │ │ ├── scrollbar-slider-active-dark.png │ │ │ ├── scrollbar-slider-active-dark@2.png │ │ │ ├── scrollbar-slider-active.png │ │ │ ├── scrollbar-slider-active@2.png │ │ │ ├── scrollbar-slider-dark.png │ │ │ ├── scrollbar-slider-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active-dark.png │ │ │ ├── scrollbar-slider-horizontal-active-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active.png │ │ │ ├── scrollbar-slider-horizontal-active@2.png │ │ │ ├── scrollbar-slider-horizontal-dark.png │ │ │ ├── scrollbar-slider-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover.png │ │ │ ├── scrollbar-slider-horizontal-hover@2.png │ │ │ ├── scrollbar-slider-horizontal.png │ │ │ ├── scrollbar-slider-horizontal@2.png │ │ │ ├── scrollbar-slider-hover-dark.png │ │ │ ├── scrollbar-slider-hover-dark@2.png │ │ │ ├── scrollbar-slider-hover.png │ │ │ ├── scrollbar-slider-hover@2.png │ │ │ ├── scrollbar-slider-overlay-dark.png │ │ │ ├── scrollbar-slider-overlay-dark@2.png │ │ │ ├── scrollbar-slider-overlay-horizontal-dark.png │ │ │ ├── scrollbar-slider-overlay-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-overlay-horizontal.png │ │ │ ├── scrollbar-slider-overlay-horizontal@2.png │ │ │ ├── scrollbar-slider-overlay.png │ │ │ ├── scrollbar-slider-overlay@2.png │ │ │ ├── scrollbar-slider-rtl-active-dark.png │ │ │ ├── scrollbar-slider-rtl-active-dark@2.png │ │ │ ├── scrollbar-slider-rtl-active.png │ │ │ ├── scrollbar-slider-rtl-active@2.png │ │ │ ├── scrollbar-slider-rtl-dark.png │ │ │ ├── scrollbar-slider-rtl-dark@2.png │ │ │ ├── scrollbar-slider-rtl-hover-dark.png │ │ │ ├── scrollbar-slider-rtl-hover-dark@2.png │ │ │ ├── scrollbar-slider-rtl-hover.png │ │ │ ├── scrollbar-slider-rtl-hover@2.png │ │ │ ├── scrollbar-slider-rtl.png │ │ │ ├── scrollbar-slider-rtl@2.png │ │ │ ├── scrollbar-slider.png │ │ │ ├── scrollbar-slider@2.png │ │ │ ├── scrollbar-trough-dark.png │ │ │ ├── scrollbar-trough-dark@2.png │ │ │ ├── scrollbar-trough-horizontal-dark.png │ │ │ ├── scrollbar-trough-horizontal-dark@2.png │ │ │ ├── scrollbar-trough-horizontal.png │ │ │ ├── scrollbar-trough-horizontal@2.png │ │ │ ├── scrollbar-trough-rtl-dark.png │ │ │ ├── scrollbar-trough-rtl-dark@2.png │ │ │ ├── scrollbar-trough-rtl.png │ │ │ ├── scrollbar-trough-rtl@2.png │ │ │ ├── scrollbar-trough.png │ │ │ ├── scrollbar-trough@2.png │ │ │ ├── slider-active-dark.png │ │ │ ├── slider-active-dark@2.png │ │ │ ├── slider-active-selected-dark.png │ │ │ ├── slider-active-selected-dark@2.png │ │ │ ├── slider-active-selected.png │ │ │ ├── slider-active-selected@2.png │ │ │ ├── slider-active.png │ │ │ ├── slider-active@2.png │ │ │ ├── slider-dark.png │ │ │ ├── slider-dark@2.png │ │ │ ├── slider-hover-dark.png │ │ │ ├── slider-hover-dark@2.png │ │ │ ├── slider-hover-selected-dark.png │ │ │ ├── slider-hover-selected-dark@2.png │ │ │ ├── slider-hover-selected.png │ │ │ ├── slider-hover-selected@2.png │ │ │ ├── slider-hover.png │ │ │ ├── slider-hover@2.png │ │ │ ├── slider-insensitive-dark.png │ │ │ ├── slider-insensitive-dark@2.png │ │ │ ├── slider-insensitive-selected-dark.png │ │ │ ├── slider-insensitive-selected-dark@2.png │ │ │ ├── slider-insensitive-selected.png │ │ │ ├── slider-insensitive-selected@2.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-insensitive@2.png │ │ │ ├── slider-selected-dark.png │ │ │ ├── slider-selected-dark@2.png │ │ │ ├── slider-selected.png │ │ │ ├── slider-selected@2.png │ │ │ ├── slider.png │ │ │ ├── slider@2.png │ │ │ ├── switch-active-dark.png │ │ │ ├── switch-active-dark@2.png │ │ │ ├── switch-active-insensitive-dark.png │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ ├── switch-active-insensitive-selected.png │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ ├── switch-active-insensitive.png │ │ │ ├── switch-active-insensitive@2.png │ │ │ ├── switch-active-selected.png │ │ │ ├── switch-active-selected@2.png │ │ │ ├── switch-active.png │ │ │ ├── switch-active@2.png │ │ │ ├── switch-dark.png │ │ │ ├── switch-dark@2.png │ │ │ ├── switch-insensitive-dark.png │ │ │ ├── switch-insensitive-dark@2.png │ │ │ ├── switch-insensitive-selected.png │ │ │ ├── switch-insensitive-selected@2.png │ │ │ ├── switch-insensitive.png │ │ │ ├── switch-insensitive@2.png │ │ │ ├── switch-selected.png │ │ │ ├── switch-selected@2.png │ │ │ ├── switch-slider-dark.png │ │ │ ├── switch-slider-dark@2.png │ │ │ ├── switch-slider-insensitive-dark.png │ │ │ ├── switch-slider-insensitive-dark@2.png │ │ │ ├── switch-slider-insensitive.png │ │ │ ├── switch-slider-insensitive@2.png │ │ │ ├── switch-slider.png │ │ │ ├── switch-slider@2.png │ │ │ ├── switch.png │ │ │ ├── switch@2.png │ │ │ ├── thumbnail-frame.png │ │ │ ├── titlebutton-close-active-dark.png │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ ├── titlebutton-close-active.png │ │ │ ├── titlebutton-close-active@2.png │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ ├── titlebutton-close-hover.png │ │ │ ├── titlebutton-close-hover@2.png │ │ │ ├── titlebutton-dark.png │ │ │ ├── titlebutton-dark@2.png │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ ├── titlebutton-maximize-active.png │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ ├── titlebutton-maximize-hover.png │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ ├── titlebutton-minimize-active.png │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ ├── titlebutton-minimize-hover.png │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ ├── titlebutton-unfocused-dark.png │ │ │ ├── titlebutton-unfocused-dark@2.png │ │ │ ├── titlebutton-unfocused.png │ │ │ ├── titlebutton-unfocused@2.png │ │ │ ├── titlebutton.png │ │ │ └── titlebutton@2.png │ │ ├── borders.txt │ │ ├── borders │ │ │ ├── bottom-vertical-button-active-border-dark.png │ │ │ ├── bottom-vertical-button-active-border-dark@2.png │ │ │ ├── bottom-vertical-button-active-border.png │ │ │ ├── bottom-vertical-button-active-border@2.png │ │ │ ├── bottom-vertical-button-normal-border-dark.png │ │ │ ├── bottom-vertical-button-normal-border-dark@2.png │ │ │ ├── bottom-vertical-button-normal-border.png │ │ │ ├── bottom-vertical-button-normal-border@2.png │ │ │ ├── bottom-vertical-entry-focused-border-dark.png │ │ │ ├── bottom-vertical-entry-focused-border-dark@2.png │ │ │ ├── bottom-vertical-entry-focused-border.png │ │ │ ├── bottom-vertical-entry-focused-border@2.png │ │ │ ├── bottom-vertical-entry-normal-border-dark.png │ │ │ ├── bottom-vertical-entry-normal-border-dark@2.png │ │ │ ├── bottom-vertical-entry-normal-border.png │ │ │ ├── bottom-vertical-entry-normal-border@2.png │ │ │ ├── button-active-border-dark.png │ │ │ ├── button-active-border-dark@2.png │ │ │ ├── button-active-border-destructive-dark.png │ │ │ ├── button-active-border-destructive-dark@2.png │ │ │ ├── button-active-border-destructive.png │ │ │ ├── button-active-border-destructive@2.png │ │ │ ├── button-active-border-selected.png │ │ │ ├── button-active-border-selected@2.png │ │ │ ├── button-active-border-suggested-dark.png │ │ │ ├── button-active-border-suggested-dark@2.png │ │ │ ├── button-active-border-suggested.png │ │ │ ├── button-active-border-suggested@2.png │ │ │ ├── button-active-border.png │ │ │ ├── button-active-border@2.png │ │ │ ├── button-border-selected-dark.png │ │ │ ├── button-border-selected-dark@2.png │ │ │ ├── button-focused-border-dark.png │ │ │ ├── button-focused-border-dark@2.png │ │ │ ├── button-focused-border.png │ │ │ ├── button-focused-border@2.png │ │ │ ├── button-normal-border-dark.png │ │ │ ├── button-normal-border-dark@2.png │ │ │ ├── button-normal-border-destructive-dark.png │ │ │ ├── button-normal-border-destructive-dark@2.png │ │ │ ├── button-normal-border-destructive.png │ │ │ ├── button-normal-border-destructive@2.png │ │ │ ├── button-normal-border-suggested-dark.png │ │ │ ├── button-normal-border-suggested-dark@2.png │ │ │ ├── button-normal-border-suggested.png │ │ │ ├── button-normal-border-suggested@2.png │ │ │ ├── button-normal-border.png │ │ │ ├── button-normal-border@2.png │ │ │ ├── entry-focused-border-dark.png │ │ │ ├── entry-focused-border-dark@2.png │ │ │ ├── entry-focused-border.png │ │ │ ├── entry-focused-border@2.png │ │ │ ├── entry-normal-border-dark.png │ │ │ ├── entry-normal-border-dark@2.png │ │ │ ├── entry-normal-border.png │ │ │ ├── entry-normal-border@2.png │ │ │ ├── left-button-active-border-dark.png │ │ │ ├── left-button-active-border-dark@2.png │ │ │ ├── left-button-active-border-destructive-dark.png │ │ │ ├── left-button-active-border-destructive-dark@2.png │ │ │ ├── left-button-active-border-destructive.png │ │ │ ├── left-button-active-border-destructive@2.png │ │ │ ├── left-button-active-border-suggested-dark.png │ │ │ ├── left-button-active-border-suggested-dark@2.png │ │ │ ├── left-button-active-border-suggested.png │ │ │ ├── left-button-active-border-suggested@2.png │ │ │ ├── left-button-active-border.png │ │ │ ├── left-button-active-border@2.png │ │ │ ├── left-button-normal-border-dark.png │ │ │ ├── left-button-normal-border-dark@2.png │ │ │ ├── left-button-normal-border-destructive-dark.png │ │ │ ├── left-button-normal-border-destructive-dark@2.png │ │ │ ├── left-button-normal-border-destructive.png │ │ │ ├── left-button-normal-border-destructive@2.png │ │ │ ├── left-button-normal-border-suggested-dark.png │ │ │ ├── left-button-normal-border-suggested-dark@2.png │ │ │ ├── left-button-normal-border-suggested.png │ │ │ ├── left-button-normal-border-suggested@2.png │ │ │ ├── left-button-normal-border.png │ │ │ ├── left-button-normal-border@2.png │ │ │ ├── left-entry-focused-border-dark.png │ │ │ ├── left-entry-focused-border-dark@2.png │ │ │ ├── left-entry-focused-border.png │ │ │ ├── left-entry-focused-border@2.png │ │ │ ├── left-entry-normal-border-dark.png │ │ │ ├── left-entry-normal-border-dark@2.png │ │ │ ├── left-entry-normal-border.png │ │ │ ├── left-entry-normal-border@2.png │ │ │ ├── middle-button-active-border-dark.png │ │ │ ├── middle-button-active-border-dark@2.png │ │ │ ├── middle-button-active-border-destructive-dark.png │ │ │ ├── middle-button-active-border-destructive-dark@2.png │ │ │ ├── middle-button-active-border-destructive.png │ │ │ ├── middle-button-active-border-destructive@2.png │ │ │ ├── middle-button-active-border-suggested-dark.png │ │ │ ├── middle-button-active-border-suggested-dark@2.png │ │ │ ├── middle-button-active-border-suggested.png │ │ │ ├── middle-button-active-border-suggested@2.png │ │ │ ├── middle-button-active-border.png │ │ │ ├── middle-button-active-border@2.png │ │ │ ├── middle-button-normal-border-dark.png │ │ │ ├── middle-button-normal-border-dark@2.png │ │ │ ├── middle-button-normal-border-destructive-dark.png │ │ │ ├── middle-button-normal-border-destructive-dark@2.png │ │ │ ├── middle-button-normal-border-destructive.png │ │ │ ├── middle-button-normal-border-destructive@2.png │ │ │ ├── middle-button-normal-border-suggested-dark.png │ │ │ ├── middle-button-normal-border-suggested-dark@2.png │ │ │ ├── middle-button-normal-border-suggested.png │ │ │ ├── middle-button-normal-border-suggested@2.png │ │ │ ├── middle-button-normal-border.png │ │ │ ├── middle-button-normal-border@2.png │ │ │ ├── middle-entry-focused-border-dark.png │ │ │ ├── middle-entry-focused-border-dark@2.png │ │ │ ├── middle-entry-focused-border.png │ │ │ ├── middle-entry-focused-border@2.png │ │ │ ├── middle-entry-normal-border-dark.png │ │ │ ├── middle-entry-normal-border-dark@2.png │ │ │ ├── middle-entry-normal-border.png │ │ │ ├── middle-entry-normal-border@2.png │ │ │ ├── middle-vertical-button-active-border-dark.png │ │ │ ├── middle-vertical-button-active-border-dark@2.png │ │ │ ├── middle-vertical-button-active-border.png │ │ │ ├── middle-vertical-button-active-border@2.png │ │ │ ├── middle-vertical-button-normal-border-dark.png │ │ │ ├── middle-vertical-button-normal-border-dark@2.png │ │ │ ├── middle-vertical-button-normal-border.png │ │ │ ├── middle-vertical-button-normal-border@2.png │ │ │ ├── middle-vertical-entry-focused-border-dark.png │ │ │ ├── middle-vertical-entry-focused-border-dark@2.png │ │ │ ├── middle-vertical-entry-focused-border.png │ │ │ ├── middle-vertical-entry-focused-border@2.png │ │ │ ├── middle-vertical-entry-normal-border-dark.png │ │ │ ├── middle-vertical-entry-normal-border-dark@2.png │ │ │ ├── middle-vertical-entry-normal-border.png │ │ │ ├── middle-vertical-entry-normal-border@2.png │ │ │ ├── right-button-active-border-dark.png │ │ │ ├── right-button-active-border-dark@2.png │ │ │ ├── right-button-active-border-destructive-dark.png │ │ │ ├── right-button-active-border-destructive-dark@2.png │ │ │ ├── right-button-active-border-destructive.png │ │ │ ├── right-button-active-border-destructive@2.png │ │ │ ├── right-button-active-border-suggested-dark.png │ │ │ ├── right-button-active-border-suggested-dark@2.png │ │ │ ├── right-button-active-border-suggested.png │ │ │ ├── right-button-active-border-suggested@2.png │ │ │ ├── right-button-active-border.png │ │ │ ├── right-button-active-border@2.png │ │ │ ├── right-button-normal-border-dark.png │ │ │ ├── right-button-normal-border-dark@2.png │ │ │ ├── right-button-normal-border-destructive-dark.png │ │ │ ├── right-button-normal-border-destructive-dark@2.png │ │ │ ├── right-button-normal-border-destructive.png │ │ │ ├── right-button-normal-border-destructive@2.png │ │ │ ├── right-button-normal-border-suggested-dark.png │ │ │ ├── right-button-normal-border-suggested-dark@2.png │ │ │ ├── right-button-normal-border-suggested.png │ │ │ ├── right-button-normal-border-suggested@2.png │ │ │ ├── right-button-normal-border.png │ │ │ ├── right-button-normal-border@2.png │ │ │ ├── right-entry-focused-border-dark.png │ │ │ ├── right-entry-focused-border-dark@2.png │ │ │ ├── right-entry-focused-border.png │ │ │ ├── right-entry-focused-border@2.png │ │ │ ├── right-entry-normal-border-dark.png │ │ │ ├── right-entry-normal-border-dark@2.png │ │ │ ├── right-entry-normal-border.png │ │ │ ├── right-entry-normal-border@2.png │ │ │ ├── scale-highlight-border-dark.png │ │ │ ├── scale-highlight-border-dark@2.png │ │ │ ├── scale-highlight-border-selected.png │ │ │ ├── scale-highlight-border-selected@2.png │ │ │ ├── scale-highlight-border.png │ │ │ ├── scale-highlight-border@2.png │ │ │ ├── scale-trough-border-dark.png │ │ │ ├── scale-trough-border-dark@2.png │ │ │ ├── scale-trough-border-selected.png │ │ │ ├── scale-trough-border-selected@2.png │ │ │ ├── scale-trough-border.png │ │ │ ├── scale-trough-border@2.png │ │ │ ├── scale-trough-osd-border.png │ │ │ ├── scale-trough-osd-border@2.png │ │ │ ├── scale-trough-vertical-border-dark.png │ │ │ ├── scale-trough-vertical-border-dark@2.png │ │ │ ├── scale-trough-vertical-border.png │ │ │ ├── scale-trough-vertical-border@2.png │ │ │ ├── scale-vertical-highlight-border-dark.png │ │ │ ├── scale-vertical-highlight-border-dark@2.png │ │ │ ├── scale-vertical-highlight-border.png │ │ │ ├── scale-vertical-highlight-border@2.png │ │ │ ├── tab-active-dark.png │ │ │ ├── tab-active-dark@2.png │ │ │ ├── tab-active-darker.png │ │ │ ├── tab-active-darker@2.png │ │ │ ├── tab-active.png │ │ │ ├── tab-active@2.png │ │ │ ├── terminal-tab-active-dark.png │ │ │ ├── terminal-tab-active-dark@2.png │ │ │ ├── terminal-tab-active-darker.png │ │ │ ├── terminal-tab-active-darker@2.png │ │ │ ├── terminal-tab-active.png │ │ │ ├── terminal-tab-active@2.png │ │ │ ├── top-vertical-button-active-border-dark.png │ │ │ ├── top-vertical-button-active-border-dark@2.png │ │ │ ├── top-vertical-button-active-border.png │ │ │ ├── top-vertical-button-active-border@2.png │ │ │ ├── top-vertical-button-normal-border-dark.png │ │ │ ├── top-vertical-button-normal-border-dark@2.png │ │ │ ├── top-vertical-button-normal-border.png │ │ │ ├── top-vertical-button-normal-border@2.png │ │ │ ├── top-vertical-entry-focused-border-dark.png │ │ │ ├── top-vertical-entry-focused-border-dark@2.png │ │ │ ├── top-vertical-entry-focused-border.png │ │ │ ├── top-vertical-entry-focused-border@2.png │ │ │ ├── top-vertical-entry-normal-border-dark.png │ │ │ ├── top-vertical-entry-normal-border-dark@2.png │ │ │ ├── top-vertical-entry-normal-border.png │ │ │ ├── top-vertical-entry-normal-border@2.png │ │ │ ├── trough-border-dark.png │ │ │ ├── trough-border-dark@2.png │ │ │ ├── trough-border-selected.png │ │ │ ├── trough-border-selected@2.png │ │ │ ├── trough-border.png │ │ │ ├── trough-border@2.png │ │ │ ├── trough-vertical-border-dark.png │ │ │ ├── trough-vertical-border-dark@2.png │ │ │ ├── trough-vertical-border.png │ │ │ └── trough-vertical-border@2.png │ │ ├── gtk-dark.css │ │ ├── gtk-light.css │ │ ├── gtk.css │ │ ├── render-assets.sh │ │ ├── render-borders.sh │ │ ├── sass │ │ │ ├── _applications.scss │ │ │ ├── _colors-public.scss │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ ├── _granite.scss │ │ │ ├── _tabs.scss │ │ │ ├── _unity.scss │ │ │ ├── gtk-dark.scss │ │ │ ├── gtk-light.scss │ │ │ └── gtk.scss │ │ ├── thumbnail-dark.png │ │ └── thumbnail.png │ ├── 3.18 │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── checkbox-checked-dark.png │ │ │ ├── checkbox-checked-dark@2.png │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected-dark.png │ │ │ ├── checkbox-checked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ ├── checkbox-checked-selected-dark.png │ │ │ ├── checkbox-checked-selected-dark@2.png │ │ │ ├── checkbox-checked-selected.png │ │ │ ├── checkbox-checked-selected@2.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked@2.png │ │ │ ├── checkbox-mixed-dark.png │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ ├── checkbox-mixed-selected-dark.png │ │ │ ├── checkbox-mixed-selected-dark@2.png │ │ │ ├── checkbox-mixed-selected.png │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed@2.png │ │ │ ├── checkbox-unchecked-dark.png │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ ├── checkbox-unchecked-selected-dark.png │ │ │ ├── checkbox-unchecked-selected-dark@2.png │ │ │ ├── checkbox-unchecked-selected.png │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked@2.png │ │ │ ├── grid-selection-checked-dark.png │ │ │ ├── grid-selection-checked-dark@2.png │ │ │ ├── grid-selection-checked.png │ │ │ ├── grid-selection-checked@2.png │ │ │ ├── grid-selection-unchecked-dark.png │ │ │ ├── grid-selection-unchecked-dark@2.png │ │ │ ├── grid-selection-unchecked.png │ │ │ ├── grid-selection-unchecked@2.png │ │ │ ├── header-separator-dark.png │ │ │ ├── header-separator-dark@2.png │ │ │ ├── header-separator-left-dark.png │ │ │ ├── header-separator-left-dark@2.png │ │ │ ├── header-separator-left.png │ │ │ ├── header-separator-left@2.png │ │ │ ├── header-separator-right-dark.png │ │ │ ├── header-separator-right-dark@2.png │ │ │ ├── header-separator-right.png │ │ │ ├── header-separator-right@2.png │ │ │ ├── header-separator-selectionmode-dark.png │ │ │ ├── header-separator-selectionmode-dark@2.png │ │ │ ├── header-separator-selectionmode-left-dark.png │ │ │ ├── header-separator-selectionmode-left-dark@2.png │ │ │ ├── header-separator-selectionmode-left.png │ │ │ ├── header-separator-selectionmode-left@2.png │ │ │ ├── header-separator-selectionmode-right-dark.png │ │ │ ├── header-separator-selectionmode-right-dark@2.png │ │ │ ├── header-separator-selectionmode-right.png │ │ │ ├── header-separator-selectionmode-right@2.png │ │ │ ├── header-separator-selectionmode.png │ │ │ ├── header-separator-selectionmode@2.png │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── radio-checked-dark.png │ │ │ ├── radio-checked-dark@2.png │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ ├── radio-checked-insensitive-selected-dark.png │ │ │ ├── radio-checked-insensitive-selected-dark@2.png │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked-insensitive@2.png │ │ │ ├── radio-checked-selected-dark.png │ │ │ ├── radio-checked-selected-dark@2.png │ │ │ ├── radio-checked-selected.png │ │ │ ├── radio-checked-selected@2.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-checked@2.png │ │ │ ├── radio-mixed-dark.png │ │ │ ├── radio-mixed-dark@2.png │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected-dark.png │ │ │ ├── radio-mixed-insensitive-selected-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ ├── radio-mixed-selected-dark.png │ │ │ ├── radio-mixed-selected-dark@2.png │ │ │ ├── radio-mixed-selected.png │ │ │ ├── radio-mixed-selected@2.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed@2.png │ │ │ ├── radio-unchecked-dark.png │ │ │ ├── radio-unchecked-dark@2.png │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected-dark.png │ │ │ ├── radio-unchecked-insensitive-selected-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ ├── radio-unchecked-selected-dark.png │ │ │ ├── radio-unchecked-selected-dark@2.png │ │ │ ├── radio-unchecked-selected.png │ │ │ ├── radio-unchecked-selected@2.png │ │ │ ├── radio-unchecked.png │ │ │ ├── radio-unchecked@2.png │ │ │ ├── scrollbar-slider-active-dark.png │ │ │ ├── scrollbar-slider-active-dark@2.png │ │ │ ├── scrollbar-slider-active.png │ │ │ ├── scrollbar-slider-active@2.png │ │ │ ├── scrollbar-slider-dark.png │ │ │ ├── scrollbar-slider-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active-dark.png │ │ │ ├── scrollbar-slider-horizontal-active-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active.png │ │ │ ├── scrollbar-slider-horizontal-active@2.png │ │ │ ├── scrollbar-slider-horizontal-dark.png │ │ │ ├── scrollbar-slider-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover.png │ │ │ ├── scrollbar-slider-horizontal-hover@2.png │ │ │ ├── scrollbar-slider-horizontal.png │ │ │ ├── scrollbar-slider-horizontal@2.png │ │ │ ├── scrollbar-slider-hover-dark.png │ │ │ ├── scrollbar-slider-hover-dark@2.png │ │ │ ├── scrollbar-slider-hover.png │ │ │ ├── scrollbar-slider-hover@2.png │ │ │ ├── scrollbar-slider-overlay-dark.png │ │ │ ├── scrollbar-slider-overlay-dark@2.png │ │ │ ├── scrollbar-slider-overlay-horizontal-dark.png │ │ │ ├── scrollbar-slider-overlay-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-overlay-horizontal.png │ │ │ ├── scrollbar-slider-overlay-horizontal@2.png │ │ │ ├── scrollbar-slider-overlay.png │ │ │ ├── scrollbar-slider-overlay@2.png │ │ │ ├── scrollbar-slider-rtl-active-dark.png │ │ │ ├── scrollbar-slider-rtl-active-dark@2.png │ │ │ ├── scrollbar-slider-rtl-active.png │ │ │ ├── scrollbar-slider-rtl-active@2.png │ │ │ ├── scrollbar-slider-rtl-dark.png │ │ │ ├── scrollbar-slider-rtl-dark@2.png │ │ │ ├── scrollbar-slider-rtl-hover-dark.png │ │ │ ├── scrollbar-slider-rtl-hover-dark@2.png │ │ │ ├── scrollbar-slider-rtl-hover.png │ │ │ ├── scrollbar-slider-rtl-hover@2.png │ │ │ ├── scrollbar-slider-rtl.png │ │ │ ├── scrollbar-slider-rtl@2.png │ │ │ ├── scrollbar-slider.png │ │ │ ├── scrollbar-slider@2.png │ │ │ ├── scrollbar-trough-dark.png │ │ │ ├── scrollbar-trough-dark@2.png │ │ │ ├── scrollbar-trough-horizontal-dark.png │ │ │ ├── scrollbar-trough-horizontal-dark@2.png │ │ │ ├── scrollbar-trough-horizontal.png │ │ │ ├── scrollbar-trough-horizontal@2.png │ │ │ ├── scrollbar-trough-rtl-dark.png │ │ │ ├── scrollbar-trough-rtl-dark@2.png │ │ │ ├── scrollbar-trough-rtl.png │ │ │ ├── scrollbar-trough-rtl@2.png │ │ │ ├── scrollbar-trough.png │ │ │ ├── scrollbar-trough@2.png │ │ │ ├── slider-active-dark.png │ │ │ ├── slider-active-dark@2.png │ │ │ ├── slider-active-selected-dark.png │ │ │ ├── slider-active-selected-dark@2.png │ │ │ ├── slider-active-selected.png │ │ │ ├── slider-active-selected@2.png │ │ │ ├── slider-active.png │ │ │ ├── slider-active@2.png │ │ │ ├── slider-dark.png │ │ │ ├── slider-dark@2.png │ │ │ ├── slider-hover-dark.png │ │ │ ├── slider-hover-dark@2.png │ │ │ ├── slider-hover-selected-dark.png │ │ │ ├── slider-hover-selected-dark@2.png │ │ │ ├── slider-hover-selected.png │ │ │ ├── slider-hover-selected@2.png │ │ │ ├── slider-hover.png │ │ │ ├── slider-hover@2.png │ │ │ ├── slider-insensitive-dark.png │ │ │ ├── slider-insensitive-dark@2.png │ │ │ ├── slider-insensitive-selected-dark.png │ │ │ ├── slider-insensitive-selected-dark@2.png │ │ │ ├── slider-insensitive-selected.png │ │ │ ├── slider-insensitive-selected@2.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-insensitive@2.png │ │ │ ├── slider-selected-dark.png │ │ │ ├── slider-selected-dark@2.png │ │ │ ├── slider-selected.png │ │ │ ├── slider-selected@2.png │ │ │ ├── slider.png │ │ │ ├── slider@2.png │ │ │ ├── switch-active-dark.png │ │ │ ├── switch-active-dark@2.png │ │ │ ├── switch-active-insensitive-dark.png │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ ├── switch-active-insensitive-selected.png │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ ├── switch-active-insensitive.png │ │ │ ├── switch-active-insensitive@2.png │ │ │ ├── switch-active-selected.png │ │ │ ├── switch-active-selected@2.png │ │ │ ├── switch-active.png │ │ │ ├── switch-active@2.png │ │ │ ├── switch-dark.png │ │ │ ├── switch-dark@2.png │ │ │ ├── switch-insensitive-dark.png │ │ │ ├── switch-insensitive-dark@2.png │ │ │ ├── switch-insensitive-selected.png │ │ │ ├── switch-insensitive-selected@2.png │ │ │ ├── switch-insensitive.png │ │ │ ├── switch-insensitive@2.png │ │ │ ├── switch-selected.png │ │ │ ├── switch-selected@2.png │ │ │ ├── switch-slider-dark.png │ │ │ ├── switch-slider-dark@2.png │ │ │ ├── switch-slider-insensitive-dark.png │ │ │ ├── switch-slider-insensitive-dark@2.png │ │ │ ├── switch-slider-insensitive.png │ │ │ ├── switch-slider-insensitive@2.png │ │ │ ├── switch-slider.png │ │ │ ├── switch-slider@2.png │ │ │ ├── switch.png │ │ │ ├── switch@2.png │ │ │ ├── thumbnail-frame.png │ │ │ ├── titlebutton-close-active-dark.png │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ ├── titlebutton-close-active.png │ │ │ ├── titlebutton-close-active@2.png │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ ├── titlebutton-close-hover.png │ │ │ ├── titlebutton-close-hover@2.png │ │ │ ├── titlebutton-dark.png │ │ │ ├── titlebutton-dark@2.png │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ ├── titlebutton-maximize-active.png │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ ├── titlebutton-maximize-hover.png │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ ├── titlebutton-minimize-active.png │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ ├── titlebutton-minimize-hover.png │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ ├── titlebutton-unfocused-dark.png │ │ │ ├── titlebutton-unfocused-dark@2.png │ │ │ ├── titlebutton-unfocused.png │ │ │ ├── titlebutton-unfocused@2.png │ │ │ ├── titlebutton.png │ │ │ └── titlebutton@2.png │ │ ├── borders.txt │ │ ├── borders │ │ │ ├── bottom-vertical-button-active-border-dark.png │ │ │ ├── bottom-vertical-button-active-border-dark@2.png │ │ │ ├── bottom-vertical-button-active-border.png │ │ │ ├── bottom-vertical-button-active-border@2.png │ │ │ ├── bottom-vertical-button-normal-border-dark.png │ │ │ ├── bottom-vertical-button-normal-border-dark@2.png │ │ │ ├── bottom-vertical-button-normal-border.png │ │ │ ├── bottom-vertical-button-normal-border@2.png │ │ │ ├── bottom-vertical-entry-focused-border-dark.png │ │ │ ├── bottom-vertical-entry-focused-border-dark@2.png │ │ │ ├── bottom-vertical-entry-focused-border.png │ │ │ ├── bottom-vertical-entry-focused-border@2.png │ │ │ ├── bottom-vertical-entry-normal-border-dark.png │ │ │ ├── bottom-vertical-entry-normal-border-dark@2.png │ │ │ ├── bottom-vertical-entry-normal-border.png │ │ │ ├── bottom-vertical-entry-normal-border@2.png │ │ │ ├── button-active-border-dark.png │ │ │ ├── button-active-border-dark@2.png │ │ │ ├── button-active-border-destructive-dark.png │ │ │ ├── button-active-border-destructive-dark@2.png │ │ │ ├── button-active-border-destructive.png │ │ │ ├── button-active-border-destructive@2.png │ │ │ ├── button-active-border-selected.png │ │ │ ├── button-active-border-selected@2.png │ │ │ ├── button-active-border-suggested-dark.png │ │ │ ├── button-active-border-suggested-dark@2.png │ │ │ ├── button-active-border-suggested.png │ │ │ ├── button-active-border-suggested@2.png │ │ │ ├── button-active-border.png │ │ │ ├── button-active-border@2.png │ │ │ ├── button-border-selected-dark.png │ │ │ ├── button-border-selected-dark@2.png │ │ │ ├── button-focused-border-dark.png │ │ │ ├── button-focused-border-dark@2.png │ │ │ ├── button-focused-border.png │ │ │ ├── button-focused-border@2.png │ │ │ ├── button-normal-border-dark.png │ │ │ ├── button-normal-border-dark@2.png │ │ │ ├── button-normal-border-destructive-dark.png │ │ │ ├── button-normal-border-destructive-dark@2.png │ │ │ ├── button-normal-border-destructive.png │ │ │ ├── button-normal-border-destructive@2.png │ │ │ ├── button-normal-border-suggested-dark.png │ │ │ ├── button-normal-border-suggested-dark@2.png │ │ │ ├── button-normal-border-suggested.png │ │ │ ├── button-normal-border-suggested@2.png │ │ │ ├── button-normal-border.png │ │ │ ├── button-normal-border@2.png │ │ │ ├── entry-focused-border-dark.png │ │ │ ├── entry-focused-border-dark@2.png │ │ │ ├── entry-focused-border.png │ │ │ ├── entry-focused-border@2.png │ │ │ ├── entry-normal-border-dark.png │ │ │ ├── entry-normal-border-dark@2.png │ │ │ ├── entry-normal-border.png │ │ │ ├── entry-normal-border@2.png │ │ │ ├── left-button-active-border-dark.png │ │ │ ├── left-button-active-border-dark@2.png │ │ │ ├── left-button-active-border-destructive-dark.png │ │ │ ├── left-button-active-border-destructive-dark@2.png │ │ │ ├── left-button-active-border-destructive.png │ │ │ ├── left-button-active-border-destructive@2.png │ │ │ ├── left-button-active-border-suggested-dark.png │ │ │ ├── left-button-active-border-suggested-dark@2.png │ │ │ ├── left-button-active-border-suggested.png │ │ │ ├── left-button-active-border-suggested@2.png │ │ │ ├── left-button-active-border.png │ │ │ ├── left-button-active-border@2.png │ │ │ ├── left-button-normal-border-dark.png │ │ │ ├── left-button-normal-border-dark@2.png │ │ │ ├── left-button-normal-border-destructive-dark.png │ │ │ ├── left-button-normal-border-destructive-dark@2.png │ │ │ ├── left-button-normal-border-destructive.png │ │ │ ├── left-button-normal-border-destructive@2.png │ │ │ ├── left-button-normal-border-suggested-dark.png │ │ │ ├── left-button-normal-border-suggested-dark@2.png │ │ │ ├── left-button-normal-border-suggested.png │ │ │ ├── left-button-normal-border-suggested@2.png │ │ │ ├── left-button-normal-border.png │ │ │ ├── left-button-normal-border@2.png │ │ │ ├── left-entry-focused-border-dark.png │ │ │ ├── left-entry-focused-border-dark@2.png │ │ │ ├── left-entry-focused-border.png │ │ │ ├── left-entry-focused-border@2.png │ │ │ ├── left-entry-normal-border-dark.png │ │ │ ├── left-entry-normal-border-dark@2.png │ │ │ ├── left-entry-normal-border.png │ │ │ ├── left-entry-normal-border@2.png │ │ │ ├── middle-button-active-border-dark.png │ │ │ ├── middle-button-active-border-dark@2.png │ │ │ ├── middle-button-active-border-destructive-dark.png │ │ │ ├── middle-button-active-border-destructive-dark@2.png │ │ │ ├── middle-button-active-border-destructive.png │ │ │ ├── middle-button-active-border-destructive@2.png │ │ │ ├── middle-button-active-border-suggested-dark.png │ │ │ ├── middle-button-active-border-suggested-dark@2.png │ │ │ ├── middle-button-active-border-suggested.png │ │ │ ├── middle-button-active-border-suggested@2.png │ │ │ ├── middle-button-active-border.png │ │ │ ├── middle-button-active-border@2.png │ │ │ ├── middle-button-normal-border-dark.png │ │ │ ├── middle-button-normal-border-dark@2.png │ │ │ ├── middle-button-normal-border-destructive-dark.png │ │ │ ├── middle-button-normal-border-destructive-dark@2.png │ │ │ ├── middle-button-normal-border-destructive.png │ │ │ ├── middle-button-normal-border-destructive@2.png │ │ │ ├── middle-button-normal-border-suggested-dark.png │ │ │ ├── middle-button-normal-border-suggested-dark@2.png │ │ │ ├── middle-button-normal-border-suggested.png │ │ │ ├── middle-button-normal-border-suggested@2.png │ │ │ ├── middle-button-normal-border.png │ │ │ ├── middle-button-normal-border@2.png │ │ │ ├── middle-entry-focused-border-dark.png │ │ │ ├── middle-entry-focused-border-dark@2.png │ │ │ ├── middle-entry-focused-border.png │ │ │ ├── middle-entry-focused-border@2.png │ │ │ ├── middle-entry-normal-border-dark.png │ │ │ ├── middle-entry-normal-border-dark@2.png │ │ │ ├── middle-entry-normal-border.png │ │ │ ├── middle-entry-normal-border@2.png │ │ │ ├── middle-vertical-button-active-border-dark.png │ │ │ ├── middle-vertical-button-active-border-dark@2.png │ │ │ ├── middle-vertical-button-active-border.png │ │ │ ├── middle-vertical-button-active-border@2.png │ │ │ ├── middle-vertical-button-normal-border-dark.png │ │ │ ├── middle-vertical-button-normal-border-dark@2.png │ │ │ ├── middle-vertical-button-normal-border.png │ │ │ ├── middle-vertical-button-normal-border@2.png │ │ │ ├── middle-vertical-entry-focused-border-dark.png │ │ │ ├── middle-vertical-entry-focused-border-dark@2.png │ │ │ ├── middle-vertical-entry-focused-border.png │ │ │ ├── middle-vertical-entry-focused-border@2.png │ │ │ ├── middle-vertical-entry-normal-border-dark.png │ │ │ ├── middle-vertical-entry-normal-border-dark@2.png │ │ │ ├── middle-vertical-entry-normal-border.png │ │ │ ├── middle-vertical-entry-normal-border@2.png │ │ │ ├── right-button-active-border-dark.png │ │ │ ├── right-button-active-border-dark@2.png │ │ │ ├── right-button-active-border-destructive-dark.png │ │ │ ├── right-button-active-border-destructive-dark@2.png │ │ │ ├── right-button-active-border-destructive.png │ │ │ ├── right-button-active-border-destructive@2.png │ │ │ ├── right-button-active-border-suggested-dark.png │ │ │ ├── right-button-active-border-suggested-dark@2.png │ │ │ ├── right-button-active-border-suggested.png │ │ │ ├── right-button-active-border-suggested@2.png │ │ │ ├── right-button-active-border.png │ │ │ ├── right-button-active-border@2.png │ │ │ ├── right-button-normal-border-dark.png │ │ │ ├── right-button-normal-border-dark@2.png │ │ │ ├── right-button-normal-border-destructive-dark.png │ │ │ ├── right-button-normal-border-destructive-dark@2.png │ │ │ ├── right-button-normal-border-destructive.png │ │ │ ├── right-button-normal-border-destructive@2.png │ │ │ ├── right-button-normal-border-suggested-dark.png │ │ │ ├── right-button-normal-border-suggested-dark@2.png │ │ │ ├── right-button-normal-border-suggested.png │ │ │ ├── right-button-normal-border-suggested@2.png │ │ │ ├── right-button-normal-border.png │ │ │ ├── right-button-normal-border@2.png │ │ │ ├── right-entry-focused-border-dark.png │ │ │ ├── right-entry-focused-border-dark@2.png │ │ │ ├── right-entry-focused-border.png │ │ │ ├── right-entry-focused-border@2.png │ │ │ ├── right-entry-normal-border-dark.png │ │ │ ├── right-entry-normal-border-dark@2.png │ │ │ ├── right-entry-normal-border.png │ │ │ ├── right-entry-normal-border@2.png │ │ │ ├── scale-highlight-border-dark.png │ │ │ ├── scale-highlight-border-dark@2.png │ │ │ ├── scale-highlight-border-selected.png │ │ │ ├── scale-highlight-border-selected@2.png │ │ │ ├── scale-highlight-border.png │ │ │ ├── scale-highlight-border@2.png │ │ │ ├── scale-trough-border-dark.png │ │ │ ├── scale-trough-border-dark@2.png │ │ │ ├── scale-trough-border-selected.png │ │ │ ├── scale-trough-border-selected@2.png │ │ │ ├── scale-trough-border.png │ │ │ ├── scale-trough-border@2.png │ │ │ ├── scale-trough-osd-border.png │ │ │ ├── scale-trough-osd-border@2.png │ │ │ ├── scale-trough-vertical-border-dark.png │ │ │ ├── scale-trough-vertical-border-dark@2.png │ │ │ ├── scale-trough-vertical-border.png │ │ │ ├── scale-trough-vertical-border@2.png │ │ │ ├── scale-vertical-highlight-border-dark.png │ │ │ ├── scale-vertical-highlight-border-dark@2.png │ │ │ ├── scale-vertical-highlight-border.png │ │ │ ├── scale-vertical-highlight-border@2.png │ │ │ ├── tab-active-dark.png │ │ │ ├── tab-active-dark@2.png │ │ │ ├── tab-active-darker.png │ │ │ ├── tab-active-darker@2.png │ │ │ ├── tab-active.png │ │ │ ├── tab-active@2.png │ │ │ ├── terminal-tab-active-dark.png │ │ │ ├── terminal-tab-active-dark@2.png │ │ │ ├── terminal-tab-active-darker.png │ │ │ ├── terminal-tab-active-darker@2.png │ │ │ ├── terminal-tab-active.png │ │ │ ├── terminal-tab-active@2.png │ │ │ ├── top-vertical-button-active-border-dark.png │ │ │ ├── top-vertical-button-active-border-dark@2.png │ │ │ ├── top-vertical-button-active-border.png │ │ │ ├── top-vertical-button-active-border@2.png │ │ │ ├── top-vertical-button-normal-border-dark.png │ │ │ ├── top-vertical-button-normal-border-dark@2.png │ │ │ ├── top-vertical-button-normal-border.png │ │ │ ├── top-vertical-button-normal-border@2.png │ │ │ ├── top-vertical-entry-focused-border-dark.png │ │ │ ├── top-vertical-entry-focused-border-dark@2.png │ │ │ ├── top-vertical-entry-focused-border.png │ │ │ ├── top-vertical-entry-focused-border@2.png │ │ │ ├── top-vertical-entry-normal-border-dark.png │ │ │ ├── top-vertical-entry-normal-border-dark@2.png │ │ │ ├── top-vertical-entry-normal-border.png │ │ │ ├── top-vertical-entry-normal-border@2.png │ │ │ ├── trough-border-dark.png │ │ │ ├── trough-border-dark@2.png │ │ │ ├── trough-border-selected.png │ │ │ ├── trough-border-selected@2.png │ │ │ ├── trough-border.png │ │ │ ├── trough-border@2.png │ │ │ ├── trough-vertical-border-dark.png │ │ │ ├── trough-vertical-border-dark@2.png │ │ │ ├── trough-vertical-border.png │ │ │ └── trough-vertical-border@2.png │ │ ├── gtk-dark.css │ │ ├── gtk-light.css │ │ ├── gtk.css │ │ ├── render-assets.sh │ │ ├── render-borders.sh │ │ ├── sass │ │ │ ├── _applications.scss │ │ │ ├── _budgie.scss │ │ │ ├── _colors-public.scss │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ ├── _granite.scss │ │ │ ├── _tabs.scss │ │ │ ├── _unity.scss │ │ │ ├── gtk-dark.scss │ │ │ ├── gtk-light.scss │ │ │ └── gtk.scss │ │ ├── thumbnail-dark.png │ │ └── thumbnail.png │ ├── 3.20 │ │ ├── assets.svg │ │ ├── assets.txt │ │ ├── assets │ │ │ ├── checkbox-checked-dark.png │ │ │ ├── checkbox-checked-dark@2.png │ │ │ ├── checkbox-checked-insensitive-dark.png │ │ │ ├── checkbox-checked-insensitive-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected-dark.png │ │ │ ├── checkbox-checked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-checked-insensitive-selected.png │ │ │ ├── checkbox-checked-insensitive-selected@2.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked-insensitive@2.png │ │ │ ├── checkbox-checked-selected-dark.png │ │ │ ├── checkbox-checked-selected-dark@2.png │ │ │ ├── checkbox-checked-selected.png │ │ │ ├── checkbox-checked-selected@2.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-checked@2.png │ │ │ ├── checkbox-mixed-dark.png │ │ │ ├── checkbox-mixed-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-dark.png │ │ │ ├── checkbox-mixed-insensitive-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark.png │ │ │ ├── checkbox-mixed-insensitive-selected-dark@2.png │ │ │ ├── checkbox-mixed-insensitive-selected.png │ │ │ ├── checkbox-mixed-insensitive-selected@2.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed-insensitive@2.png │ │ │ ├── checkbox-mixed-selected-dark.png │ │ │ ├── checkbox-mixed-selected-dark@2.png │ │ │ ├── checkbox-mixed-selected.png │ │ │ ├── checkbox-mixed-selected@2.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-mixed@2.png │ │ │ ├── checkbox-unchecked-dark.png │ │ │ ├── checkbox-unchecked-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-dark.png │ │ │ ├── checkbox-unchecked-insensitive-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark.png │ │ │ ├── checkbox-unchecked-insensitive-selected-dark@2.png │ │ │ ├── checkbox-unchecked-insensitive-selected.png │ │ │ ├── checkbox-unchecked-insensitive-selected@2.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked-insensitive@2.png │ │ │ ├── checkbox-unchecked-selected-dark.png │ │ │ ├── checkbox-unchecked-selected-dark@2.png │ │ │ ├── checkbox-unchecked-selected.png │ │ │ ├── checkbox-unchecked-selected@2.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── checkbox-unchecked@2.png │ │ │ ├── grid-selection-checked-dark.png │ │ │ ├── grid-selection-checked-dark@2.png │ │ │ ├── grid-selection-checked.png │ │ │ ├── grid-selection-checked@2.png │ │ │ ├── grid-selection-unchecked-dark.png │ │ │ ├── grid-selection-unchecked-dark@2.png │ │ │ ├── grid-selection-unchecked.png │ │ │ ├── grid-selection-unchecked@2.png │ │ │ ├── header-separator-dark.png │ │ │ ├── header-separator-dark@2.png │ │ │ ├── header-separator-left-dark.png │ │ │ ├── header-separator-left-dark@2.png │ │ │ ├── header-separator-left.png │ │ │ ├── header-separator-left@2.png │ │ │ ├── header-separator-right-dark.png │ │ │ ├── header-separator-right-dark@2.png │ │ │ ├── header-separator-right.png │ │ │ ├── header-separator-right@2.png │ │ │ ├── header-separator-selectionmode-dark.png │ │ │ ├── header-separator-selectionmode-dark@2.png │ │ │ ├── header-separator-selectionmode-left-dark.png │ │ │ ├── header-separator-selectionmode-left-dark@2.png │ │ │ ├── header-separator-selectionmode-left.png │ │ │ ├── header-separator-selectionmode-left@2.png │ │ │ ├── header-separator-selectionmode-right-dark.png │ │ │ ├── header-separator-selectionmode-right-dark@2.png │ │ │ ├── header-separator-selectionmode-right.png │ │ │ ├── header-separator-selectionmode-right@2.png │ │ │ ├── header-separator-selectionmode.png │ │ │ ├── header-separator-selectionmode@2.png │ │ │ ├── header-separator.png │ │ │ ├── header-separator@2.png │ │ │ ├── radio-checked-dark.png │ │ │ ├── radio-checked-dark@2.png │ │ │ ├── radio-checked-insensitive-dark.png │ │ │ ├── radio-checked-insensitive-dark@2.png │ │ │ ├── radio-checked-insensitive-selected-dark.png │ │ │ ├── radio-checked-insensitive-selected-dark@2.png │ │ │ ├── radio-checked-insensitive-selected.png │ │ │ ├── radio-checked-insensitive-selected@2.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked-insensitive@2.png │ │ │ ├── radio-checked-selected-dark.png │ │ │ ├── radio-checked-selected-dark@2.png │ │ │ ├── radio-checked-selected.png │ │ │ ├── radio-checked-selected@2.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-checked@2.png │ │ │ ├── radio-mixed-dark.png │ │ │ ├── radio-mixed-dark@2.png │ │ │ ├── radio-mixed-insensitive-dark.png │ │ │ ├── radio-mixed-insensitive-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected-dark.png │ │ │ ├── radio-mixed-insensitive-selected-dark@2.png │ │ │ ├── radio-mixed-insensitive-selected.png │ │ │ ├── radio-mixed-insensitive-selected@2.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed-insensitive@2.png │ │ │ ├── radio-mixed-selected-dark.png │ │ │ ├── radio-mixed-selected-dark@2.png │ │ │ ├── radio-mixed-selected.png │ │ │ ├── radio-mixed-selected@2.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-mixed@2.png │ │ │ ├── radio-unchecked-dark.png │ │ │ ├── radio-unchecked-dark@2.png │ │ │ ├── radio-unchecked-insensitive-dark.png │ │ │ ├── radio-unchecked-insensitive-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected-dark.png │ │ │ ├── radio-unchecked-insensitive-selected-dark@2.png │ │ │ ├── radio-unchecked-insensitive-selected.png │ │ │ ├── radio-unchecked-insensitive-selected@2.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked-insensitive@2.png │ │ │ ├── radio-unchecked-selected-dark.png │ │ │ ├── radio-unchecked-selected-dark@2.png │ │ │ ├── radio-unchecked-selected.png │ │ │ ├── radio-unchecked-selected@2.png │ │ │ ├── radio-unchecked.png │ │ │ ├── radio-unchecked@2.png │ │ │ ├── scrollbar-slider-active-dark.png │ │ │ ├── scrollbar-slider-active-dark@2.png │ │ │ ├── scrollbar-slider-active.png │ │ │ ├── scrollbar-slider-active@2.png │ │ │ ├── scrollbar-slider-dark.png │ │ │ ├── scrollbar-slider-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active-dark.png │ │ │ ├── scrollbar-slider-horizontal-active-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-active.png │ │ │ ├── scrollbar-slider-horizontal-active@2.png │ │ │ ├── scrollbar-slider-horizontal-dark.png │ │ │ ├── scrollbar-slider-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark.png │ │ │ ├── scrollbar-slider-horizontal-hover-dark@2.png │ │ │ ├── scrollbar-slider-horizontal-hover.png │ │ │ ├── scrollbar-slider-horizontal-hover@2.png │ │ │ ├── scrollbar-slider-horizontal.png │ │ │ ├── scrollbar-slider-horizontal@2.png │ │ │ ├── scrollbar-slider-hover-dark.png │ │ │ ├── scrollbar-slider-hover-dark@2.png │ │ │ ├── scrollbar-slider-hover.png │ │ │ ├── scrollbar-slider-hover@2.png │ │ │ ├── scrollbar-slider-overlay-dark.png │ │ │ ├── scrollbar-slider-overlay-dark@2.png │ │ │ ├── scrollbar-slider-overlay-horizontal-dark.png │ │ │ ├── scrollbar-slider-overlay-horizontal-dark@2.png │ │ │ ├── scrollbar-slider-overlay-horizontal.png │ │ │ ├── scrollbar-slider-overlay-horizontal@2.png │ │ │ ├── scrollbar-slider-overlay.png │ │ │ ├── scrollbar-slider-overlay@2.png │ │ │ ├── scrollbar-slider.png │ │ │ ├── scrollbar-slider@2.png │ │ │ ├── scrollbar-trough-dark.png │ │ │ ├── scrollbar-trough-dark@2.png │ │ │ ├── scrollbar-trough-horizontal-dark.png │ │ │ ├── scrollbar-trough-horizontal-dark@2.png │ │ │ ├── scrollbar-trough-horizontal.png │ │ │ ├── scrollbar-trough-horizontal@2.png │ │ │ ├── scrollbar-trough-rtl-dark.png │ │ │ ├── scrollbar-trough-rtl-dark@2.png │ │ │ ├── scrollbar-trough-rtl.png │ │ │ ├── scrollbar-trough-rtl@2.png │ │ │ ├── scrollbar-trough.png │ │ │ ├── scrollbar-trough@2.png │ │ │ ├── slider-active-dark.png │ │ │ ├── slider-active-dark@2.png │ │ │ ├── slider-active-selected-dark.png │ │ │ ├── slider-active-selected-dark@2.png │ │ │ ├── slider-active-selected.png │ │ │ ├── slider-active-selected@2.png │ │ │ ├── slider-active.png │ │ │ ├── slider-active@2.png │ │ │ ├── slider-dark.png │ │ │ ├── slider-dark@2.png │ │ │ ├── slider-hover-dark.png │ │ │ ├── slider-hover-dark@2.png │ │ │ ├── slider-hover-selected-dark.png │ │ │ ├── slider-hover-selected-dark@2.png │ │ │ ├── slider-hover-selected.png │ │ │ ├── slider-hover-selected@2.png │ │ │ ├── slider-hover.png │ │ │ ├── slider-hover@2.png │ │ │ ├── slider-insensitive-dark.png │ │ │ ├── slider-insensitive-dark@2.png │ │ │ ├── slider-insensitive-selected-dark.png │ │ │ ├── slider-insensitive-selected-dark@2.png │ │ │ ├── slider-insensitive-selected.png │ │ │ ├── slider-insensitive-selected@2.png │ │ │ ├── slider-insensitive.png │ │ │ ├── slider-insensitive@2.png │ │ │ ├── slider-selected-dark.png │ │ │ ├── slider-selected-dark@2.png │ │ │ ├── slider-selected.png │ │ │ ├── slider-selected@2.png │ │ │ ├── slider.png │ │ │ ├── slider@2.png │ │ │ ├── switch-active-dark.png │ │ │ ├── switch-active-dark@2.png │ │ │ ├── switch-active-insensitive-dark.png │ │ │ ├── switch-active-insensitive-dark@2.png │ │ │ ├── switch-active-insensitive-selected.png │ │ │ ├── switch-active-insensitive-selected@2.png │ │ │ ├── switch-active-insensitive.png │ │ │ ├── switch-active-insensitive@2.png │ │ │ ├── switch-active-selected.png │ │ │ ├── switch-active-selected@2.png │ │ │ ├── switch-active.png │ │ │ ├── switch-active@2.png │ │ │ ├── switch-dark.png │ │ │ ├── switch-dark@2.png │ │ │ ├── switch-insensitive-dark.png │ │ │ ├── switch-insensitive-dark@2.png │ │ │ ├── switch-insensitive-selected.png │ │ │ ├── switch-insensitive-selected@2.png │ │ │ ├── switch-insensitive.png │ │ │ ├── switch-insensitive@2.png │ │ │ ├── switch-selected.png │ │ │ ├── switch-selected@2.png │ │ │ ├── switch-slider-dark.png │ │ │ ├── switch-slider-dark@2.png │ │ │ ├── switch-slider-insensitive-dark.png │ │ │ ├── switch-slider-insensitive-dark@2.png │ │ │ ├── switch-slider-insensitive.png │ │ │ ├── switch-slider-insensitive@2.png │ │ │ ├── switch-slider.png │ │ │ ├── switch-slider@2.png │ │ │ ├── switch.png │ │ │ ├── switch@2.png │ │ │ ├── thumbnail-frame.png │ │ │ ├── titlebutton-close-active-dark.png │ │ │ ├── titlebutton-close-active-dark@2.png │ │ │ ├── titlebutton-close-active.png │ │ │ ├── titlebutton-close-active@2.png │ │ │ ├── titlebutton-close-hover-dark.png │ │ │ ├── titlebutton-close-hover-dark@2.png │ │ │ ├── titlebutton-close-hover.png │ │ │ ├── titlebutton-close-hover@2.png │ │ │ ├── titlebutton-dark.png │ │ │ ├── titlebutton-dark@2.png │ │ │ ├── titlebutton-maximize-active-dark.png │ │ │ ├── titlebutton-maximize-active-dark@2.png │ │ │ ├── titlebutton-maximize-active.png │ │ │ ├── titlebutton-maximize-active@2.png │ │ │ ├── titlebutton-maximize-hover-dark.png │ │ │ ├── titlebutton-maximize-hover-dark@2.png │ │ │ ├── titlebutton-maximize-hover.png │ │ │ ├── titlebutton-maximize-hover@2.png │ │ │ ├── titlebutton-minimize-active-dark.png │ │ │ ├── titlebutton-minimize-active-dark@2.png │ │ │ ├── titlebutton-minimize-active.png │ │ │ ├── titlebutton-minimize-active@2.png │ │ │ ├── titlebutton-minimize-hover-dark.png │ │ │ ├── titlebutton-minimize-hover-dark@2.png │ │ │ ├── titlebutton-minimize-hover.png │ │ │ ├── titlebutton-minimize-hover@2.png │ │ │ ├── titlebutton-unfocused-dark.png │ │ │ ├── titlebutton-unfocused-dark@2.png │ │ │ ├── titlebutton-unfocused.png │ │ │ ├── titlebutton-unfocused@2.png │ │ │ ├── titlebutton.png │ │ │ └── titlebutton@2.png │ │ ├── borders.txt │ │ ├── borders │ │ │ ├── bottom-vertical-button-active-border-dark.png │ │ │ ├── bottom-vertical-button-active-border-dark@2.png │ │ │ ├── bottom-vertical-button-active-border.png │ │ │ ├── bottom-vertical-button-active-border@2.png │ │ │ ├── bottom-vertical-button-normal-border-dark.png │ │ │ ├── bottom-vertical-button-normal-border-dark@2.png │ │ │ ├── bottom-vertical-button-normal-border.png │ │ │ ├── bottom-vertical-button-normal-border@2.png │ │ │ ├── bottom-vertical-entry-focused-border-dark.png │ │ │ ├── bottom-vertical-entry-focused-border-dark@2.png │ │ │ ├── bottom-vertical-entry-focused-border.png │ │ │ ├── bottom-vertical-entry-focused-border@2.png │ │ │ ├── bottom-vertical-entry-normal-border-dark.png │ │ │ ├── bottom-vertical-entry-normal-border-dark@2.png │ │ │ ├── bottom-vertical-entry-normal-border.png │ │ │ ├── bottom-vertical-entry-normal-border@2.png │ │ │ ├── button-active-border-dark.png │ │ │ ├── button-active-border-dark@2.png │ │ │ ├── button-active-border-destructive-dark.png │ │ │ ├── button-active-border-destructive-dark@2.png │ │ │ ├── button-active-border-destructive.png │ │ │ ├── button-active-border-destructive@2.png │ │ │ ├── button-active-border-selected.png │ │ │ ├── button-active-border-selected@2.png │ │ │ ├── button-active-border-suggested-dark.png │ │ │ ├── button-active-border-suggested-dark@2.png │ │ │ ├── button-active-border-suggested.png │ │ │ ├── button-active-border-suggested@2.png │ │ │ ├── button-active-border.png │ │ │ ├── button-active-border@2.png │ │ │ ├── button-border-selected-dark.png │ │ │ ├── button-border-selected-dark@2.png │ │ │ ├── button-focused-border-dark.png │ │ │ ├── button-focused-border-dark@2.png │ │ │ ├── button-focused-border.png │ │ │ ├── button-focused-border@2.png │ │ │ ├── button-normal-border-dark.png │ │ │ ├── button-normal-border-dark@2.png │ │ │ ├── button-normal-border-destructive-dark.png │ │ │ ├── button-normal-border-destructive-dark@2.png │ │ │ ├── button-normal-border-destructive.png │ │ │ ├── button-normal-border-destructive@2.png │ │ │ ├── button-normal-border-suggested-dark.png │ │ │ ├── button-normal-border-suggested-dark@2.png │ │ │ ├── button-normal-border-suggested.png │ │ │ ├── button-normal-border-suggested@2.png │ │ │ ├── button-normal-border.png │ │ │ ├── button-normal-border@2.png │ │ │ ├── entry-focused-border-dark.png │ │ │ ├── entry-focused-border-dark@2.png │ │ │ ├── entry-focused-border.png │ │ │ ├── entry-focused-border@2.png │ │ │ ├── entry-normal-border-dark.png │ │ │ ├── entry-normal-border-dark@2.png │ │ │ ├── entry-normal-border.png │ │ │ ├── entry-normal-border@2.png │ │ │ ├── left-button-active-border-dark.png │ │ │ ├── left-button-active-border-dark@2.png │ │ │ ├── left-button-active-border-destructive-dark.png │ │ │ ├── left-button-active-border-destructive-dark@2.png │ │ │ ├── left-button-active-border-destructive.png │ │ │ ├── left-button-active-border-destructive@2.png │ │ │ ├── left-button-active-border-suggested-dark.png │ │ │ ├── left-button-active-border-suggested-dark@2.png │ │ │ ├── left-button-active-border-suggested.png │ │ │ ├── left-button-active-border-suggested@2.png │ │ │ ├── left-button-active-border.png │ │ │ ├── left-button-active-border@2.png │ │ │ ├── left-button-normal-border-dark.png │ │ │ ├── left-button-normal-border-dark@2.png │ │ │ ├── left-button-normal-border-destructive-dark.png │ │ │ ├── left-button-normal-border-destructive-dark@2.png │ │ │ ├── left-button-normal-border-destructive.png │ │ │ ├── left-button-normal-border-destructive@2.png │ │ │ ├── left-button-normal-border-suggested-dark.png │ │ │ ├── left-button-normal-border-suggested-dark@2.png │ │ │ ├── left-button-normal-border-suggested.png │ │ │ ├── left-button-normal-border-suggested@2.png │ │ │ ├── left-button-normal-border.png │ │ │ ├── left-button-normal-border@2.png │ │ │ ├── left-entry-focused-border-dark.png │ │ │ ├── left-entry-focused-border-dark@2.png │ │ │ ├── left-entry-focused-border.png │ │ │ ├── left-entry-focused-border@2.png │ │ │ ├── left-entry-normal-border-dark.png │ │ │ ├── left-entry-normal-border-dark@2.png │ │ │ ├── left-entry-normal-border.png │ │ │ ├── left-entry-normal-border@2.png │ │ │ ├── middle-button-active-border-dark.png │ │ │ ├── middle-button-active-border-dark@2.png │ │ │ ├── middle-button-active-border-destructive-dark.png │ │ │ ├── middle-button-active-border-destructive-dark@2.png │ │ │ ├── middle-button-active-border-destructive.png │ │ │ ├── middle-button-active-border-destructive@2.png │ │ │ ├── middle-button-active-border-suggested-dark.png │ │ │ ├── middle-button-active-border-suggested-dark@2.png │ │ │ ├── middle-button-active-border-suggested.png │ │ │ ├── middle-button-active-border-suggested@2.png │ │ │ ├── middle-button-active-border.png │ │ │ ├── middle-button-active-border@2.png │ │ │ ├── middle-button-normal-border-dark.png │ │ │ ├── middle-button-normal-border-dark@2.png │ │ │ ├── middle-button-normal-border-destructive-dark.png │ │ │ ├── middle-button-normal-border-destructive-dark@2.png │ │ │ ├── middle-button-normal-border-destructive.png │ │ │ ├── middle-button-normal-border-destructive@2.png │ │ │ ├── middle-button-normal-border-suggested-dark.png │ │ │ ├── middle-button-normal-border-suggested-dark@2.png │ │ │ ├── middle-button-normal-border-suggested.png │ │ │ ├── middle-button-normal-border-suggested@2.png │ │ │ ├── middle-button-normal-border.png │ │ │ ├── middle-button-normal-border@2.png │ │ │ ├── middle-entry-focused-border-dark.png │ │ │ ├── middle-entry-focused-border-dark@2.png │ │ │ ├── middle-entry-focused-border.png │ │ │ ├── middle-entry-focused-border@2.png │ │ │ ├── middle-entry-normal-border-dark.png │ │ │ ├── middle-entry-normal-border-dark@2.png │ │ │ ├── middle-entry-normal-border.png │ │ │ ├── middle-entry-normal-border@2.png │ │ │ ├── middle-vertical-button-active-border-dark.png │ │ │ ├── middle-vertical-button-active-border-dark@2.png │ │ │ ├── middle-vertical-button-active-border.png │ │ │ ├── middle-vertical-button-active-border@2.png │ │ │ ├── middle-vertical-button-normal-border-dark.png │ │ │ ├── middle-vertical-button-normal-border-dark@2.png │ │ │ ├── middle-vertical-button-normal-border.png │ │ │ ├── middle-vertical-button-normal-border@2.png │ │ │ ├── middle-vertical-entry-focused-border-dark.png │ │ │ ├── middle-vertical-entry-focused-border-dark@2.png │ │ │ ├── middle-vertical-entry-focused-border.png │ │ │ ├── middle-vertical-entry-focused-border@2.png │ │ │ ├── middle-vertical-entry-normal-border-dark.png │ │ │ ├── middle-vertical-entry-normal-border-dark@2.png │ │ │ ├── middle-vertical-entry-normal-border.png │ │ │ ├── middle-vertical-entry-normal-border@2.png │ │ │ ├── right-button-active-border-dark.png │ │ │ ├── right-button-active-border-dark@2.png │ │ │ ├── right-button-active-border-destructive-dark.png │ │ │ ├── right-button-active-border-destructive-dark@2.png │ │ │ ├── right-button-active-border-destructive.png │ │ │ ├── right-button-active-border-destructive@2.png │ │ │ ├── right-button-active-border-suggested-dark.png │ │ │ ├── right-button-active-border-suggested-dark@2.png │ │ │ ├── right-button-active-border-suggested.png │ │ │ ├── right-button-active-border-suggested@2.png │ │ │ ├── right-button-active-border.png │ │ │ ├── right-button-active-border@2.png │ │ │ ├── right-button-normal-border-dark.png │ │ │ ├── right-button-normal-border-dark@2.png │ │ │ ├── right-button-normal-border-destructive-dark.png │ │ │ ├── right-button-normal-border-destructive-dark@2.png │ │ │ ├── right-button-normal-border-destructive.png │ │ │ ├── right-button-normal-border-destructive@2.png │ │ │ ├── right-button-normal-border-suggested-dark.png │ │ │ ├── right-button-normal-border-suggested-dark@2.png │ │ │ ├── right-button-normal-border-suggested.png │ │ │ ├── right-button-normal-border-suggested@2.png │ │ │ ├── right-button-normal-border.png │ │ │ ├── right-button-normal-border@2.png │ │ │ ├── right-entry-focused-border-dark.png │ │ │ ├── right-entry-focused-border-dark@2.png │ │ │ ├── right-entry-focused-border.png │ │ │ ├── right-entry-focused-border@2.png │ │ │ ├── right-entry-normal-border-dark.png │ │ │ ├── right-entry-normal-border-dark@2.png │ │ │ ├── right-entry-normal-border.png │ │ │ ├── right-entry-normal-border@2.png │ │ │ ├── scale-highlight-border-dark.png │ │ │ ├── scale-highlight-border-dark@2.png │ │ │ ├── scale-highlight-border-selected.png │ │ │ ├── scale-highlight-border-selected@2.png │ │ │ ├── scale-highlight-border.png │ │ │ ├── scale-highlight-border@2.png │ │ │ ├── scale-trough-border-dark.png │ │ │ ├── scale-trough-border-dark@2.png │ │ │ ├── scale-trough-border-selected.png │ │ │ ├── scale-trough-border-selected@2.png │ │ │ ├── scale-trough-border.png │ │ │ ├── scale-trough-border@2.png │ │ │ ├── scale-trough-osd-border.png │ │ │ ├── scale-trough-osd-border@2.png │ │ │ ├── scale-trough-vertical-border-dark.png │ │ │ ├── scale-trough-vertical-border-dark@2.png │ │ │ ├── scale-trough-vertical-border.png │ │ │ ├── scale-trough-vertical-border@2.png │ │ │ ├── scale-vertical-highlight-border-dark.png │ │ │ ├── scale-vertical-highlight-border-dark@2.png │ │ │ ├── scale-vertical-highlight-border.png │ │ │ ├── scale-vertical-highlight-border@2.png │ │ │ ├── tab-active-dark.png │ │ │ ├── tab-active-dark@2.png │ │ │ ├── tab-active-darker.png │ │ │ ├── tab-active-darker@2.png │ │ │ ├── tab-active.png │ │ │ ├── tab-active@2.png │ │ │ ├── terminal-tab-active-dark.png │ │ │ ├── terminal-tab-active-dark@2.png │ │ │ ├── terminal-tab-active-darker.png │ │ │ ├── terminal-tab-active-darker@2.png │ │ │ ├── terminal-tab-active.png │ │ │ ├── terminal-tab-active@2.png │ │ │ ├── top-vertical-button-active-border-dark.png │ │ │ ├── top-vertical-button-active-border-dark@2.png │ │ │ ├── top-vertical-button-active-border.png │ │ │ ├── top-vertical-button-active-border@2.png │ │ │ ├── top-vertical-button-normal-border-dark.png │ │ │ ├── top-vertical-button-normal-border-dark@2.png │ │ │ ├── top-vertical-button-normal-border.png │ │ │ ├── top-vertical-button-normal-border@2.png │ │ │ ├── top-vertical-entry-focused-border-dark.png │ │ │ ├── top-vertical-entry-focused-border-dark@2.png │ │ │ ├── top-vertical-entry-focused-border.png │ │ │ ├── top-vertical-entry-focused-border@2.png │ │ │ ├── top-vertical-entry-normal-border-dark.png │ │ │ ├── top-vertical-entry-normal-border-dark@2.png │ │ │ ├── top-vertical-entry-normal-border.png │ │ │ ├── top-vertical-entry-normal-border@2.png │ │ │ ├── trough-border-dark.png │ │ │ ├── trough-border-dark@2.png │ │ │ ├── trough-border-selected.png │ │ │ ├── trough-border-selected@2.png │ │ │ ├── trough-border.png │ │ │ ├── trough-border@2.png │ │ │ ├── trough-vertical-border-dark.png │ │ │ ├── trough-vertical-border-dark@2.png │ │ │ ├── trough-vertical-border.png │ │ │ └── trough-vertical-border@2.png │ │ ├── gtk-dark.css │ │ ├── gtk-light.css │ │ ├── gtk.css │ │ ├── render-assets.sh │ │ ├── render-borders.sh │ │ ├── sass │ │ │ ├── _applications.scss │ │ │ ├── _budgie.scss │ │ │ ├── _colors-public.scss │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ ├── _granite.scss │ │ │ ├── _tabs.scss │ │ │ ├── _unity.scss │ │ │ ├── gtk-dark.scss │ │ │ ├── gtk-light.scss │ │ │ └── gtk.scss │ │ ├── thumbnail-dark.png │ │ └── thumbnail.png │ └── 3.22 ├── index.theme ├── index.theme-dark ├── index.theme-light ├── metacity-1 │ ├── close.svg │ ├── close_prelight.svg │ ├── close_pressed.svg │ ├── close_unfocused.svg │ ├── max.svg │ ├── max_prelight.svg │ ├── max_pressed.svg │ ├── max_unfocused.svg │ ├── menu.svg │ ├── menu_prelight.svg │ ├── menu_unfocused.svg │ ├── metacity-theme-1-dark.xml │ ├── metacity-theme-1-light.xml │ ├── metacity-theme-1.xml │ ├── metacity-theme-2-dark.xml │ ├── metacity-theme-2-light.xml │ ├── metacity-theme-2.xml │ ├── metacity-theme-3-dark.xml │ ├── metacity-theme-3-light.xml │ ├── metacity-theme-3.xml │ ├── min.svg │ ├── min_prelight.svg │ ├── min_pressed.svg │ ├── min_unfocused.svg │ ├── thumbnail-light.png │ └── thumbnail.png ├── unity │ ├── close.svg │ ├── close_dash.svg │ ├── close_dash_disabled.svg │ ├── close_dash_prelight.svg │ ├── close_dash_pressed.svg │ ├── close_focused_normal.svg │ ├── close_focused_prelight.svg │ ├── close_focused_pressed.svg │ ├── close_unfocused.svg │ ├── close_unfocused_prelight.svg │ ├── close_unfocused_pressed.svg │ ├── launcher_arrow_ltr_19.svg │ ├── launcher_arrow_ltr_37.svg │ ├── launcher_arrow_outline_ltr_19.svg │ ├── launcher_arrow_outline_ltr_37.svg │ ├── launcher_arrow_outline_rtl_19.svg │ ├── launcher_arrow_outline_rtl_37.svg │ ├── launcher_arrow_rtl_19.svg │ ├── launcher_arrow_rtl_37.svg │ ├── launcher_icon_back_150.svg │ ├── launcher_icon_back_54.svg │ ├── launcher_icon_edge_150.svg │ ├── launcher_icon_edge_54.svg │ ├── launcher_icon_glow_200.svg │ ├── launcher_icon_glow_62.svg │ ├── launcher_icon_selected_back_150.svg │ ├── launcher_icon_selected_back_54.svg │ ├── launcher_icon_shadow_200.svg │ ├── launcher_icon_shadow_62.svg │ ├── launcher_icon_shine_150.svg │ ├── launcher_icon_shine_54.svg │ ├── launcher_pip_ltr_19.svg │ ├── launcher_pip_ltr_37.svg │ ├── launcher_pip_rtl_19.svg │ ├── launcher_pip_rtl_37.svg │ ├── maximize.svg │ ├── maximize_dash.svg │ ├── maximize_dash_disabled.svg │ ├── maximize_dash_prelight.svg │ ├── maximize_dash_pressed.svg │ ├── maximize_focused_normal.svg │ ├── maximize_focused_prelight.svg │ ├── maximize_focused_pressed.svg │ ├── maximize_unfocused.svg │ ├── maximize_unfocused_prelight.svg │ ├── maximize_unfocused_pressed.svg │ ├── minimize.svg │ ├── minimize_dash.svg │ ├── minimize_dash_disabled.svg │ ├── minimize_dash_prelight.svg │ ├── minimize_dash_pressed.svg │ ├── minimize_focused_normal.svg │ ├── minimize_focused_prelight.svg │ ├── minimize_focused_pressed.svg │ ├── minimize_unfocused.svg │ ├── minimize_unfocused_prelight.svg │ ├── minimize_unfocused_pressed.svg │ ├── unmaximize.svg │ ├── unmaximize_dash.svg │ ├── unmaximize_dash_disabled.svg │ ├── unmaximize_dash_prelight.svg │ ├── unmaximize_dash_pressed.svg │ ├── unmaximize_focused_normal.svg │ ├── unmaximize_focused_prelight.svg │ ├── unmaximize_focused_pressed.svg │ ├── unmaximize_unfocused.svg │ ├── unmaximize_unfocused_prelight.svg │ └── unmaximize_unfocused_pressed.svg ├── xfwm4-light │ ├── bottom-active.xpm │ ├── bottom-inactive.xpm │ ├── bottom-left-active.xpm │ ├── bottom-left-inactive.xpm │ ├── bottom-right-active.xpm │ ├── bottom-right-inactive.xpm │ ├── close-active.xpm │ ├── close-inactive.xpm │ ├── close-prelight.xpm │ ├── close-pressed.xpm │ ├── hide-active.xpm │ ├── hide-inactive.xpm │ ├── hide-prelight.xpm │ ├── hide-pressed.xpm │ ├── left-active.xpm │ ├── left-inactive.xpm │ ├── maximize-active.xpm │ ├── maximize-inactive.xpm │ ├── maximize-prelight.xpm │ ├── maximize-pressed.xpm │ ├── menu-active.xpm │ ├── menu-inactive.xpm │ ├── menu-pressed.xpm │ ├── right-active.xpm │ ├── right-inactive.xpm │ ├── shade-active.xpm │ ├── shade-inactive.xpm │ ├── shade-pressed.xpm │ ├── stick-active.xpm │ ├── stick-inactive.xpm │ ├── stick-pressed.xpm │ ├── themerc │ ├── title-1-active-shaded.xpm │ ├── title-1-active.xpm │ ├── title-1-inactive.xpm │ ├── title-2-active.xpm │ ├── title-2-inactive.xpm │ ├── title-3-active.xpm │ ├── title-3-inactive.xpm │ ├── title-4-active.xpm │ ├── title-4-inactive.xpm │ ├── title-5-active.xpm │ ├── title-5-inactive.xpm │ ├── top-left-active-shaded.xpm │ ├── top-left-active.xpm │ ├── top-left-inactive.xpm │ ├── top-right-active-shaded.xpm │ ├── top-right-active.xpm │ └── top-right-inactive.xpm └── xfwm4 │ ├── bottom-active.xpm │ ├── bottom-inactive.xpm │ ├── bottom-left-active.xpm │ ├── bottom-left-inactive.xpm │ ├── bottom-right-active.xpm │ ├── bottom-right-inactive.xpm │ ├── close-active.xpm │ ├── close-inactive.xpm │ ├── close-prelight.xpm │ ├── close-pressed.xpm │ ├── hide-active.xpm │ ├── hide-inactive.xpm │ ├── hide-prelight.xpm │ ├── hide-pressed.xpm │ ├── left-active.xpm │ ├── left-inactive.xpm │ ├── maximize-active.xpm │ ├── maximize-inactive.xpm │ ├── maximize-prelight.xpm │ ├── maximize-pressed.xpm │ ├── menu-active.xpm │ ├── menu-inactive.xpm │ ├── menu-pressed.xpm │ ├── right-active.xpm │ ├── right-inactive.xpm │ ├── shade-active.xpm │ ├── shade-inactive.xpm │ ├── shade-pressed.xpm │ ├── stick-active.xpm │ ├── stick-inactive.xpm │ ├── stick-pressed.xpm │ ├── themerc │ ├── title-1-active-shaded.xpm │ ├── title-1-active.xpm │ ├── title-1-inactive.xpm │ ├── title-2-active.xpm │ ├── title-2-inactive.xpm │ ├── title-3-active.xpm │ ├── title-3-inactive.xpm │ ├── title-4-active.xpm │ ├── title-4-inactive.xpm │ ├── title-5-active.xpm │ ├── title-5-inactive.xpm │ ├── top-left-active-shaded.xpm │ ├── top-left-active.xpm │ ├── top-left-inactive.xpm │ ├── top-right-active-shaded.xpm │ ├── top-right-active.xpm │ └── top-right-inactive.xpm ├── configure.ac ├── extra ├── Chrome │ ├── Vertex-light.crx │ ├── Vertex.crx │ └── source │ │ ├── Vertex-Light │ │ ├── images │ │ │ ├── theme_frame.png │ │ │ └── theme_toolbar.png │ │ └── manifest.json │ │ └── Vertex │ │ ├── images │ │ ├── theme_frame.png │ │ └── theme_toolbar.png │ │ └── manifest.json ├── Firefox │ ├── Vertex-Dark │ │ └── chrome │ │ │ ├── images │ │ │ ├── arrow-dn-dis.gif │ │ │ ├── arrow-dn[dropmarker].png │ │ │ ├── back-insensitive.png │ │ │ ├── back.png │ │ │ ├── close_prelight.svg │ │ │ ├── close_pressed.svg │ │ │ ├── connecting.png │ │ │ ├── forward.png │ │ │ ├── loading.png │ │ │ ├── max_prelight.svg │ │ │ ├── max_pressed.svg │ │ │ ├── min_prelight.svg │ │ │ ├── min_pressed.svg │ │ │ ├── navbar-separator.png │ │ │ ├── new-tab.png │ │ │ ├── privatebrowsing-mask.png │ │ │ ├── search.png │ │ │ ├── tab-close-selected.svg │ │ │ ├── tab-close.svg │ │ │ ├── tab-end-hover.svg │ │ │ ├── tab-middle-hover.svg │ │ │ ├── tab-separator.svg │ │ │ ├── tab-start-hover.svg │ │ │ ├── tabActiveEnd.svg │ │ │ ├── tabActiveMiddle.svg │ │ │ ├── tabActiveStart.svg │ │ │ ├── urlbar-arrow.png │ │ │ └── window_button.svg │ │ │ ├── userChrome.css │ │ │ └── userContent.css │ ├── Vertex-Light │ │ └── chrome │ │ │ ├── images │ │ │ ├── Toolbar-inverted.png │ │ │ ├── arrow-dn-dis.gif │ │ │ ├── arrow-dn[dropmarker].png │ │ │ ├── back-insensitive.png │ │ │ ├── back.png │ │ │ ├── close_prelight.svg │ │ │ ├── close_pressed.svg │ │ │ ├── connecting.png │ │ │ ├── forward.png │ │ │ ├── loading.png │ │ │ ├── max_prelight.svg │ │ │ ├── max_pressed.svg │ │ │ ├── min_prelight.svg │ │ │ ├── min_pressed.svg │ │ │ ├── navbar-separator.png │ │ │ ├── new-tab.png │ │ │ ├── privatebrowsing-mask.png │ │ │ ├── search.png │ │ │ ├── tab-close-hover.svg │ │ │ ├── tab-close-selected.svg │ │ │ ├── tab-close.svg │ │ │ ├── tab-end-hover.svg │ │ │ ├── tab-middle-hover.svg │ │ │ ├── tab-separator.svg │ │ │ ├── tab-start-hover.svg │ │ │ ├── tabActiveEnd.svg │ │ │ ├── tabActiveMiddle.svg │ │ │ ├── tabActiveStart.svg │ │ │ └── window_button.svg │ │ │ └── userChrome.css │ └── Vertex │ │ └── chrome │ │ ├── images │ │ ├── arrow-dn-dis.gif │ │ ├── arrow-dn[dropmarker].png │ │ ├── back-insensitive.png │ │ ├── back.png │ │ ├── close_prelight.svg │ │ ├── close_pressed.svg │ │ ├── connecting.png │ │ ├── forward.png │ │ ├── loading.png │ │ ├── max_prelight.svg │ │ ├── max_pressed.svg │ │ ├── min_prelight.svg │ │ ├── min_pressed.svg │ │ ├── navbar-separator.png │ │ ├── new-tab.png │ │ ├── privatebrowsing-mask.png │ │ ├── search.png │ │ ├── tab-close-selected.svg │ │ ├── tab-close.svg │ │ ├── tab-end-hover.svg │ │ ├── tab-middle-hover.svg │ │ ├── tab-separator.svg │ │ ├── tab-start-hover.svg │ │ ├── tabActiveEnd.svg │ │ ├── tabActiveMiddle.svg │ │ ├── tabActiveStart.svg │ │ ├── urlbar-arrow.png │ │ └── window_button.svg │ │ └── userChrome.css ├── Makefile.am ├── Ubuntu-Software-Center │ ├── README │ └── softwarecenter.css ├── Vertex-Plank │ └── dock.theme ├── Vertex_alt_metacity │ └── metacity-1 │ │ ├── close.svg │ │ ├── close_prelight.svg │ │ ├── close_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── max.svg │ │ ├── max_prelight.svg │ │ ├── max_pressed.svg │ │ ├── max_unfocused.svg │ │ ├── metacity-theme-3.xml │ │ ├── min.svg │ │ ├── min_prelight.svg │ │ ├── min_pressed.svg │ │ ├── min_unfocused.svg │ │ └── thumbnail.png └── meld │ └── Vertex-Dark │ └── .gtkrc-2.0 ├── gulpfile.js ├── m4 ├── vertex-enable.m4 └── vertex-gnome.m4 └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | stable 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/HACKING.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/cinnamon/buttons/button-border-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/buttons/button-border-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/buttons/button-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/buttons/button-border.svg -------------------------------------------------------------------------------- /common/cinnamon/checkbox/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/checkbox/checkbox-checked.svg -------------------------------------------------------------------------------- /common/cinnamon/checkbox/checkbox-unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/checkbox/checkbox-unchecked.svg -------------------------------------------------------------------------------- /common/cinnamon/cinnamon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/cinnamon.css -------------------------------------------------------------------------------- /common/cinnamon/entry/entry-border-focused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/entry/entry-border-focused.svg -------------------------------------------------------------------------------- /common/cinnamon/entry/entry-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/entry/entry-border.svg -------------------------------------------------------------------------------- /common/cinnamon/menu/menu-arrow-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/menu/menu-arrow-symbolic.svg -------------------------------------------------------------------------------- /common/cinnamon/menu/menu-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/menu/menu-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/menu/menu-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/menu/menu-separator.svg -------------------------------------------------------------------------------- /common/cinnamon/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/menu/menu.svg -------------------------------------------------------------------------------- /common/cinnamon/menu/submenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/menu/submenu-open.svg -------------------------------------------------------------------------------- /common/cinnamon/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/menu/submenu.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/add-workspace-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/add-workspace-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/add-workspace.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/calendar-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/calendar-arrow-left.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/calendar-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/calendar-arrow-right.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/calendar-not-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/calendar-not-today.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/calendar-today.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/close-window-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/close-window-active.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/close-window-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/close-window-hover.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/close-window.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/corner-ripple-ltr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/corner-ripple-ltr.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/corner-ripple-rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/corner-ripple-rtl.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/desklet-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/desklet-header.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/desklet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/desklet.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/message.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/modal.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/notification.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/osd.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/overview-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/overview-hover.png -------------------------------------------------------------------------------- /common/cinnamon/misc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/overview.png -------------------------------------------------------------------------------- /common/cinnamon/misc/radiobutton-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/radiobutton-off.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/radiobutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/radiobutton.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/slider-osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/slider-osd.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/slider.svg -------------------------------------------------------------------------------- /common/cinnamon/misc/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/misc/trash-icon.svg -------------------------------------------------------------------------------- /common/cinnamon/panel/panel-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/panel/panel-bottom.svg -------------------------------------------------------------------------------- /common/cinnamon/panel/panel-button-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/panel/panel-button-border.svg -------------------------------------------------------------------------------- /common/cinnamon/panel/panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/panel/panel-top.svg -------------------------------------------------------------------------------- /common/cinnamon/switch/switch-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/switch/switch-off.svg -------------------------------------------------------------------------------- /common/cinnamon/switch/switch-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/switch/switch-on.svg -------------------------------------------------------------------------------- /common/cinnamon/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/theme.json -------------------------------------------------------------------------------- /common/cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /common/gnome-shell/3.10: -------------------------------------------------------------------------------- 1 | 3.14 -------------------------------------------------------------------------------- /common/gnome-shell/3.12: -------------------------------------------------------------------------------- 1 | 3.14 -------------------------------------------------------------------------------- /common/gnome-shell/3.14/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/LICENSE -------------------------------------------------------------------------------- /common/gnome-shell/3.14/assets/dash/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/assets/dash/dash.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.14/assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.14/assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.14/assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.14/assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/assets/misc/osd.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.14/assets/misc/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/assets/misc/slider.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.14/assets/panel/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/assets/panel/panel.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.14/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.14/gnome-shell.css -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/dash/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/dash/button.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/dash/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/dash/dash.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/misc/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/misc/lg.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/misc/osd.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/misc/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/misc/slider.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/assets/panel/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/assets/panel/panel.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.16/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/gnome-shell.css -------------------------------------------------------------------------------- /common/gnome-shell/3.16/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.16/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.16/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.16/sass/gnome-shell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.16/sass/gnome-shell.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/dash/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/dash/button.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/dash/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/dash/dash.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/misc/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/misc/lg.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/misc/osd.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/misc/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/misc/slider.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/assets/panel/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/assets/panel/panel.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.18/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/gnome-shell.css -------------------------------------------------------------------------------- /common/gnome-shell/3.18/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.18/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.18/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.18/sass/gnome-shell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.18/sass/gnome-shell.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/dash/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/dash/button.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/dash/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/dash/dash.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/menu/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/menu/menu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/menu/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/menu/submenu.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/misc/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/misc/lg.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/misc/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/misc/message.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/misc/modal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/misc/modal.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/misc/osd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/misc/osd.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/misc/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/misc/slider.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/assets/panel/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/assets/panel/panel.svg -------------------------------------------------------------------------------- /common/gnome-shell/3.20/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/gnome-shell.css -------------------------------------------------------------------------------- /common/gnome-shell/3.20/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/sass/_colors.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.20/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/sass/_common.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.20/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.20/sass/gnome-shell.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gnome-shell/3.20/sass/gnome-shell.scss -------------------------------------------------------------------------------- /common/gnome-shell/3.22: -------------------------------------------------------------------------------- 1 | 3.20 -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/arrow-down-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/arrow-down-small.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/arrow-down.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/arrow-left.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/arrow-right.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/arrow-up-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/arrow-up-insens.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/arrow-up-small.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/arrow-up.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Arrows/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Arrows/menu-arrow.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Buttons/button-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Buttons/button-default.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Buttons/button-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Buttons/button-default.svg -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Buttons/button-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Buttons/button-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Buttons/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Buttons/button-pressed.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Entry/entry-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Entry/entry-border-bg.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Entry/entry-border-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Entry/entry-border-fill.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Entry/ff-entry-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Entry/ff-entry-bg.svg -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Entry/ff-entry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Entry/ff-entry.svg -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Expanders/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Expanders/minus.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Expanders/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Expanders/plus.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Handles/handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Handles/handle-h.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Handles/handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Handles/handle-v.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Lines/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Lines/line-h.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Lines/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Lines/line-v.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Lines/menu_line_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Lines/menu_line_h.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Menu/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Menu/menuitem.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Others/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Others/focus.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Others/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Others/null.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Others/tree_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Others/tree_header.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/ProgressBar/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/ProgressBar/progressbar.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Range/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Range/slider-horiz.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Range/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Range/slider-vert.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Range/trough-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Range/trough-horizontal.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Range/trough-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Range/trough-vertical.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Scrollbars/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Scrollbars/slider-horiz.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Scrollbars/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Scrollbars/slider-vert.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Shadows/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Shadows/frame-gap-end.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Shadows/frame-gap-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Shadows/frame-gap-start.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Shadows/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Shadows/frame.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Spin/down-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Spin/down-background.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Spin/up-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Spin/up-background-rtl.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Spin/up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Spin/up-background.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/notebook-gap-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/notebook-gap-horiz.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/notebook-gap-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/notebook-gap-vert.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/notebook.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-bottom-active.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-bottom.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-left-active.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-left.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-right-active.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-right.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-top-active.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab-top.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Tabs/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Tabs/tab.svg -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Toolbar/inline-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Toolbar/inline-toolbar.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/Toolbar/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/Toolbar/toolbar.png -------------------------------------------------------------------------------- /common/gtk-2.0-dark/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/gtkrc -------------------------------------------------------------------------------- /common/gtk-2.0-dark/panel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0-dark/panel.rc -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-down-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-down-insens.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-down-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-down-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-down-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-down-small.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-down.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-left-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-left-insens.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-left-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-left-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-left.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-right-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-right-insens.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-right-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-right-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-right.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-up-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-up-insens.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-up-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-up-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-up-small-insens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-up-small-insens.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-up-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-up-small.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/arrow-up.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/menu-arrow-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/menu-arrow-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Arrows/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Arrows/menu-arrow.png -------------------------------------------------------------------------------- /common/gtk-2.0/Buttons/button-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Buttons/button-default.png -------------------------------------------------------------------------------- /common/gtk-2.0/Buttons/button-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Buttons/button-default.svg -------------------------------------------------------------------------------- /common/gtk-2.0/Buttons/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Buttons/button-insensitive.png -------------------------------------------------------------------------------- /common/gtk-2.0/Buttons/button-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Buttons/button-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Buttons/button-pressed-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Buttons/button-pressed-alt.png -------------------------------------------------------------------------------- /common/gtk-2.0/Buttons/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Buttons/button-pressed.png -------------------------------------------------------------------------------- /common/gtk-2.0/Check-Radio/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Check-Radio/checkbox-checked.png -------------------------------------------------------------------------------- /common/gtk-2.0/Check-Radio/option-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Check-Radio/option-checked.png -------------------------------------------------------------------------------- /common/gtk-2.0/Check-Radio/option-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Check-Radio/option-unchecked.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/combo-entry-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/combo-entry-border-bg.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/combo-entry-button-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/combo-entry-button-rtl.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/combo-entry-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/combo-entry-button.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/entry-border-active-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/entry-border-active-bg.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/entry-border-bg-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/entry-border-bg-solid.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/entry-border-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/entry-border-bg.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/entry-border-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/entry-border-fill.png -------------------------------------------------------------------------------- /common/gtk-2.0/Entry/entry-border-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Entry/entry-border-notebook.png -------------------------------------------------------------------------------- /common/gtk-2.0/Expanders/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Expanders/minus.png -------------------------------------------------------------------------------- /common/gtk-2.0/Expanders/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Expanders/plus.png -------------------------------------------------------------------------------- /common/gtk-2.0/Handles/handle-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Handles/handle-h.png -------------------------------------------------------------------------------- /common/gtk-2.0/Handles/handle-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Handles/handle-v.png -------------------------------------------------------------------------------- /common/gtk-2.0/Lines/line-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Lines/line-h.png -------------------------------------------------------------------------------- /common/gtk-2.0/Lines/line-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Lines/line-v.png -------------------------------------------------------------------------------- /common/gtk-2.0/Lines/menu_line_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Lines/menu_line_h.png -------------------------------------------------------------------------------- /common/gtk-2.0/Menu-Menubar/menubar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Menu-Menubar/menubar_button.png -------------------------------------------------------------------------------- /common/gtk-2.0/Menu/menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Menu/menuitem.png -------------------------------------------------------------------------------- /common/gtk-2.0/Others/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Others/focus.png -------------------------------------------------------------------------------- /common/gtk-2.0/Others/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Others/null.png -------------------------------------------------------------------------------- /common/gtk-2.0/Others/tree_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Others/tree_header.png -------------------------------------------------------------------------------- /common/gtk-2.0/ProgressBar/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/ProgressBar/progressbar.png -------------------------------------------------------------------------------- /common/gtk-2.0/ProgressBar/progressbar_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/ProgressBar/progressbar_v.png -------------------------------------------------------------------------------- /common/gtk-2.0/Range/slider-horiz-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Range/slider-horiz-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Range/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Range/slider-horiz.png -------------------------------------------------------------------------------- /common/gtk-2.0/Range/slider-vert-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Range/slider-vert-prelight.png -------------------------------------------------------------------------------- /common/gtk-2.0/Range/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Range/slider-vert.png -------------------------------------------------------------------------------- /common/gtk-2.0/Range/trough-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Range/trough-horizontal.png -------------------------------------------------------------------------------- /common/gtk-2.0/Range/trough-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Range/trough-vertical.png -------------------------------------------------------------------------------- /common/gtk-2.0/Scrollbars/slider-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Scrollbars/slider-horiz.png -------------------------------------------------------------------------------- /common/gtk-2.0/Scrollbars/slider-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Scrollbars/slider-vert.png -------------------------------------------------------------------------------- /common/gtk-2.0/Shadows/frame-gap-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Shadows/frame-gap-end.png -------------------------------------------------------------------------------- /common/gtk-2.0/Shadows/frame-gap-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Shadows/frame-gap-start.png -------------------------------------------------------------------------------- /common/gtk-2.0/Shadows/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Shadows/frame.png -------------------------------------------------------------------------------- /common/gtk-2.0/Spin/down-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Spin/down-background-disable.png -------------------------------------------------------------------------------- /common/gtk-2.0/Spin/down-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Spin/down-background-rtl.png -------------------------------------------------------------------------------- /common/gtk-2.0/Spin/down-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Spin/down-background.png -------------------------------------------------------------------------------- /common/gtk-2.0/Spin/up-background-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Spin/up-background-disable.png -------------------------------------------------------------------------------- /common/gtk-2.0/Spin/up-background-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Spin/up-background-rtl.png -------------------------------------------------------------------------------- /common/gtk-2.0/Spin/up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Spin/up-background.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/notebook-gap-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/notebook-gap-horiz.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/notebook-gap-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/notebook-gap-vert.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/notebook.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-bottom-active.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-bottom.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-left-active.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-left.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-right-active.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-right.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-top-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-top-active.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab-top.png -------------------------------------------------------------------------------- /common/gtk-2.0/Tabs/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Tabs/tab.svg -------------------------------------------------------------------------------- /common/gtk-2.0/Toolbar/inline-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Toolbar/inline-toolbar.png -------------------------------------------------------------------------------- /common/gtk-2.0/Toolbar/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/Toolbar/toolbar.png -------------------------------------------------------------------------------- /common/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /common/gtk-2.0/gtkrc-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/gtkrc-light -------------------------------------------------------------------------------- /common/gtk-2.0/panel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-2.0/panel.rc -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/checkbox-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/dnd-counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/dnd-counter.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/header-separator.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/radio-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/radio-checked@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/radio-mixed-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/radio-mixed-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/radio-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/radio-unchecked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/resize-grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/resize-grip.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/scrollbar-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/scrollbar-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/scrollbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/scrollbar-trough.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider-hover.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider-hover@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider-hover@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch-selected.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch-slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/switch@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/switch@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/thumbnail-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/thumbnail-frame.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/titlebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/titlebutton.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/assets/titlebutton@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/assets/titlebutton@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/button-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/button-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/button-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/button-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/generic-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/generic-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/osd-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/osd-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/osd-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/osd-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/tab-active-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/tab-active-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/tab-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/tab-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/tab-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/trough-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/trough-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/borders/trough-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/borders/trough-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gnome-applications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gnome-applications.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/granite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/granite.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-fallback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-fallback.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-light.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-main-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-main-common.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-main-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-main-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-main-darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-main-darker.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-main.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-widgets-3_10.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-widgets-3_10.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-widgets-assets-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-widgets-assets-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-widgets-assets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-widgets-assets.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-widgets-backgrounds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-widgets-backgrounds.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-widgets-borders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-widgets-borders.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk-widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk-widgets.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/gtk.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/render-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/render-assets.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/render-borders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/render-borders.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/settings.ini -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/thumbnail-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/thumbnail.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/unity-darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/unity-darker.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.10/unity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.10/unity.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/checkbox-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/dnd-counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/dnd-counter.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/header-separator.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/radio-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/radio-checked@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/radio-mixed-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/radio-mixed-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/radio-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/radio-unchecked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/resize-grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/resize-grip.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/scrollbar-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/scrollbar-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/scrollbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/scrollbar-trough.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider-hover.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider-hover@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider-hover@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch-selected.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch-slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/switch@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/switch@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/thumbnail-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/thumbnail-frame.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/titlebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/titlebutton.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/assets/titlebutton@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/assets/titlebutton@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/button-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/button-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/button-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/button-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/generic-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/generic-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/osd-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/osd-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/osd-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/osd-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/tab-active-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/tab-active-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/tab-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/tab-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/tab-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/trough-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/trough-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/borders/trough-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/borders/trough-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/dark-tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/dark-tabs.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/darker-tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/darker-tabs.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gnome-applications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gnome-applications.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/granite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/granite.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-fallback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-fallback.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-light.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-main-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-main-common.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-main-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-main-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-main-darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-main-darker.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-main.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-widgets-assets-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-widgets-assets-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-widgets-assets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-widgets-assets.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-widgets-backgrounds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-widgets-backgrounds.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-widgets-borders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-widgets-borders.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk-widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk-widgets.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/gtk.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/render-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/render-assets.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/render-borders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/render-borders.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/settings.ini -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/tabs.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/thumbnail-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/thumbnail.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/unity-darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/unity-darker.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/unity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/unity.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.12/window-controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.12/window-controls.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/checkbox-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/header-separator.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/radio-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/radio-checked@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/radio-mixed-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/radio-mixed-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/radio-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/radio-unchecked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/scrollbar-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/scrollbar-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/scrollbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/scrollbar-trough.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider-hover.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider-hover@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider-hover@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider-selected.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch-selected.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch-slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/switch@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/switch@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/thumbnail-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/thumbnail-frame.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/titlebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/titlebutton.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/assets/titlebutton@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/assets/titlebutton@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/borders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/borders.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/borders/tab-active-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/borders/tab-active-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/borders/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/borders/tab-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/borders/tab-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/borders/tab-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/borders/trough-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/borders/trough-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/borders/trough-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/borders/trough-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/gtk-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/gtk-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/gtk-light.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/gtk.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/render-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/render-assets.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/render-borders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/render-borders.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_applications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_applications.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_colors-public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_colors-public.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_colors.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_common.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_granite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_granite.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_tabs.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/_unity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/_unity.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/gtk-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/gtk-dark.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/gtk-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/gtk-light.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/sass/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/sass/gtk.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/thumbnail-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.14/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.14/thumbnail.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/checkbox-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/header-separator.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/radio-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/radio-checked@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/radio-mixed-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/radio-mixed-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/radio-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/radio-unchecked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/scrollbar-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/scrollbar-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/scrollbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/scrollbar-trough.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider-hover.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider-hover@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider-hover@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider-selected.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch-selected.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch-slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/switch@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/switch@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/thumbnail-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/thumbnail-frame.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/titlebutton-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/titlebutton-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/titlebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/titlebutton.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/assets/titlebutton@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/assets/titlebutton@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/borders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/borders.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/borders/tab-active-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/borders/tab-active-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/borders/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/borders/tab-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/borders/tab-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/borders/tab-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/borders/trough-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/borders/trough-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/borders/trough-border@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/borders/trough-border@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/gtk-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/gtk-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/gtk-light.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/gtk.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/render-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/render-assets.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/render-borders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/render-borders.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_applications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_applications.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_colors-public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_colors-public.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_colors.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_common.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_granite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_granite.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_tabs.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/_unity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/_unity.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/gtk-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/gtk-dark.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/gtk-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/gtk-light.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/sass/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/sass/gtk.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/thumbnail-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.16/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.16/thumbnail.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/checkbox-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/checkbox-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/checkbox-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/header-separator.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/radio-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/radio-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/radio-checked@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/radio-mixed-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/radio-mixed-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/radio-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/slider-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/slider-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/slider-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/slider-hover.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/slider-hover@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/slider-hover@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/switch-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/switch-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/switch-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/switch-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/switch-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/switch-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/switch-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/switch-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/switch.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/switch@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/switch@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/titlebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/titlebutton.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/assets/titlebutton@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/assets/titlebutton@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/borders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/borders.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/borders/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/borders/tab-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/borders/tab-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/borders/tab-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/borders/trough-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/borders/trough-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/gtk-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/gtk-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/gtk-light.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/gtk.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/render-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/render-assets.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/render-borders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/render-borders.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_applications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_applications.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_budgie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_budgie.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_colors-public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_colors-public.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_colors.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_common.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_granite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_granite.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_tabs.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/_unity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/_unity.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/gtk-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/gtk-dark.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/gtk-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/gtk-light.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/sass/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/sass/gtk.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/thumbnail-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.18/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.18/thumbnail.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets.svg -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/radio-checked.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/radio-mixed.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/radio-mixed@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/radio-mixed@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/slider-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/slider-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/slider-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/slider-hover.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/slider-hover@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/slider-hover@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/slider@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/switch-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/switch-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/switch-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/switch-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/switch-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/switch-dark@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/switch-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/switch-slider.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/switch.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/switch@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/switch@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/titlebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/titlebutton.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/assets/titlebutton@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/assets/titlebutton@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/borders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/borders.txt -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/borders/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/borders/tab-active.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/borders/tab-active@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/borders/tab-active@2.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/borders/trough-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/borders/trough-border.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/gtk-dark.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/gtk-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/gtk-light.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/gtk.css -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/render-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/render-assets.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/render-borders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/render-borders.sh -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_applications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_applications.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_budgie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_budgie.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_colors-public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_colors-public.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_colors.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_common.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_drawing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_drawing.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_granite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_granite.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_tabs.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/_unity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/_unity.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/gtk-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/gtk-dark.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/gtk-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/gtk-light.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/sass/gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/sass/gtk.scss -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/thumbnail-dark.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.20/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/gtk-3.0/3.20/thumbnail.png -------------------------------------------------------------------------------- /common/gtk-3.0/3.22: -------------------------------------------------------------------------------- 1 | 3.20 -------------------------------------------------------------------------------- /common/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/index.theme -------------------------------------------------------------------------------- /common/index.theme-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/index.theme-dark -------------------------------------------------------------------------------- /common/index.theme-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/index.theme-light -------------------------------------------------------------------------------- /common/metacity-1/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/close.svg -------------------------------------------------------------------------------- /common/metacity-1/close_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/close_prelight.svg -------------------------------------------------------------------------------- /common/metacity-1/close_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/close_pressed.svg -------------------------------------------------------------------------------- /common/metacity-1/close_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/close_unfocused.svg -------------------------------------------------------------------------------- /common/metacity-1/max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/max.svg -------------------------------------------------------------------------------- /common/metacity-1/max_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/max_prelight.svg -------------------------------------------------------------------------------- /common/metacity-1/max_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/max_pressed.svg -------------------------------------------------------------------------------- /common/metacity-1/max_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/max_unfocused.svg -------------------------------------------------------------------------------- /common/metacity-1/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/menu.svg -------------------------------------------------------------------------------- /common/metacity-1/menu_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/menu_prelight.svg -------------------------------------------------------------------------------- /common/metacity-1/menu_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/menu_unfocused.svg -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-1-dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-1-dark.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-1-light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-1-light.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-1.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-2-dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-2-dark.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-2-light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-2-light.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-2.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-3-dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-3-dark.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-3-light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-3-light.xml -------------------------------------------------------------------------------- /common/metacity-1/metacity-theme-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/metacity-theme-3.xml -------------------------------------------------------------------------------- /common/metacity-1/min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/min.svg -------------------------------------------------------------------------------- /common/metacity-1/min_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/min_prelight.svg -------------------------------------------------------------------------------- /common/metacity-1/min_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/min_pressed.svg -------------------------------------------------------------------------------- /common/metacity-1/min_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/min_unfocused.svg -------------------------------------------------------------------------------- /common/metacity-1/thumbnail-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/thumbnail-light.png -------------------------------------------------------------------------------- /common/metacity-1/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/metacity-1/thumbnail.png -------------------------------------------------------------------------------- /common/unity/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close.svg -------------------------------------------------------------------------------- /common/unity/close_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_dash.svg -------------------------------------------------------------------------------- /common/unity/close_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/close_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/close_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/close_focused_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_focused_normal.svg -------------------------------------------------------------------------------- /common/unity/close_focused_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_focused_prelight.svg -------------------------------------------------------------------------------- /common/unity/close_focused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_focused_pressed.svg -------------------------------------------------------------------------------- /common/unity/close_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_unfocused.svg -------------------------------------------------------------------------------- /common/unity/close_unfocused_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_unfocused_prelight.svg -------------------------------------------------------------------------------- /common/unity/close_unfocused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/close_unfocused_pressed.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_ltr_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_arrow_ltr_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_ltr_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_arrow_ltr_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_rtl_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_arrow_rtl_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_arrow_rtl_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_arrow_rtl_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_back_150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_back_150.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_back_54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_back_54.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_edge_150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_edge_150.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_edge_54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_edge_54.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_glow_200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_glow_200.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_glow_62.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_glow_62.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shadow_200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_shadow_200.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shadow_62.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_shadow_62.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shine_150.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_shine_150.svg -------------------------------------------------------------------------------- /common/unity/launcher_icon_shine_54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_icon_shine_54.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_ltr_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_pip_ltr_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_ltr_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_pip_ltr_37.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_rtl_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_pip_rtl_19.svg -------------------------------------------------------------------------------- /common/unity/launcher_pip_rtl_37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/launcher_pip_rtl_37.svg -------------------------------------------------------------------------------- /common/unity/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_dash.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/maximize_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/maximize_focused_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_focused_normal.svg -------------------------------------------------------------------------------- /common/unity/maximize_focused_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_focused_prelight.svg -------------------------------------------------------------------------------- /common/unity/maximize_focused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_focused_pressed.svg -------------------------------------------------------------------------------- /common/unity/maximize_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/maximize_unfocused_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_unfocused_prelight.svg -------------------------------------------------------------------------------- /common/unity/maximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/maximize_unfocused_pressed.svg -------------------------------------------------------------------------------- /common/unity/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_dash.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/minimize_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/minimize_focused_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_focused_normal.svg -------------------------------------------------------------------------------- /common/unity/minimize_focused_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_focused_prelight.svg -------------------------------------------------------------------------------- /common/unity/minimize_focused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_focused_pressed.svg -------------------------------------------------------------------------------- /common/unity/minimize_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/minimize_unfocused_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_unfocused_prelight.svg -------------------------------------------------------------------------------- /common/unity/minimize_unfocused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/minimize_unfocused_pressed.svg -------------------------------------------------------------------------------- /common/unity/unmaximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_dash.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_dash_disabled.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_dash_prelight.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_dash_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_dash_pressed.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_focused_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_focused_normal.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_focused_prelight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_focused_prelight.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_focused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_focused_pressed.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_unfocused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_unfocused.svg -------------------------------------------------------------------------------- /common/unity/unmaximize_unfocused_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/unity/unmaximize_unfocused_pressed.svg -------------------------------------------------------------------------------- /common/xfwm4-light/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/bottom-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/bottom-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/bottom-left-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/bottom-left-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/bottom-right-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/bottom-right-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/close-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/close-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/close-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/close-prelight.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/close-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/hide-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/hide-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/hide-prelight.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/hide-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/left-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/left-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/maximize-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/maximize-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/maximize-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/maximize-prelight.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/maximize-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/menu-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/menu-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/menu-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/right-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/right-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/shade-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/shade-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/shade-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/stick-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/stick-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/stick-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/themerc -------------------------------------------------------------------------------- /common/xfwm4-light/title-1-active-shaded.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-1-active-shaded.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-1-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-1-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-2-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-2-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-3-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-3-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-4-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-4-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-5-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/title-5-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/top-left-active-shaded.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/top-left-active-shaded.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/top-left-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/top-left-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/top-right-active.xpm -------------------------------------------------------------------------------- /common/xfwm4-light/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4-light/top-right-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/bottom-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/bottom-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/bottom-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/bottom-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/bottom-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/bottom-left-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/bottom-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/bottom-left-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/bottom-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/bottom-right-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/bottom-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/bottom-right-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/close-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/close-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/close-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/close-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/close-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/close-prelight.xpm -------------------------------------------------------------------------------- /common/xfwm4/close-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/close-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4/hide-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/hide-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/hide-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/hide-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/hide-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/hide-prelight.xpm -------------------------------------------------------------------------------- /common/xfwm4/hide-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/hide-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4/left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/left-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/left-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/maximize-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/maximize-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/maximize-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/maximize-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/maximize-prelight.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/maximize-prelight.xpm -------------------------------------------------------------------------------- /common/xfwm4/maximize-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/maximize-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4/menu-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/menu-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/menu-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/menu-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/menu-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/menu-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4/right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/right-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/right-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/shade-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/shade-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/shade-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/shade-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/shade-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/shade-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4/stick-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/stick-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/stick-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/stick-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/stick-pressed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/stick-pressed.xpm -------------------------------------------------------------------------------- /common/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/themerc -------------------------------------------------------------------------------- /common/xfwm4/title-1-active-shaded.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-1-active-shaded.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-1-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-1-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-1-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-1-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-2-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-2-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-2-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-2-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-3-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-3-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-3-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-3-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-4-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-4-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-4-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-4-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-5-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-5-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/title-5-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/title-5-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/top-left-active-shaded.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/top-left-active-shaded.xpm -------------------------------------------------------------------------------- /common/xfwm4/top-left-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/top-left-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/top-left-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/top-left-inactive.xpm -------------------------------------------------------------------------------- /common/xfwm4/top-right-active-shaded.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/top-right-active-shaded.xpm -------------------------------------------------------------------------------- /common/xfwm4/top-right-active.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/top-right-active.xpm -------------------------------------------------------------------------------- /common/xfwm4/top-right-inactive.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/common/xfwm4/top-right-inactive.xpm -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/configure.ac -------------------------------------------------------------------------------- /extra/Chrome/Vertex-light.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Chrome/Vertex-light.crx -------------------------------------------------------------------------------- /extra/Chrome/Vertex.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Chrome/Vertex.crx -------------------------------------------------------------------------------- /extra/Chrome/source/Vertex/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Chrome/source/Vertex/manifest.json -------------------------------------------------------------------------------- /extra/Firefox/Vertex/chrome/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Firefox/Vertex/chrome/images/back.png -------------------------------------------------------------------------------- /extra/Firefox/Vertex/chrome/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Firefox/Vertex/chrome/images/search.png -------------------------------------------------------------------------------- /extra/Firefox/Vertex/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Firefox/Vertex/chrome/userChrome.css -------------------------------------------------------------------------------- /extra/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Makefile.am -------------------------------------------------------------------------------- /extra/Ubuntu-Software-Center/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Ubuntu-Software-Center/README -------------------------------------------------------------------------------- /extra/Vertex-Plank/dock.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Vertex-Plank/dock.theme -------------------------------------------------------------------------------- /extra/Vertex_alt_metacity/metacity-1/max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Vertex_alt_metacity/metacity-1/max.svg -------------------------------------------------------------------------------- /extra/Vertex_alt_metacity/metacity-1/min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/Vertex_alt_metacity/metacity-1/min.svg -------------------------------------------------------------------------------- /extra/meld/Vertex-Dark/.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/extra/meld/Vertex-Dark/.gtkrc-2.0 -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/gulpfile.js -------------------------------------------------------------------------------- /m4/vertex-enable.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/m4/vertex-enable.m4 -------------------------------------------------------------------------------- /m4/vertex-gnome.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/m4/vertex-gnome.m4 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/vertex-theme/HEAD/package.json --------------------------------------------------------------------------------