├── AUTHORS ├── COPYING ├── HACKING.md ├── README.md ├── install.sh ├── parse-sass.sh └── src ├── _sass ├── _color-palette.scss ├── _colors.scss ├── gnome-shell │ ├── _common.scss │ ├── _drawing.scss │ ├── _extensions.scss │ └── _variables.scss └── gtk │ ├── _apps.scss │ ├── _colors-public.scss │ ├── _common.scss │ ├── _drawing.scss │ ├── _variables.scss │ └── apps │ ├── _budgie.scss │ ├── _gnome.scss │ ├── _lightdm.scss │ ├── _mate.scss │ ├── _misc.scss │ └── _unity.scss ├── gnome-shell ├── assets-dark │ ├── calendar-arrow-left.svg │ ├── calendar-arrow-right.svg │ ├── checkbox-off.svg │ ├── close.svg │ ├── key-hide.svg │ ├── key-layout.svg │ ├── key-shift.svg │ ├── no-events.svg │ ├── no-notifications.svg │ ├── process-working.svg │ └── toggle-off.svg ├── assets │ ├── calendar-arrow-left.svg │ ├── calendar-arrow-right.svg │ ├── checkbox-off.svg │ ├── close.svg │ ├── key-hide.svg │ ├── key-layout.svg │ ├── key-shift.svg │ ├── no-events.svg │ ├── no-notifications.svg │ ├── process-working.svg │ └── toggle-off.svg ├── common-assets │ ├── activities-active.svg │ ├── activities.svg │ ├── checkbox.svg │ ├── dash-placeholder.svg │ ├── dash │ │ ├── bottom-running1-focused.svg │ │ ├── bottom-running1.svg │ │ ├── bottom-running2-focused.svg │ │ ├── bottom-running2.svg │ │ ├── bottom-running3-focused.svg │ │ ├── bottom-running3.svg │ │ ├── bottom-running4-focused.svg │ │ ├── bottom-running4.svg │ │ ├── left-running1-focused.svg │ │ ├── left-running1.svg │ │ ├── left-running2-focused.svg │ │ ├── left-running2.svg │ │ ├── left-running3-focused.svg │ │ ├── left-running3.svg │ │ ├── left-running4-focused.svg │ │ ├── left-running4.svg │ │ ├── right-running1-focused.svg │ │ ├── right-running1.svg │ │ ├── right-running2-focused.svg │ │ ├── right-running2.svg │ │ ├── right-running3-focused.svg │ │ ├── right-running3.svg │ │ ├── right-running4-focused.svg │ │ ├── right-running4.svg │ │ ├── top-running1-focused.svg │ │ ├── top-running1.svg │ │ ├── top-running2-focused.svg │ │ ├── top-running2.svg │ │ ├── top-running3-focused.svg │ │ ├── top-running3.svg │ │ ├── top-running4-focused.svg │ │ └── top-running4.svg │ ├── key-enter.svg │ ├── key-shift-latched-uppercase.svg │ ├── key-shift-uppercase.svg │ ├── more-results.svg │ ├── toggle-on.svg │ ├── window-close-active.svg │ └── window-close.svg ├── extensions │ └── workspaces-to-dock │ │ └── workspaces-to-dock.css ├── gnome-shell-compact.css ├── gnome-shell-compact.scss ├── gnome-shell-dark-compact.css ├── gnome-shell-dark-compact.scss ├── gnome-shell-dark.css ├── gnome-shell-dark.scss ├── gnome-shell-light-compact.css ├── gnome-shell-light-compact.scss ├── gnome-shell-light.css ├── gnome-shell-light.scss ├── gnome-shell-theme.gresource.xml ├── gnome-shell.css ├── gnome-shell.scss ├── message-indicator-symbolic.svg ├── no-events.svg ├── no-notifications.svg ├── noise-texture.png ├── pad-osd.css └── process-working.svg ├── gtk-2.0 ├── apps.rc ├── assets-dark.svg ├── assets-dark │ ├── border.png │ ├── button-active.png │ ├── button-hover.png │ ├── button-insensitive.png │ ├── button.png │ ├── checkbox-checked-active.png │ ├── checkbox-checked-hover.png │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked.png │ ├── checkbox-mixed-active.png │ ├── checkbox-mixed-hover.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed.png │ ├── checkbox-unchecked-active.png │ ├── checkbox-unchecked-hover.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked.png │ ├── combo-ltr-button-active.png │ ├── combo-ltr-button-hover.png │ ├── combo-ltr-button-insensitive.png │ ├── combo-ltr-button.png │ ├── combo-ltr-entry-active.png │ ├── combo-ltr-entry-insensitive.png │ ├── combo-ltr-entry.png │ ├── combo-rtl-button-active.png │ ├── combo-rtl-button-hover.png │ ├── combo-rtl-button-insensitive.png │ ├── combo-rtl-button.png │ ├── combo-rtl-entry-active.png │ ├── combo-rtl-entry-insensitive.png │ ├── combo-rtl-entry.png │ ├── entry-active.png │ ├── entry-background-insensitive.png │ ├── entry-background.png │ ├── entry-insensitive.png │ ├── entry.png │ ├── flat-button-active.png │ ├── flat-button-hover.png │ ├── flat-button-insensitive.png │ ├── flat-button.png │ ├── focus.png │ ├── frame-inline.png │ ├── frame-notebook.png │ ├── frame.png │ ├── handle-horz-active.png │ ├── handle-horz-hover.png │ ├── handle-horz.png │ ├── handle-vert-active.png │ ├── handle-vert-hover.png │ ├── handle-vert.png │ ├── menu-checkbox-checked-insensitive.png │ ├── menu-checkbox-checked.png │ ├── menu-checkbox-mixed-insensitive.png │ ├── menu-checkbox-mixed.png │ ├── menu-checkbox-unchecked-insensitive.png │ ├── menu-checkbox-unchecked.png │ ├── menu-radio-checked-insensitive.png │ ├── menu-radio-checked.png │ ├── menu-radio-mixed-insensitive.png │ ├── menu-radio-mixed.png │ ├── menu-radio-unchecked-insensitive.png │ ├── menu-radio-unchecked.png │ ├── notebook-combo-ltr-entry-active.png │ ├── notebook-combo-ltr-entry-insensitive.png │ ├── notebook-combo-ltr-entry.png │ ├── notebook-combo-rtl-entry-active.png │ ├── notebook-combo-rtl-entry-insensitive.png │ ├── notebook-combo-rtl-entry.png │ ├── notebook-entry-active.png │ ├── notebook-entry-insensitive.png │ ├── notebook-entry.png │ ├── pan-down-alt-insensitive.png │ ├── pan-down-alt.png │ ├── pan-down-insensitive.png │ ├── pan-down.png │ ├── pan-left-alt-insensitive.png │ ├── pan-left-alt.png │ ├── pan-left-insensitive.png │ ├── pan-left-semi.png │ ├── pan-left.png │ ├── pan-right-alt-insensitive.png │ ├── pan-right-alt.png │ ├── pan-right-insensitive.png │ ├── pan-right-semi.png │ ├── pan-right.png │ ├── pan-up-alt-insensitive.png │ ├── pan-up-alt.png │ ├── pan-up-insensitive.png │ ├── pan-up.png │ ├── pathbar_button_active.png │ ├── pathbar_button_prelight.png │ ├── progressbar-progress.png │ ├── progressbar-trough.png │ ├── radio-checked-active.png │ ├── radio-checked-hover.png │ ├── radio-checked-insensitive.png │ ├── radio-checked.png │ ├── radio-mixed-active.png │ ├── radio-mixed-hover.png │ ├── radio-mixed-insensitive.png │ ├── radio-mixed.png │ ├── radio-unchecked-active.png │ ├── radio-unchecked-hover.png │ ├── radio-unchecked-insensitive.png │ ├── radio-unchecked.png │ ├── scale-horz-trough-active.png │ ├── scale-horz-trough-insensitive.png │ ├── scale-horz-trough.png │ ├── scale-slider-active.png │ ├── scale-slider-hover.png │ ├── scale-slider-insensitive.png │ ├── scale-slider.png │ ├── scale-vert-trough-active.png │ ├── scale-vert-trough-insensitive.png │ ├── scale-vert-trough.png │ ├── scrollbar-horz-slider-active.png │ ├── scrollbar-horz-slider-hover.png │ ├── scrollbar-horz-slider-insensitive.png │ ├── scrollbar-horz-slider.png │ ├── scrollbar-horz-trough.png │ ├── scrollbar-vert-ltr-slider-active.png │ ├── scrollbar-vert-ltr-slider-hover.png │ ├── scrollbar-vert-ltr-slider-insensitive.png │ ├── scrollbar-vert-ltr-slider.png │ ├── scrollbar-vert-ltr-trough.png │ ├── scrollbar-vert-rtl-slider-active.png │ ├── scrollbar-vert-rtl-slider-hover.png │ ├── scrollbar-vert-rtl-slider-insensitive.png │ ├── scrollbar-vert-rtl-slider.png │ ├── scrollbar-vert-rtl-trough.png │ ├── spin-ltr-down-active.png │ ├── spin-ltr-down-hover.png │ ├── spin-ltr-down-insensitive.png │ ├── spin-ltr-down.png │ ├── spin-ltr-up-active.png │ ├── spin-ltr-up-hover.png │ ├── spin-ltr-up-insensitive.png │ ├── spin-ltr-up.png │ ├── spin-rtl-down-active.png │ ├── spin-rtl-down-hover.png │ ├── spin-rtl-down-insensitive.png │ ├── spin-rtl-down.png │ ├── spin-rtl-up-active.png │ ├── spin-rtl-up-hover.png │ ├── spin-rtl-up-insensitive.png │ ├── spin-rtl-up.png │ ├── tab.png │ ├── treeview-ltr-button-active.png │ ├── treeview-ltr-button-hover.png │ ├── treeview-ltr-button.png │ ├── treeview-rtl-button-active.png │ ├── treeview-rtl-button-hover.png │ └── treeview-rtl-button.png ├── assets.svg ├── assets.txt ├── assets │ ├── border.png │ ├── button-active.png │ ├── button-hover.png │ ├── button-insensitive.png │ ├── button.png │ ├── checkbox-checked-active.png │ ├── checkbox-checked-hover.png │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked.png │ ├── checkbox-mixed-active.png │ ├── checkbox-mixed-hover.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed.png │ ├── checkbox-unchecked-active.png │ ├── checkbox-unchecked-hover.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked.png │ ├── combo-ltr-button-active.png │ ├── combo-ltr-button-hover.png │ ├── combo-ltr-button-insensitive.png │ ├── combo-ltr-button.png │ ├── combo-ltr-entry-active.png │ ├── combo-ltr-entry-insensitive.png │ ├── combo-ltr-entry.png │ ├── combo-rtl-button-active.png │ ├── combo-rtl-button-hover.png │ ├── combo-rtl-button-insensitive.png │ ├── combo-rtl-button.png │ ├── combo-rtl-entry-active.png │ ├── combo-rtl-entry-insensitive.png │ ├── combo-rtl-entry.png │ ├── entry-active.png │ ├── entry-background-insensitive.png │ ├── entry-background.png │ ├── entry-insensitive.png │ ├── entry.png │ ├── flat-button-active.png │ ├── flat-button-hover.png │ ├── flat-button-insensitive.png │ ├── flat-button.png │ ├── focus.png │ ├── frame-inline.png │ ├── frame-notebook.png │ ├── frame.png │ ├── handle-horz-active.png │ ├── handle-horz-hover.png │ ├── handle-horz.png │ ├── handle-vert-active.png │ ├── handle-vert-hover.png │ ├── handle-vert.png │ ├── menu-checkbox-checked-insensitive.png │ ├── menu-checkbox-checked.png │ ├── menu-checkbox-mixed-insensitive.png │ ├── menu-checkbox-mixed.png │ ├── menu-checkbox-unchecked-insensitive.png │ ├── menu-checkbox-unchecked.png │ ├── menu-radio-checked-insensitive.png │ ├── menu-radio-checked.png │ ├── menu-radio-mixed-insensitive.png │ ├── menu-radio-mixed.png │ ├── menu-radio-unchecked-insensitive.png │ ├── menu-radio-unchecked.png │ ├── notebook-combo-ltr-entry-active.png │ ├── notebook-combo-ltr-entry-insensitive.png │ ├── notebook-combo-ltr-entry.png │ ├── notebook-combo-rtl-entry-active.png │ ├── notebook-combo-rtl-entry-insensitive.png │ ├── notebook-combo-rtl-entry.png │ ├── notebook-entry-active.png │ ├── notebook-entry-insensitive.png │ ├── notebook-entry.png │ ├── pan-down-alt-insensitive.png │ ├── pan-down-alt.png │ ├── pan-down-insensitive.png │ ├── pan-down.png │ ├── pan-left-alt-insensitive.png │ ├── pan-left-alt.png │ ├── pan-left-insensitive.png │ ├── pan-left-semi.png │ ├── pan-left.png │ ├── pan-right-alt-insensitive.png │ ├── pan-right-alt.png │ ├── pan-right-insensitive.png │ ├── pan-right-semi.png │ ├── pan-right.png │ ├── pan-up-alt-insensitive.png │ ├── pan-up-alt.png │ ├── pan-up-insensitive.png │ ├── pan-up.png │ ├── pathbar_button_active.png │ ├── pathbar_button_prelight.png │ ├── progressbar-progress.png │ ├── progressbar-trough.png │ ├── radio-checked-active.png │ ├── radio-checked-hover.png │ ├── radio-checked-insensitive.png │ ├── radio-checked.png │ ├── radio-mixed-active.png │ ├── radio-mixed-hover.png │ ├── radio-mixed-insensitive.png │ ├── radio-mixed.png │ ├── radio-unchecked-active.png │ ├── radio-unchecked-hover.png │ ├── radio-unchecked-insensitive.png │ ├── radio-unchecked.png │ ├── scale-horz-trough-active.png │ ├── scale-horz-trough-insensitive.png │ ├── scale-horz-trough.png │ ├── scale-slider-active.png │ ├── scale-slider-hover.png │ ├── scale-slider-insensitive.png │ ├── scale-slider.png │ ├── scale-vert-trough-active.png │ ├── scale-vert-trough-insensitive.png │ ├── scale-vert-trough.png │ ├── scrollbar-horz-slider-active.png │ ├── scrollbar-horz-slider-hover.png │ ├── scrollbar-horz-slider-insensitive.png │ ├── scrollbar-horz-slider.png │ ├── scrollbar-horz-trough.png │ ├── scrollbar-vert-ltr-slider-active.png │ ├── scrollbar-vert-ltr-slider-hover.png │ ├── scrollbar-vert-ltr-slider-insensitive.png │ ├── scrollbar-vert-ltr-slider.png │ ├── scrollbar-vert-ltr-trough.png │ ├── scrollbar-vert-rtl-slider-active.png │ ├── scrollbar-vert-rtl-slider-hover.png │ ├── scrollbar-vert-rtl-slider-insensitive.png │ ├── scrollbar-vert-rtl-slider.png │ ├── scrollbar-vert-rtl-trough.png │ ├── spin-ltr-down-active.png │ ├── spin-ltr-down-hover.png │ ├── spin-ltr-down-insensitive.png │ ├── spin-ltr-down.png │ ├── spin-ltr-up-active.png │ ├── spin-ltr-up-hover.png │ ├── spin-ltr-up-insensitive.png │ ├── spin-ltr-up.png │ ├── spin-rtl-down-active.png │ ├── spin-rtl-down-hover.png │ ├── spin-rtl-down-insensitive.png │ ├── spin-rtl-down.png │ ├── spin-rtl-up-active.png │ ├── spin-rtl-up-hover.png │ ├── spin-rtl-up-insensitive.png │ ├── spin-rtl-up.png │ ├── tab.png │ ├── treeview-ltr-button-active.png │ ├── treeview-ltr-button-hover.png │ ├── treeview-ltr-button.png │ ├── treeview-rtl-button-active.png │ ├── treeview-rtl-button-hover.png │ └── treeview-rtl-button.png ├── gtkrc ├── gtkrc-dark ├── gtkrc-light ├── hacks.rc ├── main.rc ├── main.rc.hidpi ├── panel.rc ├── render-asset-dark.sh ├── render-asset.sh ├── render-assets-dark.sh └── render-assets.sh └── gtk ├── assets.svg ├── assets.txt ├── assets ├── scalable │ ├── checkbox-checked-symbolic.svg │ ├── checkbox-mixed-symbolic.svg │ ├── checkbox-unchecked-symbolic.svg │ ├── radio-checked-symbolic.svg │ ├── radio-mixed-symbolic.svg │ ├── radio-unchecked-symbolic.svg │ ├── small-checkbox-checked-symbolic.svg │ ├── small-checkbox-mixed-symbolic.svg │ ├── small-checkbox-unchecked-symbolic.svg │ ├── small-radio-checked-symbolic.svg │ ├── small-radio-mixed-symbolic.svg │ └── small-radio-unchecked-symbolic.svg ├── scale-horz-marks-after-slider-dark.png ├── scale-horz-marks-after-slider-dark@2.png ├── scale-horz-marks-after-slider-disabled-dark.png ├── scale-horz-marks-after-slider-disabled-dark@2.png ├── scale-horz-marks-after-slider-disabled.png ├── scale-horz-marks-after-slider-disabled@2.png ├── scale-horz-marks-after-slider.png ├── scale-horz-marks-after-slider@2.png ├── scale-horz-marks-before-slider-dark.png ├── scale-horz-marks-before-slider-dark@2.png ├── scale-horz-marks-before-slider-disabled-dark.png ├── scale-horz-marks-before-slider-disabled-dark@2.png ├── scale-horz-marks-before-slider-disabled.png ├── scale-horz-marks-before-slider-disabled@2.png ├── scale-horz-marks-before-slider.png ├── scale-horz-marks-before-slider@2.png ├── scale-slider-dark.png ├── scale-slider-dark@2.png ├── scale-slider-disabled-dark.png ├── scale-slider-disabled-dark@2.png ├── scale-slider-disabled.png ├── scale-slider-disabled@2.png ├── scale-slider.png ├── scale-slider@2.png ├── scale-vert-marks-after-slider-dark.png ├── scale-vert-marks-after-slider-dark@2.png ├── scale-vert-marks-after-slider-disabled-dark.png ├── scale-vert-marks-after-slider-disabled-dark@2.png ├── scale-vert-marks-after-slider-disabled.png ├── scale-vert-marks-after-slider-disabled@2.png ├── scale-vert-marks-after-slider.png ├── scale-vert-marks-after-slider@2.png ├── scale-vert-marks-before-slider-dark.png ├── scale-vert-marks-before-slider-dark@2.png ├── scale-vert-marks-before-slider-disabled-dark.png ├── scale-vert-marks-before-slider-disabled-dark@2.png ├── scale-vert-marks-before-slider-disabled.png ├── scale-vert-marks-before-slider-disabled@2.png ├── scale-vert-marks-before-slider.png ├── scale-vert-marks-before-slider@2.png ├── selectionmode-checkbox-checked-dark.png ├── selectionmode-checkbox-checked-dark@2.png ├── selectionmode-checkbox-checked.png ├── selectionmode-checkbox-checked@2.png ├── selectionmode-checkbox-unchecked-dark.png ├── selectionmode-checkbox-unchecked-dark@2.png ├── selectionmode-checkbox-unchecked.png ├── selectionmode-checkbox-unchecked@2.png ├── switch-slider-checked-dark.png ├── switch-slider-checked-dark@2.png ├── switch-slider-checked.png ├── switch-slider-checked@2.png ├── switch-slider-unchecked-dark.png ├── switch-slider-unchecked-dark@2.png ├── switch-slider-unchecked.png └── switch-slider-unchecked@2.png ├── gtk-compact.css ├── gtk-compact.scss ├── gtk-dark-compact.css ├── gtk-dark-compact.scss ├── gtk-dark.css ├── gtk-dark.scss ├── gtk-light-compact.css ├── gtk-light-compact.scss ├── gtk-light.css ├── gtk-light.scss ├── gtk.css ├── gtk.scss ├── render-asset.sh └── render-assets.sh /AUTHORS: -------------------------------------------------------------------------------- 1 | ------------------------ CANTA GTK THEME ------------------------ 2 | 3 | SOURCES: 4 | nana-4 - materia gtk theme: https://github.com/nana-4/materia-theme 5 | 6 | CUSTOMIZER: 7 | Vince Liuice - Canta Theme (https://github.com/vinceliuice/Canta-theme) 8 | 9 | ------------------------ CANTA GTK THEME ------------------------ 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Toffee-gtk-theme 2 | 3 | Toffee is a flat Material Design theme for GTK 3, GTK 2 and Gnome-Shell which supports GTK 3 and GTK 2 based desktop environments like Gnome, Budgie, etc. 4 | 5 | This theme is based on materia gtk theme of nana-4. Thanks nana-4 sincerely for his great job! 6 | 7 | #### materia gtk theme: https://github.com/nana-4/materia-theme 8 | 9 | ## Info 10 | 11 | ### GTK+ 3.20 or later 12 | 13 | ### GTK2 engines requirment 14 | - GTK2 engine Murrine 0.98.1.1 or later. 15 | - GTK2 pixbuf engine or the gtk(2)-engines package. 16 | 17 | Fedora/RedHat distros: 18 | 19 | yum install gtk-murrine-engine gtk2-engines 20 | 21 | Ubuntu/Mint/Debian distros: 22 | 23 | sudo apt-get install gtk2-engines-murrine gtk2-engines-pixbuf 24 | 25 | ArchLinux: 26 | 27 | pacman -S gtk-engine-murrine gtk-engines 28 | 29 | Other: 30 | Search for the engines in your distributions repository or install the engines from source. 31 | 32 | ## Install Or Uninstall 33 | 34 | Open the terminal at current directory. 35 | 36 | Run 37 | 38 | ./install.sh 39 | 40 | 41 | #### Install tips 42 | 43 | Usage: `./Install` **[OPTIONS...]** 44 | 45 | | OPTIONS: | | 46 | |:--------------------|:-------------| 47 | |-d, --dest | Specify theme destination directory (Default: $HOME/.themes)| 48 | |-n, --name | Specify theme name (Default: Toffee)| 49 | |-c, --color | Specify theme color variant(s) **[standard/dark/light]** (Default: All variants)| 50 | |-s, --size | Specify theme size variant **[standard/compact]** (Default: All variants)|| 51 | |-g, --gdm | Install GDM theme| 52 | |-h, --help | Show this help| 53 | 54 | ## Screenshots 55 | ![01](https://github.com/vinceliuice/Toffee-gtk-theme/blob/images/screenshot01.jpeg?raw=true) 56 | ![02](https://github.com/vinceliuice/Toffee-gtk-theme/blob/images/screenshot02.jpeg?raw=true) 57 | ![03](https://github.com/vinceliuice/Toffee-gtk-theme/blob/images/screenshot03.jpeg?raw=true) 58 | ![04](https://github.com/vinceliuice/Toffee-gtk-theme/blob/images/screenshot04.jpeg?raw=true) 59 | ![05](https://github.com/vinceliuice/Toffee-gtk-theme/blob/images/screenshot05.jpeg?raw=true) 60 | -------------------------------------------------------------------------------- /parse-sass.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -ueo pipefail 3 | 4 | if [ ! "$(which sassc 2> /dev/null)" ]; then 5 | echo sassc needs to be installed to generate the css. 6 | exit 1 7 | fi 8 | 9 | _COLOR_VARIANTS=('' '-dark' '-light') 10 | if [ ! -z "${COLOR_VARIANTS:-}" ]; then 11 | IFS=', ' read -r -a _COLOR_VARIANTS <<< "${COLOR_VARIANTS:-}" 12 | fi 13 | 14 | _SIZE_VARIANTS=('' '-compact') 15 | if [ ! -z "${SIZE_VARIANTS:-}" ]; then 16 | IFS=', ' read -r -a _SIZE_VARIANTS <<< "${SIZE_VARIANTS:-}" 17 | fi 18 | 19 | SASSC_OPT="-M -t expanded" 20 | 21 | for color in "${_COLOR_VARIANTS[@]}"; do 22 | for size in "${_SIZE_VARIANTS[@]}"; do 23 | sassc $SASSC_OPT src/gtk/gtk${color}${size}.{scss,css} 24 | echo ">> generating gtk${color}${size}.css." 25 | sassc $SASSC_OPT src/gnome-shell/gnome-shell${color}${size}.{scss,css} 26 | echo ">> generating gnome-shell${color}${size}.css." 27 | done 28 | done 29 | 30 | -------------------------------------------------------------------------------- /src/_sass/gnome-shell/_extensions.scss: -------------------------------------------------------------------------------- 1 | /* Dash to Dock */ 2 | 3 | #dashtodockContainer #dash { 4 | background-color: $panel_bg_color; 5 | } 6 | 7 | #dashtodockContainer:overview #dash { 8 | background-color: $inverse_panel_bg_color; 9 | } 10 | 11 | #dashtodockContainer.extended:overview #dash { 12 | background-color: transparent; 13 | } 14 | 15 | #dashtodockContainer.left #dash, 16 | #dashtodockContainer.right #dash { 17 | padding: 3px 0; 18 | } 19 | 20 | #dashtodockContainer.top #dash, 21 | #dashtodockContainer.bottom #dash { 22 | padding: 0 3px; 23 | } 24 | 25 | #dashtodockContainer.extended #dash { 26 | padding: 0; 27 | border-radius: 0; 28 | } 29 | 30 | #dashtodockContainer.left .dash-item-container > StWidget, 31 | #dashtodockContainer.right .dash-item-container > StWidget, 32 | #dashtodockContainer.extended.left .dash-item-container > StWidget, 33 | #dashtodockContainer.extended.right .dash-item-container > StWidget { 34 | padding: 3px 6px; 35 | } 36 | 37 | #dashtodockContainer.extended.left .dash-item-container:first-child > StWidget, 38 | #dashtodockContainer.extended.right .dash-item-container:first-child > StWidget { 39 | padding: 6px 6px 3px 6px; 40 | } 41 | 42 | #dashtodockContainer.extended.left .dash-item-container:last-child > StWidget, 43 | #dashtodockContainer.extended.right .dash-item-container:last-child > StWidget { 44 | padding: 3px 6px 6px 6px; 45 | } 46 | 47 | #dashtodockContainer.top .dash-item-container > StWidget, 48 | #dashtodockContainer.bottom .dash-item-container > StWidget, 49 | #dashtodockContainer.extended.top .dash-item-container > StWidget, 50 | #dashtodockContainer.extended.bottom .dash-item-container > StWidget { 51 | padding: 6px 3px; 52 | } 53 | 54 | #dashtodockContainer.extended.top .dash-item-container:first-child > StWidget, 55 | #dashtodockContainer.extended.bottom .dash-item-container:first-child > StWidget { 56 | padding: 6px 3px 6px 6px; 57 | } 58 | 59 | #dashtodockContainer.extended.top .dash-item-container:last-child > StWidget, 60 | #dashtodockContainer.extended.bottom .dash-item-container:last-child > StWidget { 61 | padding: 6px 6px 6px 3px; 62 | } 63 | 64 | #dashtodockContainer .app-well-app-running-dot { 65 | background-color: transparent; 66 | } 67 | 68 | #dashtodockContainer .dash-item-container > StWidget { 69 | background-size: cover; 70 | } 71 | 72 | @each $p, $pt in ('.left', 'left'), 73 | ('.right', 'right'), 74 | ('.top', 'top'), 75 | ('.bottom', 'bottom') { 76 | @each $n, $nb in ('.running1', 'running1'), 77 | ('.running2', 'running2'), 78 | ('.running3', 'running3'), 79 | ('.running4', 'running4') { 80 | @each $f, $fc in ('', ''), 81 | ('.focused', '-focused') { 82 | #dashtodockContainer#{$p} .dash-item-container > StWidget#{$n}#{$f} { 83 | background-image: url("assets/dash/#{$pt}-#{$nb}#{$fc}.svg"); 84 | } 85 | } 86 | } 87 | } 88 | 89 | 90 | /* Simple Dock */ 91 | 92 | #dash:desktop { 93 | background-color: $panel_bg_color; 94 | } 95 | 96 | 97 | /* GPaste */ 98 | 99 | .popup-menu { 100 | .search-entry { 101 | color: $fg_color; 102 | selection-background-color: $primary_color; 103 | selected-color: $inverse_fg_color; 104 | @include entry(normal); 105 | 106 | &:focus { 107 | @include entry(focus); 108 | color: $fg_color; 109 | } 110 | 111 | .search-entry-icon { color: $hint_fg_color; } 112 | 113 | &:hover, &:focus { 114 | .search-entry-icon { color: $fg_color; } 115 | } 116 | } 117 | } 118 | -------------------------------------------------------------------------------- /src/_sass/gnome-shell/_variables.scss: -------------------------------------------------------------------------------- 1 | $asset_suffix: if($variant == 'dark', '-dark', ''); 2 | $extra_background_clip: if($variant == 'light', padding-box, border-box); 3 | 4 | $panel-corner-radius: 0; 5 | 6 | // font families 7 | $font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; 8 | $large-font-family: Roboto, "M+ 1c", Cantarell, Sans-Serif; 9 | 10 | // font sizes 11 | $root-font-size: if($compact == 'false', 14px, 13px); 12 | $subheading-size: if($compact == 'false', 16px, 15px); 13 | 14 | // opacities 15 | $higher_opacity: 0.9; 16 | $middle_opacity: 0.6; 17 | $lower_opacity: 0.3; 18 | 19 | $secondary_opacity: 0.75; 20 | $hint_opacity: 0.6; 21 | $disabled_opacity: 0.5; 22 | 23 | // sizes 24 | $small_size: if($compact == 'false', 24px, 20px); 25 | $medium_size: if($compact == 'false', 36px, 32px); 26 | $large_size: if($compact == 'false', 48px, 44px); 27 | 28 | $container_padding: 6px; 29 | 30 | $bar_size: 4px; 31 | $menuitem_size: if($compact == 'false', 32px, 28px); 32 | 33 | // radiuses 34 | $button_radius: 3px; 35 | $material_radius: 8px; 36 | $circular_radius: 9999px; 37 | 38 | // durations 39 | $shorter_duration: 200ms / 2; 40 | $longer_duration: 300ms / 2; 41 | $ripple_duration: 500ms / 2; 42 | 43 | // timing functions 44 | $standard_curve: cubic-bezier(0.4, 0.0, 0.2, 1); 45 | $deceleration_curve: cubic-bezier(0.0, 0.0, 0.2, 1); 46 | $acceleration_curve: cubic-bezier(0.4, 0.0, 1, 1); 47 | $sharp_curve: cubic-bezier(0.4, 0.0, 0.6, 1); 48 | 49 | // transition shorthands 50 | $shorter_transition: all $shorter_duration $deceleration_curve; 51 | $longer_transition: all $longer_duration $deceleration_curve; 52 | $shadow_transition: box-shadow $shorter_duration $deceleration_curve; 53 | 54 | // shadows 55 | // based shadow values: 56 | // https://material-design.storage.googleapis.com/images/layout-principles-dimensionality-shadows-08_large_mdpi.png 57 | 58 | $shadow_0: 0 0 transparent; 59 | $shadow_1: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); 60 | $shadow_2: 0 3px 3px rgba(0, 0, 0, 0.16 * 1.5), 0 3px 3px rgba(0, 0, 0, 0.23 * 1.5); 61 | $shadow_3: 0 10px 10px rgba(0, 0, 0, 0.19 * 1.5), 0 6px 3px rgba(0, 0, 0, 0.23 * 1.5); 62 | $shadow_4: 0 14px 14px rgba(0, 0, 0, 0.25 * 2), 0 10px 5px rgba(0, 0, 0, 0.22 * 2); 63 | $shadow_5: 0 19px 19px rgba(0, 0, 0, 0.30 * 2), 0 15px 6px rgba(0, 0, 0, 0.22 * 2); 64 | -------------------------------------------------------------------------------- /src/_sass/gtk/_apps.scss: -------------------------------------------------------------------------------- 1 | @import 'apps/gnome'; 2 | @import 'apps/misc'; 3 | @import 'apps/unity'; 4 | @import 'apps/mate'; 5 | @import 'apps/budgie'; 6 | @import 'apps/lightdm'; 7 | -------------------------------------------------------------------------------- /src/_sass/gtk/_variables.scss: -------------------------------------------------------------------------------- 1 | $asset_suffix: if($variant == 'dark', '-dark', ''); 2 | $asset_suffix_light: if($titlebar == 'light' and $variant == 'light', '', '-dark'); 3 | $extra_background_clip: if($variant == 'light', padding-box, border-box); 4 | $asset_radius: if($radius == 'circle', '-circle', '-square'); 5 | 6 | // opacities 7 | $higher_opacity: 0.9; 8 | $middle_opacity: 0.6; 9 | $lower_opacity: 0.3; 10 | 11 | $secondary_opacity: 0.75; 12 | $hint_opacity: 0.6; 13 | $disabled_opacity: 0.5; 14 | 15 | // sizes 16 | $small_size: if($compact == 'false', 24px, 20px); 17 | $medium_size: if($compact == 'false', 36px, 32px); 18 | $large_size: if($compact == 'false', 42px, 38px); 19 | 20 | $container_padding: if($compact == 'false', 6px, 4px); 21 | 22 | $bar_size: 4px; 23 | $menuitem_size: 28px; 24 | 25 | // radiuses 26 | $buttons_radius: 2px; 27 | $menu_radius: 5px; 28 | $windows_radius: 6px; 29 | $material_radius: 3px; 30 | $circular_radius: 9999px; 31 | 32 | // durations 33 | $shorter_duration: 100ms; 34 | $longer_duration: 225ms; 35 | $ripple_duration: 300ms; 36 | 37 | // timing functions 38 | $standard_curve: cubic-bezier(0.4, 0.0, 0.2, 1); 39 | $deceleration_curve: cubic-bezier(0.0, 0.0, 0.2, 1); 40 | $acceleration_curve: cubic-bezier(0.4, 0.0, 1, 1); 41 | $sharp_curve: cubic-bezier(0.4, 0.0, 0.6, 1); 42 | 43 | // transition shorthands 44 | $shorter_transition: all $shorter_duration $deceleration_curve; 45 | $longer_transition: all $longer_duration $deceleration_curve; 46 | $shadow_transition: box-shadow $shorter_duration $deceleration_curve; 47 | 48 | // Side-bar shadows 49 | $sidebar-light-ltr: inset -2px 0 3px -3px rgba(0, 0, 0, 0.05), 50 | inset -3px 0 5px -3px rgba(0, 0, 0, 0.05), 51 | inset -3px 0 10px -3px rgba(0, 0, 0, 0.03); 52 | $sidebar-light-rtl: inset 2px 0 3px -3px rgba(0, 0, 0, 0.05), 53 | inset 3px 0 5px -3px rgba(0, 0, 0, 0.05), 54 | inset 3px 0 10px -3px rgba(0, 0, 0, 0.03); 55 | $sidebar-dark-ltr: inset -2px 0 3px -3px rgba(0, 0, 0, 0.05), 56 | inset -3px 0 5px -3px rgba(0, 0, 0, 0.05), 57 | inset -3px 0 10px -3px rgba(0, 0, 0, 0.03); 58 | $sidebar-dark-rtl: inset 2px 0 3px -3px rgba(0, 0, 0, 0.08), 59 | inset 3px 0 5px -3px rgba(0, 0, 0, 0.05), 60 | inset 3px 0 10px -3px rgba(0, 0, 0, 0.03); 61 | 62 | // shadows 63 | // based shadow values: 64 | // https://material-design.storage.googleapis.com/images/layout-principles-dimensionality-shadows-08_large_mdpi.png 65 | 66 | // box-shadow 1px blur doesn't draw correctly, see 67 | // https://bugzilla.gnome.org/show_bug.cgi?id=738484 68 | // $shadow_1: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); 69 | $shadow_1: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.10); 70 | $shadow_2: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06); 71 | $shadow_3: 0 10px 10px rgba(0, 0, 0, 0.19), 0 6px 3px rgba(0, 0, 0, 0.23); 72 | $shadow_4: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); 73 | $shadow_5: 0 19px 19px rgba(0, 0, 0, 0.30), 0 15px 6px rgba(0, 0, 0, 0.22); 74 | $shadow_6: 0 3px 3px -3px rgba(0, 0, 0, 0.12), 0 5px 5px -5px rgba(0, 0, 0, 0.06); 75 | $header_shadow_dark: 0 1px 1px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.26), 0 2px 3px rgba(0, 0, 0, 0.32); 76 | $header_shadow_light: 0 1px 1px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.11), 0 2px 3px rgba(0, 0, 0, 0.10); 77 | -------------------------------------------------------------------------------- /src/_sass/gtk/apps/_lightdm.scss: -------------------------------------------------------------------------------- 1 | // based css: 2 | // https://bazaar.launchpad.net/~lightdm-gtk-greeter-team/lightdm-gtk-greeter/trunk/view/head:/data/sample-lightdm-gtk-greeter.css 3 | 4 | /************************ 5 | * LightDM GTK+ Greeter * 6 | ************************/ 7 | // the panel widget at the top 8 | #panel_window { 9 | background-color: $alt_panel_bg_color; 10 | color: $inverse_fg_color; 11 | // font-weight: bold; 12 | 13 | // the menubars/menus of the panel, i.e. indicators 14 | menubar, 15 | separator { background-color: transparent; } 16 | 17 | separator { 18 | padding: 0 4px; 19 | 20 | &:first-child { padding: 0 8px; } 21 | } 22 | 23 | menubar > menuitem { 24 | color: $inverse_secondary_fg_color; 25 | 26 | &:hover { color: $inverse_fg_color; } 27 | 28 | &:disabled label { color: $inverse_disabled_secondary_fg_color; } 29 | } 30 | } 31 | 32 | // the login window 33 | #login_window, 34 | #shutdown_dialog, 35 | #restart_dialog { 36 | margin: 8px; 37 | border-radius: $buttons_radius; 38 | box-shadow: $shadow_2, inset 0 1px $highlight_color; 39 | background-color: $lighter_bg_color; 40 | } 41 | 42 | // the top half of the login-window, in GtkDialog terms, the content 43 | #content_frame { 44 | padding-bottom: 20px; 45 | border-bottom: 1px solid $border_color; 46 | } 47 | 48 | #login_window { 49 | // the user-combobox 50 | #user_combobox button { @extend %combo_flat; } 51 | 52 | // the entries, one for the username, one for the password 53 | entry { @extend %entry.flat; } 54 | } 55 | 56 | // the buttons, alternatively this could also be done with a simple ".lightdm-gtk-greeter button" 57 | #login_window button, 58 | #shutdown_dialog button, 59 | #restart_dialog button { 60 | } 61 | 62 | .lightdm-gtk-greeter button { @extend %simple_flat_button; } 63 | 64 | // the user's avatar box 65 | #user_image { 66 | } 67 | 68 | // the border around the user's avatar box 69 | #user_image_border { 70 | } 71 | 72 | // the lower half of the login-window, in GtkDialog terms the buttonbox or action area 73 | #buttonbox_frame { 74 | padding-top: 24px; 75 | 76 | button { margin: -16px; } 77 | } 78 | 79 | // the shutdown button 80 | #shutdown_button { 81 | } 82 | 83 | // the restart button 84 | #restart_button { 85 | } 86 | 87 | // the warning, in case a wrong password is entered or something else goes wrong according to PAM 88 | #greeter_infobar { 89 | margin-top: -1px; 90 | // font-weight: bold; 91 | } 92 | -------------------------------------------------------------------------------- /src/_sass/gtk/apps/_unity.scss: -------------------------------------------------------------------------------- 1 | // based css: 2 | // https://bazaar.launchpad.net/~ubuntu-art-pkg/ubuntu-themes/trunk/view/head:/Ambiance/gtk-3.20/apps/unity.css 3 | 4 | /********* 5 | * Unity * 6 | *********/ 7 | // Decorations 8 | UnityDecoration { 9 | -UnityDecoration-extents: 28px 0 0 0; 10 | -UnityDecoration-input-extents: 8px; 11 | 12 | -UnityDecoration-shadow-offset-x: 0; 13 | -UnityDecoration-shadow-offset-y: 3px; 14 | -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); 15 | -UnityDecoration-active-shadow-radius: 18px; 16 | -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); 17 | -UnityDecoration-inactive-shadow-radius: 6px; 18 | 19 | -UnityDecoration-glow-size: 8px; 20 | -UnityDecoration-glow-color: $primary_color; 21 | 22 | -UnityDecoration-title-indent: 4px; 23 | -UnityDecoration-title-fade: 32px; 24 | -UnityDecoration-title-alignment: 0.0; 25 | 26 | .top { 27 | padding: 0 2px; 28 | border-style: none; 29 | border-radius: $windows_radius $windows_radius 0 0; 30 | box-shadow: inset 0 1px $titlebar_highlight_color; 31 | background-color: $titlebar_bg_color; 32 | color: $titlebar_fg_color; 33 | 34 | &:backdrop { color: $titlebar_secondary_fg_color; } 35 | } 36 | 37 | .left, 38 | .right {} 39 | 40 | .bottom {} 41 | 42 | .menuitem { 43 | color: $titlebar_secondary_fg_color; 44 | 45 | &:hover { 46 | box-shadow: inset 0 -2px $titlebar_indicator_color; 47 | background-color: transparent; 48 | color: $titlebar_fg_color; 49 | } 50 | } 51 | } 52 | 53 | .background:not(.csd) headerbar:not(.titlebar) { 54 | border-radius: $buttons_radius; 55 | box-shadow: $shadow_1; 56 | 57 | &.inline-toolbar { border-style: none; } 58 | } 59 | 60 | sheet-style-dialog.unity-force-quit { 61 | // background-color: $bg_color; 62 | } 63 | 64 | // Panel Style 65 | UnityPanelWidget, 66 | .unity-panel { 67 | background-color: $opaque_panel_bg_color; 68 | color: $titlebar_fg_color; 69 | 70 | &:backdrop { color: $titlebar_secondary_fg_color; } 71 | } 72 | 73 | .unity-panel.menubar, 74 | .unity-panel .menubar { 75 | } 76 | 77 | .unity-panel.menuitem, 78 | .unity-panel .menuitem { 79 | color: $titlebar_secondary_fg_color; 80 | } 81 | 82 | .unity-panel.menubar.menuitem:hover, 83 | .unity-panel.menubar .menuitem *:hover { 84 | box-shadow: inset 0 -2px $titlebar_indicator_color; 85 | background-color: transparent; 86 | color: $titlebar_fg_color; 87 | } 88 | 89 | .menu IdoPlaybackMenuItem.menuitem:active { 90 | -gtk-icon-source: -gtk-icontheme('process-working-symbolic'); 91 | animation: spin 1s linear infinite; 92 | color: $primary_color; 93 | } 94 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/checkbox-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/key-hide.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | Gnome Symbolic Icon Theme 47 | 48 | 49 | 50 | Gnome Symbolic Icon Theme 52 | 54 | 58 | 62 | 63 | 64 | 68 | 72 | 75 | 79 | 82 | 86 | 90 | 94 | 99 | 107 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/key-shift.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 42 | 44 | 45 | 47 | image/svg+xml 48 | 50 | Gnome Symbolic Icon Theme 51 | 52 | 53 | 54 | Gnome Symbolic Icon Theme 56 | 58 | 62 | 66 | 67 | 68 | 72 | 76 | 79 | 83 | 86 | 90 | 94 | 98 | 102 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/no-events.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/no-notifications.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets-dark/toggle-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/checkbox-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/key-shift.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 42 | 44 | 45 | 47 | image/svg+xml 48 | 50 | Gnome Symbolic Icon Theme 51 | 52 | 53 | 54 | Gnome Symbolic Icon Theme 56 | 58 | 62 | 66 | 67 | 68 | 72 | 76 | 80 | 84 | 88 | 92 | 96 | 100 | 104 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/no-events.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/no-notifications.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/assets/toggle-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/activities-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 40 | 42 | 43 | 45 | image/svg+xml 46 | 48 | 49 | 50 | 51 | 52 | 57 | 59 | 65 | 71 | 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/activities.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 40 | 42 | 43 | 45 | image/svg+xml 46 | 48 | 49 | 50 | 51 | 52 | 57 | 60 | 66 | 72 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/checkbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 55 | 56 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running2-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running3-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running4-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/bottom-running4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running2-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running3-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running4-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/left-running4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running2-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running3-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running4-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/right-running4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running1-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running2-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running3-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running4-focused.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/dash/top-running4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/key-shift-latched-uppercase.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | Gnome Symbolic Icon Theme 48 | 49 | 50 | 51 | Gnome Symbolic Icon Theme 53 | 55 | 59 | 63 | 64 | 65 | 69 | 73 | 76 | 80 | 83 | 87 | 91 | 95 | 99 | 104 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/key-shift-uppercase.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | Gnome Symbolic Icon Theme 47 | 48 | 49 | 50 | Gnome Symbolic Icon Theme 52 | 54 | 58 | 62 | 63 | 64 | 68 | 72 | 75 | 79 | 82 | 86 | 90 | 94 | 98 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/more-results.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 57 | 61 | 62 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/toggle-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 59 | 65 | 66 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/window-close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/common-assets/window-close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/gnome-shell/gnome-shell-compact.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'dark'; 3 | $compact: 'true'; 4 | 5 | @import '../_sass/gnome-shell/variables'; 6 | @import '../_sass/colors'; 7 | @import '../_sass/gnome-shell/drawing'; 8 | @import '../_sass/gnome-shell/common'; 9 | @import '../_sass/gnome-shell/extensions'; 10 | -------------------------------------------------------------------------------- /src/gnome-shell/gnome-shell-dark-compact.scss: -------------------------------------------------------------------------------- 1 | $variant: 'dark'; 2 | $titlebar: 'dark'; 3 | $compact: 'true'; 4 | 5 | @import '../_sass/gnome-shell/variables'; 6 | @import '../_sass/colors'; 7 | @import '../_sass/gnome-shell/drawing'; 8 | @import '../_sass/gnome-shell/common'; 9 | @import '../_sass/gnome-shell/extensions'; 10 | -------------------------------------------------------------------------------- /src/gnome-shell/gnome-shell-dark.scss: -------------------------------------------------------------------------------- 1 | $variant: 'dark'; 2 | $titlebar: 'dark'; 3 | $compact: 'false'; 4 | 5 | @import '../_sass/gnome-shell/variables'; 6 | @import '../_sass/colors'; 7 | @import '../_sass/gnome-shell/drawing'; 8 | @import '../_sass/gnome-shell/common'; 9 | @import '../_sass/gnome-shell/extensions'; 10 | -------------------------------------------------------------------------------- /src/gnome-shell/gnome-shell-light-compact.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'light'; 3 | $compact: 'true'; 4 | 5 | @import '../_sass/gnome-shell/variables'; 6 | @import '../_sass/colors'; 7 | @import '../_sass/gnome-shell/drawing'; 8 | @import '../_sass/gnome-shell/common'; 9 | @import '../_sass/gnome-shell/extensions'; 10 | -------------------------------------------------------------------------------- /src/gnome-shell/gnome-shell-light.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'light'; 3 | $compact: 'false'; 4 | 5 | @import '../_sass/gnome-shell/variables'; 6 | @import '../_sass/colors'; 7 | @import '../_sass/gnome-shell/drawing'; 8 | @import '../_sass/gnome-shell/common'; 9 | @import '../_sass/gnome-shell/extensions'; 10 | -------------------------------------------------------------------------------- /src/gnome-shell/gnome-shell-theme.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | assets/dash/bottom-running1.svg 5 | assets/dash/bottom-running1-focused.svg 6 | assets/dash/bottom-running2.svg 7 | assets/dash/bottom-running2-focused.svg 8 | assets/dash/bottom-running3.svg 9 | assets/dash/bottom-running3-focused.svg 10 | assets/dash/bottom-running4.svg 11 | assets/dash/bottom-running4-focused.svg 12 | assets/dash/left-running1.svg 13 | assets/dash/left-running1-focused.svg 14 | assets/dash/left-running2.svg 15 | assets/dash/left-running2-focused.svg 16 | assets/dash/left-running3.svg 17 | assets/dash/left-running3-focused.svg 18 | assets/dash/left-running4.svg 19 | assets/dash/left-running4-focused.svg 20 | assets/dash/right-running1.svg 21 | assets/dash/right-running1-focused.svg 22 | assets/dash/right-running2.svg 23 | assets/dash/right-running2-focused.svg 24 | assets/dash/right-running3.svg 25 | assets/dash/right-running3-focused.svg 26 | assets/dash/right-running4.svg 27 | assets/dash/right-running4-focused.svg 28 | assets/dash/top-running1.svg 29 | assets/dash/top-running1-focused.svg 30 | assets/dash/top-running2.svg 31 | assets/dash/top-running2-focused.svg 32 | assets/dash/top-running3.svg 33 | assets/dash/top-running3-focused.svg 34 | assets/dash/top-running4.svg 35 | assets/dash/top-running4-focused.svg 36 | assets/calendar-arrow-left.svg 37 | assets/calendar-arrow-right.svg 38 | assets/checkbox.svg 39 | assets/checkbox-off.svg 40 | assets/close.svg 41 | assets/dash-placeholder.svg 42 | assets/more-results.svg 43 | assets/toggle-off.svg 44 | assets/toggle-on.svg 45 | assets/window-close.svg 46 | assets/window-close-active.svg 47 | assets/key-enter.svg 48 | assets/key-hide.svg 49 | assets/key-layout.svg 50 | assets/key-shift.svg 51 | assets/key-shift-latched-uppercase.svg 52 | assets/key-shift-uppercase.svg 53 | assets/activities.svg 54 | assets/activities-active.svg 55 | extensions/workspaces-to-dock/workspaces-to-dock.css 56 | gnome-shell.css 57 | message-indicator-symbolic.svg 58 | no-events.svg 59 | no-notifications.svg 60 | noise-texture.png 61 | pad-osd.css 62 | process-working.svg 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/gnome-shell/gnome-shell.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'dark'; 3 | $compact: 'false'; 4 | 5 | @import '../_sass/gnome-shell/variables'; 6 | @import '../_sass/colors'; 7 | @import '../_sass/gnome-shell/drawing'; 8 | @import '../_sass/gnome-shell/common'; 9 | @import '../_sass/gnome-shell/extensions'; 10 | -------------------------------------------------------------------------------- /src/gnome-shell/message-indicator-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gnome-shell/no-events.svg: -------------------------------------------------------------------------------- 1 | assets/no-events.svg -------------------------------------------------------------------------------- /src/gnome-shell/no-notifications.svg: -------------------------------------------------------------------------------- 1 | assets/no-notifications.svg -------------------------------------------------------------------------------- /src/gnome-shell/noise-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gnome-shell/noise-texture.png -------------------------------------------------------------------------------- /src/gnome-shell/pad-osd.css: -------------------------------------------------------------------------------- 1 | .Leader { 2 | stroke-width: .5 !important; 3 | stroke: #535353; 4 | fill: none !important; 5 | } 6 | 7 | .Button { 8 | stroke-width: .25; 9 | stroke: #ededed; 10 | fill: #ededed; 11 | } 12 | 13 | .Ring { 14 | stroke-width: .5 !important; 15 | stroke: #535353 !important; 16 | fill: none !important; 17 | } 18 | 19 | .Label { 20 | stroke: none !important; 21 | stroke-width: .1 !important; 22 | font-size: .1 !important; 23 | fill: transparent !important; 24 | } 25 | 26 | .TouchStrip, .TouchRing { 27 | stroke-width: .1 !important; 28 | stroke: #ededed !important; 29 | fill: #535353 !important; 30 | } 31 | -------------------------------------------------------------------------------- /src/gnome-shell/process-working.svg: -------------------------------------------------------------------------------- 1 | assets/process-working.svg -------------------------------------------------------------------------------- /src/gtk-2.0/apps.rc: -------------------------------------------------------------------------------- 1 | # vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: 2 | # 3 | # This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g. 4 | # custom widgets, programs giving us a chance to alter their UI to fit more with 5 | # the theme or stuff that is supposed to look different, like panels. 6 | 7 | # TODO: This could really look nicer 8 | style "gimp_spin_scale" { 9 | # Spin background 10 | bg[NORMAL] = @base_color 11 | 12 | engine "pixmap" { 13 | image { 14 | function = BOX 15 | state = NORMAL 16 | detail = "spinbutton_up" 17 | overlay_file = "assets/pan-up-alt.png" 18 | overlay_stretch = FALSE 19 | } 20 | 21 | image { 22 | function = BOX 23 | state = PRELIGHT 24 | detail = "spinbutton_up" 25 | overlay_file = "assets/pan-up.png" 26 | overlay_stretch = FALSE 27 | } 28 | 29 | image { 30 | function = BOX 31 | state = ACTIVE 32 | detail = "spinbutton_up" 33 | overlay_file = "assets/pan-up.png" 34 | overlay_stretch = FALSE 35 | } 36 | 37 | image { 38 | function = BOX 39 | state = INSENSITIVE 40 | detail = "spinbutton_up" 41 | overlay_file = "assets/pan-up-alt-insensitive.png" 42 | overlay_stretch = FALSE 43 | } 44 | 45 | image { 46 | function = BOX 47 | state = NORMAL 48 | detail = "spinbutton_down" 49 | overlay_file = "assets/pan-down-alt.png" 50 | overlay_stretch = FALSE 51 | } 52 | 53 | image { 54 | function = BOX 55 | state = PRELIGHT 56 | detail = "spinbutton_down" 57 | overlay_file = "assets/pan-down.png" 58 | overlay_stretch = FALSE 59 | } 60 | 61 | image { 62 | function = BOX 63 | state = ACTIVE 64 | detail = "spinbutton_down" 65 | overlay_file = "assets/pan-down.png" 66 | overlay_stretch = FALSE 67 | } 68 | 69 | image { 70 | function = BOX 71 | state = INSENSITIVE 72 | detail = "spinbutton_down" 73 | overlay_file = "assets/pan-down-alt-insensitive.png" 74 | overlay_stretch = FALSE 75 | } 76 | } 77 | } 78 | 79 | style "chrome_gtk_frame" { 80 | ChromeGtkFrame::frame-color = @titlebar_bg_color 81 | ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color 82 | ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color 83 | ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color 84 | 85 | ChromeGtkFrame::frame-gradient-size = 0 86 | } 87 | 88 | # Disable spin button assets for GimpSpinScale 89 | class "GimpSpinScale" style "gimp_spin_scale" 90 | 91 | # Chromium lets us define some colours and settings for better integration 92 | class "ChromeGtkFrame" style "chrome_gtk_frame" 93 | -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/border.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-checked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-checked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-mixed-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-mixed-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-unchecked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-unchecked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/checkbox-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-ltr-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-ltr-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-ltr-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-ltr-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-ltr-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-ltr-button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-ltr-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-ltr-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-ltr-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-ltr-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-ltr-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-ltr-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-ltr-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-ltr-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-rtl-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-rtl-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-rtl-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-rtl-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-rtl-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-rtl-button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-rtl-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-rtl-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-rtl-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-rtl-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-rtl-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-rtl-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/combo-rtl-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/combo-rtl-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/entry-background-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/entry-background-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/entry-background.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/flat-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/flat-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/flat-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/flat-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/flat-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/flat-button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/flat-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/flat-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/focus.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/frame-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/frame-inline.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/frame-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/frame-notebook.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/frame.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/handle-horz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/handle-horz-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/handle-horz-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/handle-horz-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/handle-horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/handle-horz.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/handle-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/handle-vert-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/handle-vert-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/handle-vert-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/handle-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/handle-vert.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-checkbox-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-checkbox-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-radio-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-radio-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-radio-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-radio-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/menu-radio-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-combo-ltr-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-combo-ltr-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-combo-ltr-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-combo-ltr-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-combo-ltr-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-combo-ltr-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-combo-rtl-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-combo-rtl-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-combo-rtl-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-combo-rtl-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-combo-rtl-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-combo-rtl-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/notebook-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/notebook-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-down-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-down-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-down-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-down-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-down-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-down-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-down.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-left-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-left-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-left-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-left-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-left-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-left-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-left-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-left-semi.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-left.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-right-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-right-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-right-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-right-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-right-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-right-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-right-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-right-semi.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-right.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-up-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-up-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-up-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-up-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-up-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pan-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pan-up.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pathbar_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pathbar_button_active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/pathbar_button_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/pathbar_button_prelight.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/progressbar-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/progressbar-progress.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/progressbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/progressbar-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-checked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-checked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-mixed-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-mixed-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-unchecked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-unchecked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/radio-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-horz-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-horz-trough-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-horz-trough-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-horz-trough-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-horz-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-vert-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-vert-trough-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-vert-trough-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-vert-trough-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scale-vert-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scale-vert-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-horz-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-horz-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-horz-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-horz-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-horz-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-horz-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-horz-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-horz-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-horz-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-ltr-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-ltr-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-ltr-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-rtl-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/scrollbar-vert-rtl-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/scrollbar-vert-rtl-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-down-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-down-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-down-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-down-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-down.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-up-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-up-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-up-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-ltr-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-ltr-up.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-down-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-down-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-down-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-down-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-down.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-up-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-up-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-up-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/spin-rtl-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/spin-rtl-up.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/tab.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/treeview-ltr-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/treeview-ltr-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/treeview-ltr-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/treeview-ltr-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/treeview-ltr-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/treeview-ltr-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/treeview-rtl-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/treeview-rtl-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/treeview-rtl-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/treeview-rtl-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets-dark/treeview-rtl-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets-dark/treeview-rtl-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets.txt: -------------------------------------------------------------------------------- 1 | entry-background 2 | entry-background-insensitive 3 | entry 4 | entry-active 5 | entry-insensitive 6 | flat-button 7 | flat-button-hover 8 | flat-button-active 9 | flat-button-insensitive 10 | button 11 | button-hover 12 | button-active 13 | button-insensitive 14 | combo-ltr-entry 15 | combo-ltr-entry-active 16 | combo-ltr-entry-insensitive 17 | combo-ltr-button 18 | combo-ltr-button-hover 19 | combo-ltr-button-active 20 | combo-ltr-button-insensitive 21 | combo-rtl-entry 22 | combo-rtl-entry-active 23 | combo-rtl-entry-insensitive 24 | combo-rtl-button 25 | combo-rtl-button-hover 26 | combo-rtl-button-active 27 | combo-rtl-button-insensitive 28 | spin-ltr-up 29 | spin-ltr-up-hover 30 | spin-ltr-up-active 31 | spin-ltr-up-insensitive 32 | spin-ltr-down 33 | spin-ltr-down-hover 34 | spin-ltr-down-active 35 | spin-ltr-down-insensitive 36 | spin-rtl-up 37 | spin-rtl-up-hover 38 | spin-rtl-up-active 39 | spin-rtl-up-insensitive 40 | spin-rtl-down 41 | spin-rtl-down-hover 42 | spin-rtl-down-active 43 | spin-rtl-down-insensitive 44 | notebook-entry 45 | notebook-entry-active 46 | notebook-entry-insensitive 47 | notebook-combo-ltr-entry 48 | notebook-combo-ltr-entry-active 49 | notebook-combo-ltr-entry-insensitive 50 | notebook-combo-rtl-entry 51 | notebook-combo-rtl-entry-active 52 | notebook-combo-rtl-entry-insensitive 53 | checkbox-unchecked 54 | checkbox-unchecked-hover 55 | checkbox-unchecked-active 56 | checkbox-unchecked-insensitive 57 | checkbox-checked 58 | checkbox-checked-hover 59 | checkbox-checked-active 60 | checkbox-checked-insensitive 61 | checkbox-mixed 62 | checkbox-mixed-hover 63 | checkbox-mixed-active 64 | checkbox-mixed-insensitive 65 | radio-unchecked 66 | radio-unchecked-hover 67 | radio-unchecked-active 68 | radio-unchecked-insensitive 69 | radio-checked 70 | radio-checked-hover 71 | radio-checked-active 72 | radio-checked-insensitive 73 | radio-mixed 74 | radio-mixed-hover 75 | radio-mixed-active 76 | radio-mixed-insensitive 77 | menu-checkbox-unchecked 78 | menu-checkbox-unchecked-insensitive 79 | menu-checkbox-checked 80 | menu-checkbox-checked-insensitive 81 | menu-checkbox-mixed 82 | menu-checkbox-mixed-insensitive 83 | menu-radio-unchecked 84 | menu-radio-unchecked-insensitive 85 | menu-radio-checked 86 | menu-radio-checked-insensitive 87 | menu-radio-mixed 88 | menu-radio-mixed-insensitive 89 | scale-slider 90 | scale-slider-hover 91 | scale-slider-active 92 | scale-slider-insensitive 93 | scale-horz-trough 94 | scale-horz-trough-active 95 | scale-horz-trough-insensitive 96 | scale-vert-trough 97 | scale-vert-trough-active 98 | scale-vert-trough-insensitive 99 | scrollbar-horz-slider 100 | scrollbar-horz-slider-hover 101 | scrollbar-horz-slider-active 102 | scrollbar-horz-slider-insensitive 103 | scrollbar-horz-trough 104 | scrollbar-vert-ltr-slider 105 | scrollbar-vert-ltr-slider-hover 106 | scrollbar-vert-ltr-slider-active 107 | scrollbar-vert-ltr-slider-insensitive 108 | scrollbar-vert-ltr-trough 109 | scrollbar-vert-rtl-slider 110 | scrollbar-vert-rtl-slider-hover 111 | scrollbar-vert-rtl-slider-active 112 | scrollbar-vert-rtl-slider-insensitive 113 | scrollbar-vert-rtl-trough 114 | handle-horz 115 | handle-horz-hover 116 | handle-horz-active 117 | handle-vert 118 | handle-vert-hover 119 | handle-vert-active 120 | pan-up 121 | pan-up-insensitive 122 | pan-up-alt 123 | pan-up-alt-insensitive 124 | pan-down 125 | pan-down-insensitive 126 | pan-down-alt 127 | pan-down-alt-insensitive 128 | pan-left 129 | pan-left-insensitive 130 | pan-left-alt 131 | pan-left-alt-insensitive 132 | pan-left-semi 133 | pan-right 134 | pan-right-insensitive 135 | pan-right-alt 136 | pan-right-alt-insensitive 137 | pan-right-semi 138 | border 139 | tab 140 | progressbar-progress 141 | progressbar-trough 142 | frame 143 | frame-notebook 144 | frame-inline 145 | focus 146 | treeview-ltr-button 147 | treeview-ltr-button-hover 148 | treeview-ltr-button-active 149 | treeview-rtl-button 150 | treeview-rtl-button-hover 151 | treeview-rtl-button-active 152 | pathbar_button_prelight 153 | pathbar_button_active 154 | -------------------------------------------------------------------------------- /src/gtk-2.0/assets/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/border.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-checked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-checked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-mixed-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-mixed-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-unchecked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-unchecked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-ltr-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-ltr-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-ltr-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-ltr-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-ltr-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-ltr-button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-ltr-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-ltr-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-ltr-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-ltr-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-ltr-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-ltr-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-ltr-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-ltr-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-rtl-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-rtl-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-rtl-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-rtl-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-rtl-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-rtl-button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-rtl-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-rtl-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-rtl-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-rtl-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-rtl-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-rtl-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/combo-rtl-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/combo-rtl-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/entry-background-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/entry-background-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/entry-background.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/flat-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/flat-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/flat-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/flat-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/flat-button-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/flat-button-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/flat-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/flat-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/focus.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/frame-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/frame-inline.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/frame-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/frame-notebook.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/handle-horz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/handle-horz-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/handle-horz-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/handle-horz-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/handle-horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/handle-horz.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/handle-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/handle-vert-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/handle-vert-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/handle-vert-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/handle-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/handle-vert.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-checkbox-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-checkbox-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-checkbox-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-checkbox-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-radio-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-radio-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-radio-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-radio-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/menu-radio-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-combo-ltr-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-combo-ltr-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-combo-ltr-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-combo-ltr-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-combo-ltr-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-combo-ltr-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-combo-rtl-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-combo-rtl-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-combo-rtl-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-combo-rtl-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-combo-rtl-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-combo-rtl-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-entry-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-entry-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-entry-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/notebook-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/notebook-entry.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-down-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-down-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-down-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-down-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-down-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-down-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-down.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-left-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-left-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-left-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-left-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-left-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-left-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-left-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-left-semi.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-left.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-right-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-right-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-right-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-right-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-right-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-right-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-right-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-right-semi.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-right.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-up-alt-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-up-alt-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-up-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-up-alt.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-up-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pan-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pan-up.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pathbar_button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pathbar_button_active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/pathbar_button_prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/pathbar_button_prelight.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/progressbar-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/progressbar-progress.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/progressbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/progressbar-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-checked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-checked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-checked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-checked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-mixed-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-mixed-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-mixed-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-mixed-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-unchecked-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-unchecked-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-unchecked-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-unchecked-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-horz-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-horz-trough-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-horz-trough-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-horz-trough-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-horz-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-vert-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-vert-trough-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-vert-trough-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-vert-trough-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scale-vert-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scale-vert-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-horz-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-horz-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-horz-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-horz-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-horz-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-horz-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-horz-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-horz-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-horz-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-ltr-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-ltr-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-ltr-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-ltr-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-ltr-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-ltr-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-rtl-slider-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-rtl-slider-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-rtl-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-rtl-slider.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/scrollbar-vert-rtl-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/scrollbar-vert-rtl-trough.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-down-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-down-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-down-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-down-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-down.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-up-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-up-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-up-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-ltr-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-ltr-up.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-down-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-down-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-down-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-down-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-down.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-up-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-up-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-up-insensitive.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/spin-rtl-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/spin-rtl-up.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/tab.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/treeview-ltr-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/treeview-ltr-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/treeview-ltr-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/treeview-ltr-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/treeview-ltr-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/treeview-ltr-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/treeview-rtl-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/treeview-rtl-button-active.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/treeview-rtl-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/treeview-rtl-button-hover.png -------------------------------------------------------------------------------- /src/gtk-2.0/assets/treeview-rtl-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk-2.0/assets/treeview-rtl-button.png -------------------------------------------------------------------------------- /src/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | # Based on Bridge by ScionicSpectre and Adwaita by GNOME 2 | # vim:set ts=2 sw=2 sts=2 ai et: 3 | # 4 | # This is the GTK+ 2 version of Materia. It's whole purpose is to look as the 5 | # GTK+ 3 version as much as possible until GTK+ 2 dies completely. 6 | # 7 | # Note: comments for explaining styles are on the bottom of each file beside the 8 | # widget matches. 9 | 10 | # Declare the colours used throughout the theme. 11 | # There shouldn't be any fiddling with them in the theme files themselves in 12 | # order to not mess up the dark theme. 13 | 14 | # Text/base 15 | gtk-color-scheme = "text_color:#212121\nbase_color:#FFFFFF" 16 | # Foreground/background 17 | gtk-color-scheme = "fg_color:#212121\nbg_color:#F5F5F5" 18 | # Selected foreground/background 19 | gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#5D7DFB" 20 | # Titlebar foreground/background 21 | gtk-color-scheme = "titlebar_fg_color:#efefef\ntitlebar_bg_color:#3f3f3f" 22 | # Links 23 | gtk-color-scheme = "link_color:#42A5F5\nvisited_link_color:#E040FB" 24 | 25 | # Set GTK settings 26 | gtk-auto-mnemonics = 1 27 | gtk-primary-button-warps-slider = 1 28 | 29 | # And hand over the control to the theme files 30 | include "main.rc" 31 | include "apps.rc" 32 | include "hacks.rc" 33 | include "panel.rc" 34 | -------------------------------------------------------------------------------- /src/gtk-2.0/gtkrc-dark: -------------------------------------------------------------------------------- 1 | # Based on Bridge by ScionicSpectre and Adwaita by GNOME 2 | # vim:set ts=2 sw=2 sts=2 ai et: 3 | # 4 | # This is the GTK+ 2 version of Materia. It's whole purpose is to look as the 5 | # GTK+ 3 version as much as possible until GTK+ 2 dies completely. 6 | # 7 | # Note: comments for explaining styles are on the bottom of each file beside the 8 | # widget matches. 9 | 10 | # Declare the colours used throughout the theme. 11 | # There shouldn't be any fiddling with them in the theme files themselves in 12 | # order to not mess up the dark theme. 13 | 14 | # Text/base 15 | gtk-color-scheme = "text_color:#FFFFFF\nbase_color:#3a3a3a" 16 | # Foreground/background 17 | gtk-color-scheme = "fg_color:#FFFFFF\nbg_color:#323232" 18 | # Selected foreground/background 19 | gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#5D7DFB" 20 | # Titlebar foreground/background 21 | gtk-color-scheme = "titlebar_fg_color:#efefef\ntitlebar_bg_color:#3f3f3f" 22 | # Links 23 | gtk-color-scheme = "link_color:#42A5F5\nvisited_link_color:#E040FB" 24 | 25 | # Set GTK settings 26 | gtk-auto-mnemonics = 1 27 | gtk-primary-button-warps-slider = 1 28 | 29 | # And hand over the control to the theme files 30 | include "main.rc" 31 | include "apps.rc" 32 | include "hacks.rc" 33 | include "panel.rc" 34 | -------------------------------------------------------------------------------- /src/gtk-2.0/gtkrc-light: -------------------------------------------------------------------------------- 1 | # Based on Bridge by ScionicSpectre and Adwaita by GNOME 2 | # vim:set ts=2 sw=2 sts=2 ai et: 3 | # 4 | # This is the GTK+ 2 version of Materia. It's whole purpose is to look as the 5 | # GTK+ 3 version as much as possible until GTK+ 2 dies completely. 6 | # 7 | # Note: comments for explaining styles are on the bottom of each file beside the 8 | # widget matches. 9 | 10 | # Declare the colours used throughout the theme. 11 | # There shouldn't be any fiddling with them in the theme files themselves in 12 | # order to not mess up the dark theme. 13 | 14 | # Text/base 15 | gtk-color-scheme = "text_color:#212121\nbase_color:#FFFFFF" 16 | # Foreground/background 17 | gtk-color-scheme = "fg_color:#212121\nbg_color:#F5F5F5" 18 | # Selected foreground/background 19 | gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#5D7DFB" 20 | # Titlebar foreground/background 21 | gtk-color-scheme = "titlebar_fg_color:#212121\ntitlebar_bg_color:#ffffff" 22 | # Links 23 | gtk-color-scheme = "link_color:#42A5F5\nvisited_link_color:#E040FB" 24 | 25 | # Set GTK settings 26 | gtk-auto-mnemonics = 1 27 | gtk-primary-button-warps-slider = 1 28 | 29 | # And hand over the control to the theme files 30 | include "main.rc" 31 | include "apps.rc" 32 | include "hacks.rc" 33 | include "panel.rc" 34 | -------------------------------------------------------------------------------- /src/gtk-2.0/hacks.rc: -------------------------------------------------------------------------------- 1 | # vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: 2 | # 3 | # This file contains horrible hacks to make this theme work with some programs 4 | # This is mostly due to the limitations of gtk2 but sometimes its the fault of 5 | # the programs themselves. Not going to point fingers. 6 | # 7 | # Either way, it's a WONTFIX for both, hence this horrible file. 8 | 9 | style "toplevel_hack" { 10 | engine "adwaita" {} 11 | } 12 | 13 | style "chrome_entry" { 14 | base[NORMAL] = @base_color 15 | base[INSENSITIVE] = @base_color 16 | } 17 | 18 | style "vim_notebook" { 19 | bg[NORMAL] = @base_color 20 | bg[ACTIVE] = @bg_color 21 | } 22 | 23 | # Vim puts an eventbox between the tab and the label and colours it, 24 | # we need to handle that 25 | widget "vim-main-window*GtkNotebook.GtkEventBox" style "vim_notebook" 26 | 27 | # (he)xchat input box 28 | class "SexySpellEntry" style:highest "normal_entry" 29 | 30 | # Chromium uses base as the fill colour of its own entries 31 | # This would be fine but Gtk+ uses it to fill the surrounding space, so its set to bg 32 | # That results in Chromium using it for the fill, so we need to handle that 33 | widget_class "*Chrom*" style "chrome_entry" 34 | 35 | # Hack to be able to match widgets in LibreOffice 36 | class "GtkWindow" style "toplevel_hack" 37 | -------------------------------------------------------------------------------- /src/gtk-2.0/render-asset-dark.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | set -ueo pipefail 3 | 4 | INKSCAPE="/usr/bin/inkscape" 5 | OPTIPNG="/usr/bin/optipng" 6 | 7 | SRC_FILE="assets-dark.svg" 8 | ASSETS_DIR="assets-dark" 9 | 10 | i=${1} 11 | 12 | GTK2_HIDPI=$(echo ${GTK2_HIDPI-False} | tr '[:upper:]' '[:lower:]') 13 | if [[ ${GTK2_HIDPI} == "true" ]] ; then 14 | EXTRA_OPTIONS="--export-dpi=192" 15 | else 16 | EXTRA_OPTIONS="" 17 | fi 18 | 19 | if [ -f $ASSETS_DIR/$i.png ]; then 20 | echo $ASSETS_DIR/$i.png exists. 21 | else 22 | echo Rendering $ASSETS_DIR/$i.png 23 | $INKSCAPE --export-id=$i \ 24 | --export-id-only \ 25 | --export-background-opacity=0 \ 26 | $EXTRA_OPTIONS \ 27 | --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ 28 | && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png 29 | fi 30 | 31 | exit 0 32 | -------------------------------------------------------------------------------- /src/gtk-2.0/render-asset.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | set -ueo pipefail 3 | 4 | INKSCAPE="/usr/bin/inkscape" 5 | OPTIPNG="/usr/bin/optipng" 6 | 7 | SRC_FILE="assets.svg" 8 | ASSETS_DIR="assets" 9 | 10 | i=${1} 11 | 12 | GTK2_HIDPI=$(echo ${GTK2_HIDPI-False} | tr '[:upper:]' '[:lower:]') 13 | if [[ ${GTK2_HIDPI} == "true" ]] ; then 14 | EXTRA_OPTIONS="--export-dpi=192" 15 | else 16 | EXTRA_OPTIONS="" 17 | fi 18 | 19 | if [ -f $ASSETS_DIR/$i.png ]; then 20 | echo $ASSETS_DIR/$i.png exists. 21 | else 22 | echo Rendering $ASSETS_DIR/$i.png 23 | $INKSCAPE --export-id=$i \ 24 | --export-id-only \ 25 | --export-background-opacity=0 \ 26 | $EXTRA_OPTIONS \ 27 | --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ 28 | && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png 29 | fi 30 | 31 | exit 0 32 | -------------------------------------------------------------------------------- /src/gtk-2.0/render-assets-dark.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | set -ueo pipefail 3 | 4 | INDEX="assets.txt" 5 | 6 | _parallel() { 7 | which parallel && parallel $@ || ( 8 | while read i; do 9 | $1 $i 10 | done 11 | ) 12 | } 13 | 14 | cat $INDEX | _parallel ./render-asset-dark.sh 15 | exit 0 16 | -------------------------------------------------------------------------------- /src/gtk-2.0/render-assets.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | set -ueo pipefail 3 | 4 | INDEX="assets.txt" 5 | 6 | _parallel() { 7 | which parallel && parallel $@ || ( 8 | while read i; do 9 | $1 $i 10 | done 11 | ) 12 | } 13 | 14 | cat $INDEX | _parallel ./render-asset.sh 15 | exit 0 16 | -------------------------------------------------------------------------------- /src/gtk/assets.txt: -------------------------------------------------------------------------------- 1 | selectionmode-checkbox-unchecked 2 | selectionmode-checkbox-checked 3 | scale-slider 4 | scale-slider-disabled 5 | scale-horz-marks-before-slider 6 | scale-horz-marks-before-slider-disabled 7 | scale-horz-marks-after-slider 8 | scale-horz-marks-after-slider-disabled 9 | scale-vert-marks-before-slider 10 | scale-vert-marks-before-slider-disabled 11 | scale-vert-marks-after-slider 12 | scale-vert-marks-after-slider-disabled 13 | switch-slider-checked 14 | switch-slider-unchecked 15 | selectionmode-checkbox-unchecked-dark 16 | selectionmode-checkbox-checked-dark 17 | scale-slider-dark 18 | scale-slider-disabled-dark 19 | scale-horz-marks-before-slider-dark 20 | scale-horz-marks-before-slider-disabled-dark 21 | scale-horz-marks-after-slider-dark 22 | scale-horz-marks-after-slider-disabled-dark 23 | scale-vert-marks-before-slider-dark 24 | scale-vert-marks-before-slider-disabled-dark 25 | scale-vert-marks-after-slider-dark 26 | scale-vert-marks-after-slider-disabled-dark 27 | switch-slider-checked-dark 28 | switch-slider-unchecked-dark 29 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/checkbox-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/checkbox-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/checkbox-unchecked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/radio-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/radio-unchecked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/small-checkbox-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/small-checkbox-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/small-checkbox-unchecked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/small-radio-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/small-radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scalable/small-radio-unchecked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider-disabled-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider-disabled.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider-disabled@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-after-slider@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider-disabled-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider-disabled.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider-disabled@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-horz-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-horz-marks-before-slider@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider-disabled-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider-disabled.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider-disabled@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-slider@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider-disabled-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider-disabled.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider-disabled@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-after-slider@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider-disabled-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider-disabled.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider-disabled@2.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider.png -------------------------------------------------------------------------------- /src/gtk/assets/scale-vert-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/scale-vert-marks-before-slider@2.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-checked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-checked-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-checked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-checked-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-checked.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-checked@2.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-unchecked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-unchecked-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-unchecked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-unchecked-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-unchecked.png -------------------------------------------------------------------------------- /src/gtk/assets/selectionmode-checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/selectionmode-checkbox-unchecked@2.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-checked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-checked-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-checked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-checked-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-checked.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-checked@2.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-unchecked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-unchecked-dark.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-unchecked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-unchecked-dark@2.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-unchecked.png -------------------------------------------------------------------------------- /src/gtk/assets/switch-slider-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/Toffee-gtk-theme/603419fea28f667b4c57ea5e10f57af215a8e80d/src/gtk/assets/switch-slider-unchecked@2.png -------------------------------------------------------------------------------- /src/gtk/gtk-compact.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'dark'; 3 | $compact: 'true'; 4 | $radius: 'circle'; 5 | 6 | @import '../_sass/gtk/variables'; 7 | @import '../_sass/colors'; 8 | @import '../_sass/gtk/drawing'; 9 | @import '../_sass/gtk/common'; 10 | @import '../_sass/gtk/apps'; 11 | @import '../_sass/gtk/colors-public'; 12 | -------------------------------------------------------------------------------- /src/gtk/gtk-dark-compact.scss: -------------------------------------------------------------------------------- 1 | $variant: 'dark'; 2 | $titlebar: 'dark'; 3 | $compact: 'true'; 4 | $radius: 'circle'; 5 | 6 | @import '../_sass/gtk/variables'; 7 | @import '../_sass/colors'; 8 | @import '../_sass/gtk/drawing'; 9 | @import '../_sass/gtk/common'; 10 | @import '../_sass/gtk/apps'; 11 | @import '../_sass/gtk/colors-public'; 12 | -------------------------------------------------------------------------------- /src/gtk/gtk-dark.scss: -------------------------------------------------------------------------------- 1 | $variant: 'dark'; 2 | $titlebar: 'dark'; 3 | $compact: 'false'; 4 | $radius: 'circle'; 5 | 6 | @import '../_sass/gtk/variables'; 7 | @import '../_sass/colors'; 8 | @import '../_sass/gtk/drawing'; 9 | @import '../_sass/gtk/common'; 10 | @import '../_sass/gtk/apps'; 11 | @import '../_sass/gtk/colors-public'; 12 | -------------------------------------------------------------------------------- /src/gtk/gtk-light-compact.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'light'; 3 | $compact: 'true'; 4 | $radius: 'circle'; 5 | 6 | @import '../_sass/gtk/variables'; 7 | @import '../_sass/colors'; 8 | @import '../_sass/gtk/drawing'; 9 | @import '../_sass/gtk/common'; 10 | @import '../_sass/gtk/apps'; 11 | @import '../_sass/gtk/colors-public'; 12 | -------------------------------------------------------------------------------- /src/gtk/gtk-light.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'light'; 3 | $compact: 'false'; 4 | $radius: 'circle'; 5 | 6 | @import '../_sass/gtk/variables'; 7 | @import '../_sass/colors'; 8 | @import '../_sass/gtk/drawing'; 9 | @import '../_sass/gtk/common'; 10 | @import '../_sass/gtk/apps'; 11 | @import '../_sass/gtk/colors-public'; 12 | -------------------------------------------------------------------------------- /src/gtk/gtk.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $titlebar: 'dark'; 3 | $compact: 'false'; 4 | $radius: 'circle'; 5 | 6 | @import '../_sass/gtk/variables'; 7 | @import '../_sass/colors'; 8 | @import '../_sass/gtk/drawing'; 9 | @import '../_sass/gtk/common'; 10 | @import '../_sass/gtk/apps'; 11 | @import '../_sass/gtk/colors-public'; 12 | -------------------------------------------------------------------------------- /src/gtk/render-asset.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | set -ueo pipefail 3 | 4 | INKSCAPE="/usr/bin/inkscape" 5 | OPTIPNG="/usr/bin/optipng" 6 | 7 | SRC_FILE="assets.svg" 8 | ASSETS_DIR="assets" 9 | 10 | i=${1} 11 | 12 | if [ -f $ASSETS_DIR/$i.png ]; then 13 | echo $ASSETS_DIR/$i.png exists. 14 | else 15 | echo Rendering $ASSETS_DIR/$i.png 16 | $INKSCAPE --export-id=$i \ 17 | --export-id-only \ 18 | --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ 19 | && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png 20 | fi 21 | if [ -f $ASSETS_DIR/$i@2.png ]; then 22 | echo $ASSETS_DIR/$i@2.png exists. 23 | else 24 | echo Rendering $ASSETS_DIR/$i@2.png 25 | $INKSCAPE --export-id=$i \ 26 | --export-dpi=192 \ 27 | --export-id-only \ 28 | --export-png=$ASSETS_DIR/$i@2.png $SRC_FILE >/dev/null \ 29 | && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i@2.png 30 | fi 31 | 32 | exit 0 33 | -------------------------------------------------------------------------------- /src/gtk/render-assets.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | set -ueo pipefail 3 | 4 | INDEX="assets.txt" 5 | 6 | _parallel() { 7 | which parallel && parallel $@ || ( 8 | while read i; do 9 | $1 $i 10 | done 11 | ) 12 | } 13 | 14 | cat $INDEX | _parallel ./render-asset.sh 15 | exit 0 16 | --------------------------------------------------------------------------------