added GTK3 theme based on Yaru and changed colors of scrollbars

This commit is contained in:
Rinaldus 2021-04-14 16:19:26 +03:00
parent 7e7209fd45
commit 7111a5564c
Signed by: Rinaldus
GPG Key ID: 79C679FA25ABFDB9
178 changed files with 15055 additions and 1 deletions
gtk-2.0
apps.rc
assets
border.pngbutton-active.pngbutton-hover.pngbutton-insensitive.pngbutton.pngcheckbox-checked-active.pngcheckbox-checked-insensitive.pngcheckbox-checked.pngcheckbox-mixed-active.pngcheckbox-mixed-insensitive.pngcheckbox-mixed.pngcheckbox-unchecked-active.pngcheckbox-unchecked-hover.pngcheckbox-unchecked-insensitive.pngcheckbox-unchecked.pngcombo-entry-ltr-button-active.pngcombo-entry-ltr-button-hover.pngcombo-entry-ltr-button-insensitive.pngcombo-entry-ltr-button.pngcombo-entry-ltr-entry-active.pngcombo-entry-ltr-entry-insensitive.pngcombo-entry-ltr-entry.pngcombo-entry-rtl-button-active.pngcombo-entry-rtl-button-hover.pngcombo-entry-rtl-button-insensitive.pngcombo-entry-rtl-button.pngcombo-entry-rtl-entry-active.pngcombo-entry-rtl-entry-insensitive.pngcombo-entry-rtl-entry.pngentry-active.pngentry-background-insensitive.pngentry-background.pngentry-insensitive.pngentry.pngfocus.pngframe-inline.pngframe-notebook.pngframe.pnghandle-horz.pnghandle-vert.pnghandle.pngline.pngmenu-border.pngmenu-checkbox-checked-insensitive.pngmenu-checkbox-checked.pngmenu-checkbox-hover.pngmenu-checkbox-insensitive.pngmenu-checkbox-mixed-insensitive.pngmenu-checkbox-mixed.pngmenu-checkbox.pngmenu-pan-down-insensitive.pngmenu-pan-down.pngmenu-pan-left-hover.pngmenu-pan-left-insensitive.pngmenu-pan-left.pngmenu-pan-right-hover.pngmenu-pan-right-insensitive.pngmenu-pan-right.pngmenu-pan-up-insensitive.pngmenu-pan-up.pngmenu-radio-checked-insensitive.pngmenu-radio-checked.pngmenu-radio-hover.pngmenu-radio-insensitive.pngmenu-radio-mixed-insensitive.pngmenu-radio-mixed.pngmenu-radio.pngmenubar-item-active.pngnotebook-combo-entry-ltr-entry-active.pngnotebook-combo-entry-ltr-entry-insensitive.pngnotebook-combo-entry-ltr-entry.pngnotebook-combo-entry-rtl-entry-active.pngnotebook-combo-entry-rtl-entry-insensitive.pngnotebook-combo-entry-rtl-entry.pngnotebook-entry-active.pngnotebook-entry-insensitive.pngnotebook-entry.pngpan-down-insensitive.pngpan-down.pngpan-left-insensitive.pngpan-left-semi.pngpan-left.pngpan-right-insensitive.pngpan-right-semi.pngpan-right.pngpan-up-insensitive.pngpan-up.pngprogressbar-horz-trough.pngprogressbar-horz.pngprogressbar-vert-trough.pngprogressbar-vert.pngradio-checked-active.pngradio-checked-insensitive.pngradio-checked.pngradio-mixed-active.pngradio-mixed-insensitive.pngradio-mixed.pngradio-unchecked-active.pngradio-unchecked-hover.png

99
gtk-2.0/apps.rc Executable file
View File

@ -0,0 +1,99 @@
# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et:
#
# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g.
# custom widgets, programs giving us a chance to alter their UI to fit more with
# the theme or stuff that is supposed to look different, like panels.
# TODO: This could really look nicer
style "gimp_spin_scale" {
# Spin background
bg[NORMAL] = @base_color
engine "pixmap" {
image {
function = BOX
state = NORMAL
detail = "spinbutton_up"
overlay_file = "assets/spin-up.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = PRELIGHT
detail = "spinbutton_up"
overlay_file = "assets/spin-up.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = ACTIVE
detail = "spinbutton_up"
overlay_file = "assets/spin-up.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = INSENSITIVE
detail = "spinbutton_up"
overlay_file = "assets/spin-up-insensitive.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = NORMAL
detail = "spinbutton_down"
overlay_file = "assets/spin-down.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = PRELIGHT
detail = "spinbutton_down"
overlay_file = "assets/spin-down.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = ACTIVE
detail = "spinbutton_down"
overlay_file = "assets/spin-down.png"
overlay_stretch = FALSE
}
image {
function = BOX
state = INSENSITIVE
detail = "spinbutton_down"
overlay_file = "assets/spin-down-insensitive.png"
overlay_stretch = FALSE
}
}
}
style "chrome_gtk_frame" {
ChromeGtkFrame::frame-color = @window_color
ChromeGtkFrame::frame-gradient-color = @window_color
ChromeGtkFrame::inactive-frame-color = @bg_color
ChromeGtkFrame::incognito-frame-color = "#cbd2d9"
ChromeGtkFrame::incognito-frame-gradient-color = "#cbd2d9"
ChromeGtkFrame::incognito-inactive-frame-color = mix (0.5, @bg_color, "#cbd2d9")
}
# Disable spin button assets for GimpSpinScale
class "GimpSpinScale" style "gimp_spin_scale"
# Chromium lets us define some colours and settings for better integration
class "ChromeGtkFrame" style "chrome_gtk_frame"

BIN
gtk-2.0/assets/border.png Normal file

Binary file not shown.

After

(image error) Size: 142 B

Binary file not shown.

After

(image error) Size: 271 B

Binary file not shown.

After

(image error) Size: 404 B

Binary file not shown.

After

(image error) Size: 291 B

BIN
gtk-2.0/assets/button.png Normal file

Binary file not shown.

After

(image error) Size: 305 B

Binary file not shown.

After

(image error) Size: 403 B

Binary file not shown.

After

(image error) Size: 375 B

Binary file not shown.

After

(image error) Size: 403 B

Binary file not shown.

After

(image error) Size: 327 B

Binary file not shown.

After

(image error) Size: 318 B

Binary file not shown.

After

(image error) Size: 327 B

Binary file not shown.

After

(image error) Size: 318 B

Binary file not shown.

After

(image error) Size: 332 B

Binary file not shown.

After

(image error) Size: 322 B

Binary file not shown.

After

(image error) Size: 318 B

Binary file not shown.

After

(image error) Size: 440 B

Binary file not shown.

After

(image error) Size: 284 B

Binary file not shown.

After

(image error) Size: 260 B

Binary file not shown.

After

(image error) Size: 284 B

Binary file not shown.

After

(image error) Size: 304 B

Binary file not shown.

After

(image error) Size: 247 B

Binary file not shown.

After

(image error) Size: 247 B

Binary file not shown.

After

(image error) Size: 426 B

Binary file not shown.

After

(image error) Size: 274 B

Binary file not shown.

After

(image error) Size: 259 B

Binary file not shown.

After

(image error) Size: 280 B

Binary file not shown.

After

(image error) Size: 278 B

Binary file not shown.

After

(image error) Size: 252 B

Binary file not shown.

After

(image error) Size: 252 B

Binary file not shown.

After

(image error) Size: 296 B

Binary file not shown.

After

(image error) Size: 138 B

Binary file not shown.

After

(image error) Size: 138 B

Binary file not shown.

After

(image error) Size: 224 B

BIN
gtk-2.0/assets/entry.png Normal file

Binary file not shown.

After

(image error) Size: 293 B

BIN
gtk-2.0/assets/focus.png Normal file

Binary file not shown.

After

(image error) Size: 168 B

Binary file not shown.

After

(image error) Size: 161 B

Binary file not shown.

After

(image error) Size: 162 B

BIN
gtk-2.0/assets/frame.png Normal file

Binary file not shown.

After

(image error) Size: 163 B

Binary file not shown.

After

(image error) Size: 149 B

Binary file not shown.

After

(image error) Size: 149 B

BIN
gtk-2.0/assets/handle.png Normal file

Binary file not shown.

After

(image error) Size: 158 B

BIN
gtk-2.0/assets/line.png Normal file

Binary file not shown.

After

(image error) Size: 142 B

Binary file not shown.

After

(image error) Size: 163 B

Binary file not shown.

After

(image error) Size: 357 B

Binary file not shown.

After

(image error) Size: 407 B

Binary file not shown.

After

(image error) Size: 266 B

Binary file not shown.

After

(image error) Size: 323 B

Binary file not shown.

After

(image error) Size: 302 B

Binary file not shown.

After

(image error) Size: 326 B

Binary file not shown.

After

(image error) Size: 151 B

Binary file not shown.

After

(image error) Size: 208 B

Binary file not shown.

After

(image error) Size: 208 B

Binary file not shown.

After

(image error) Size: 197 B

Binary file not shown.

After

(image error) Size: 204 B

Binary file not shown.

After

(image error) Size: 208 B

Binary file not shown.

After

(image error) Size: 197 B

Binary file not shown.

After

(image error) Size: 207 B

Binary file not shown.

After

(image error) Size: 213 B

Binary file not shown.

After

(image error) Size: 200 B

Binary file not shown.

After

(image error) Size: 201 B

Binary file not shown.

After

(image error) Size: 580 B

Binary file not shown.

After

(image error) Size: 644 B

Binary file not shown.

After

(image error) Size: 374 B

Binary file not shown.

After

(image error) Size: 587 B

Binary file not shown.

After

(image error) Size: 431 B

Binary file not shown.

After

(image error) Size: 455 B

Binary file not shown.

After

(image error) Size: 151 B

Binary file not shown.

After

(image error) Size: 154 B

Binary file not shown.

After

(image error) Size: 237 B

Binary file not shown.

After

(image error) Size: 232 B

Binary file not shown.

After

(image error) Size: 261 B

Binary file not shown.

After

(image error) Size: 237 B

Binary file not shown.

After

(image error) Size: 231 B

Binary file not shown.

After

(image error) Size: 228 B

Binary file not shown.

After

(image error) Size: 327 B

Binary file not shown.

After

(image error) Size: 274 B

Binary file not shown.

After

(image error) Size: 291 B

Binary file not shown.

After

(image error) Size: 208 B

BIN
gtk-2.0/assets/pan-down.png Normal file

Binary file not shown.

After

(image error) Size: 208 B

Binary file not shown.

After

(image error) Size: 204 B

Binary file not shown.

After

(image error) Size: 220 B

BIN
gtk-2.0/assets/pan-left.png Normal file

Binary file not shown.

After

(image error) Size: 208 B

Binary file not shown.

After

(image error) Size: 207 B

Binary file not shown.

After

(image error) Size: 223 B

Binary file not shown.

After

(image error) Size: 212 B

Binary file not shown.

After

(image error) Size: 200 B

BIN
gtk-2.0/assets/pan-up.png Normal file

Binary file not shown.

After

(image error) Size: 201 B

Binary file not shown.

After

(image error) Size: 202 B

Binary file not shown.

After

(image error) Size: 192 B

Binary file not shown.

After

(image error) Size: 212 B

Binary file not shown.

After

(image error) Size: 196 B

Binary file not shown.

After

(image error) Size: 617 B

Binary file not shown.

After

(image error) Size: 572 B

Binary file not shown.

After

(image error) Size: 617 B

Binary file not shown.

After

(image error) Size: 428 B

Binary file not shown.

After

(image error) Size: 414 B

Binary file not shown.

After

(image error) Size: 428 B

Binary file not shown.

After

(image error) Size: 522 B

Binary file not shown.

After

(image error) Size: 546 B

Some files were not shown because too many files have changed in this diff Show More