diff --git a/Aurora.gtk/Aurora.gtk.csproj b/Aurora.gtk/Aurora.gtk.csproj
index a0c554c..ae9fc38 100644
--- a/Aurora.gtk/Aurora.gtk.csproj
+++ b/Aurora.gtk/Aurora.gtk.csproj
@@ -81,6 +81,319 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Aurora.gtk/Program.cs b/Aurora.gtk/Program.cs
index fa00d48..a80728d 100644
--- a/Aurora.gtk/Program.cs
+++ b/Aurora.gtk/Program.cs
@@ -1,6 +1,7 @@
using System;
using Xamarin.Forms;
using Xamarin.Forms.Platform.GTK;
+using Xamarin.Forms.Platform.GTK.Helpers;
namespace Aurora.gtk
{
@@ -12,6 +13,11 @@ namespace Aurora.gtk
Gtk.Application.Init();
Forms.Init();
+ if (PlatformHelper.GetGTKPlatform() == GTKPlatform.Windows)
+ {
+ GtkThemes.LoadCustomTheme("Themes/gtkrc-dark");
+ }
+
var app = new App();
var window = new FormsWindow();
window.LoadApplication(app);
diff --git a/Aurora.gtk/Themes/apps.rc b/Aurora.gtk/Themes/apps.rc
new file mode 100755
index 0000000..f48b013
--- /dev/null
+++ b/Aurora.gtk/Themes/apps.rc
@@ -0,0 +1,92 @@
+# 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/pan-up-alt.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_up"
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_up"
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_up"
+ overlay_file = "assets/pan-up-alt-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_down"
+ overlay_file = "assets/pan-down-alt.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_down"
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_down"
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_down"
+ overlay_file = "assets/pan-down-alt-insensitive.png"
+ overlay_stretch = FALSE
+ }
+ }
+}
+
+style "chrome_gtk_frame" {
+ ChromeGtkFrame::frame-color = @titlebar_bg_color
+ ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
+ ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
+ ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
+
+ ChromeGtkFrame::frame-gradient-size = 0
+}
+
+# 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"
diff --git a/Aurora.gtk/Themes/assets-dark.svg b/Aurora.gtk/Themes/assets-dark.svg
new file mode 100755
index 0000000..5685871
--- /dev/null
+++ b/Aurora.gtk/Themes/assets-dark.svg
@@ -0,0 +1,657 @@
+
diff --git a/Aurora.gtk/Themes/assets-dark/border.png b/Aurora.gtk/Themes/assets-dark/border.png
new file mode 100755
index 0000000..b7427ff
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/border.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/button-active.png b/Aurora.gtk/Themes/assets-dark/button-active.png
new file mode 100755
index 0000000..70d101e
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/button-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/button-hover.png b/Aurora.gtk/Themes/assets-dark/button-hover.png
new file mode 100755
index 0000000..1c41342
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/button-insensitive.png b/Aurora.gtk/Themes/assets-dark/button-insensitive.png
new file mode 100755
index 0000000..04f9edb
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/button.png b/Aurora.gtk/Themes/assets-dark/button.png
new file mode 100755
index 0000000..ac1c9be
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/button.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-checked-active.png b/Aurora.gtk/Themes/assets-dark/checkbox-checked-active.png
new file mode 100755
index 0000000..df0fb2a
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-checked-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-checked-hover.png b/Aurora.gtk/Themes/assets-dark/checkbox-checked-hover.png
new file mode 100755
index 0000000..c8c025e
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-checked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-checked-insensitive.png b/Aurora.gtk/Themes/assets-dark/checkbox-checked-insensitive.png
new file mode 100755
index 0000000..8963156
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-checked.png b/Aurora.gtk/Themes/assets-dark/checkbox-checked.png
new file mode 100755
index 0000000..f747595
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-checked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-mixed-active.png b/Aurora.gtk/Themes/assets-dark/checkbox-mixed-active.png
new file mode 100755
index 0000000..1fc825d
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-mixed-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-mixed-hover.png b/Aurora.gtk/Themes/assets-dark/checkbox-mixed-hover.png
new file mode 100755
index 0000000..eea7f4b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-mixed-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-mixed-insensitive.png b/Aurora.gtk/Themes/assets-dark/checkbox-mixed-insensitive.png
new file mode 100755
index 0000000..7666030
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-mixed.png b/Aurora.gtk/Themes/assets-dark/checkbox-mixed.png
new file mode 100755
index 0000000..0c2ec4e
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-active.png b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-active.png
new file mode 100755
index 0000000..cdfe82c
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-hover.png b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-hover.png
new file mode 100755
index 0000000..1963aad
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-insensitive.png b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-insensitive.png
new file mode 100755
index 0000000..01339df
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/checkbox-unchecked.png b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked.png
new file mode 100755
index 0000000..6d519eb
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/checkbox-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-ltr-button-active.png b/Aurora.gtk/Themes/assets-dark/combo-ltr-button-active.png
new file mode 100755
index 0000000..3c73a2b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-ltr-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-ltr-button-hover.png b/Aurora.gtk/Themes/assets-dark/combo-ltr-button-hover.png
new file mode 100755
index 0000000..4dbe2f0
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-ltr-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-ltr-button-insensitive.png b/Aurora.gtk/Themes/assets-dark/combo-ltr-button-insensitive.png
new file mode 100755
index 0000000..dc10818
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-ltr-button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-ltr-button.png b/Aurora.gtk/Themes/assets-dark/combo-ltr-button.png
new file mode 100755
index 0000000..cc00e89
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-ltr-button.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-ltr-entry-active.png b/Aurora.gtk/Themes/assets-dark/combo-ltr-entry-active.png
new file mode 100755
index 0000000..639c902
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-ltr-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-ltr-entry-insensitive.png b/Aurora.gtk/Themes/assets-dark/combo-ltr-entry-insensitive.png
new file mode 100755
index 0000000..92f0c65
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-ltr-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-ltr-entry.png b/Aurora.gtk/Themes/assets-dark/combo-ltr-entry.png
new file mode 100755
index 0000000..6a4a93c
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-ltr-entry.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-rtl-button-active.png b/Aurora.gtk/Themes/assets-dark/combo-rtl-button-active.png
new file mode 100755
index 0000000..726e7c4
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-rtl-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-rtl-button-hover.png b/Aurora.gtk/Themes/assets-dark/combo-rtl-button-hover.png
new file mode 100755
index 0000000..eef3458
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-rtl-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-rtl-button-insensitive.png b/Aurora.gtk/Themes/assets-dark/combo-rtl-button-insensitive.png
new file mode 100755
index 0000000..6f2894f
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-rtl-button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-rtl-button.png b/Aurora.gtk/Themes/assets-dark/combo-rtl-button.png
new file mode 100755
index 0000000..b3ce794
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-rtl-button.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-rtl-entry-active.png b/Aurora.gtk/Themes/assets-dark/combo-rtl-entry-active.png
new file mode 100755
index 0000000..0423ea6
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-rtl-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-rtl-entry-insensitive.png b/Aurora.gtk/Themes/assets-dark/combo-rtl-entry-insensitive.png
new file mode 100755
index 0000000..869fe6e
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-rtl-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/combo-rtl-entry.png b/Aurora.gtk/Themes/assets-dark/combo-rtl-entry.png
new file mode 100755
index 0000000..adedca1
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/combo-rtl-entry.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/entry-active.png b/Aurora.gtk/Themes/assets-dark/entry-active.png
new file mode 100755
index 0000000..98a2739
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/entry-background-insensitive.png b/Aurora.gtk/Themes/assets-dark/entry-background-insensitive.png
new file mode 100755
index 0000000..6a420df
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/entry-background-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/entry-background.png b/Aurora.gtk/Themes/assets-dark/entry-background.png
new file mode 100755
index 0000000..ae35f5b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/entry-background.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/entry-insensitive.png b/Aurora.gtk/Themes/assets-dark/entry-insensitive.png
new file mode 100755
index 0000000..3173bf5
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/entry.png b/Aurora.gtk/Themes/assets-dark/entry.png
new file mode 100755
index 0000000..3f58f5f
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/entry.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/flat-button-active.png b/Aurora.gtk/Themes/assets-dark/flat-button-active.png
new file mode 100755
index 0000000..2df20d5
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/flat-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/flat-button-hover.png b/Aurora.gtk/Themes/assets-dark/flat-button-hover.png
new file mode 100755
index 0000000..91ca0cb
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/flat-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/flat-button-insensitive.png b/Aurora.gtk/Themes/assets-dark/flat-button-insensitive.png
new file mode 100755
index 0000000..2e3cfdc
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/flat-button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/flat-button.png b/Aurora.gtk/Themes/assets-dark/flat-button.png
new file mode 100755
index 0000000..2e3cfdc
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/flat-button.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/focus.png b/Aurora.gtk/Themes/assets-dark/focus.png
new file mode 100755
index 0000000..112b0da
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/focus.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/frame-inline.png b/Aurora.gtk/Themes/assets-dark/frame-inline.png
new file mode 100755
index 0000000..bbea6af
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/frame-inline.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/frame-notebook.png b/Aurora.gtk/Themes/assets-dark/frame-notebook.png
new file mode 100755
index 0000000..0dde7c1
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/frame-notebook.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/frame.png b/Aurora.gtk/Themes/assets-dark/frame.png
new file mode 100755
index 0000000..ed565f6
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/frame.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/handle-horz-active.png b/Aurora.gtk/Themes/assets-dark/handle-horz-active.png
new file mode 100755
index 0000000..eb0d2cf
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/handle-horz-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/handle-horz-hover.png b/Aurora.gtk/Themes/assets-dark/handle-horz-hover.png
new file mode 100755
index 0000000..d5c4539
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/handle-horz-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/handle-horz.png b/Aurora.gtk/Themes/assets-dark/handle-horz.png
new file mode 100755
index 0000000..04d401d
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/handle-horz.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/handle-vert-active.png b/Aurora.gtk/Themes/assets-dark/handle-vert-active.png
new file mode 100755
index 0000000..cfc430b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/handle-vert-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/handle-vert-hover.png b/Aurora.gtk/Themes/assets-dark/handle-vert-hover.png
new file mode 100755
index 0000000..c92301b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/handle-vert-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/handle-vert.png b/Aurora.gtk/Themes/assets-dark/handle-vert.png
new file mode 100755
index 0000000..ca711fc
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/handle-vert.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-checkbox-checked-insensitive.png b/Aurora.gtk/Themes/assets-dark/menu-checkbox-checked-insensitive.png
new file mode 100755
index 0000000..09d32c4
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-checkbox-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-checkbox-checked.png b/Aurora.gtk/Themes/assets-dark/menu-checkbox-checked.png
new file mode 100755
index 0000000..9e2785b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-checkbox-checked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-checkbox-mixed-insensitive.png b/Aurora.gtk/Themes/assets-dark/menu-checkbox-mixed-insensitive.png
new file mode 100755
index 0000000..35e4b61
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-checkbox-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-checkbox-mixed.png b/Aurora.gtk/Themes/assets-dark/menu-checkbox-mixed.png
new file mode 100755
index 0000000..7d80131
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-checkbox-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-checkbox-unchecked-insensitive.png b/Aurora.gtk/Themes/assets-dark/menu-checkbox-unchecked-insensitive.png
new file mode 100755
index 0000000..db57f7e
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-checkbox-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-checkbox-unchecked.png b/Aurora.gtk/Themes/assets-dark/menu-checkbox-unchecked.png
new file mode 100755
index 0000000..842b159
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-checkbox-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-radio-checked-insensitive.png b/Aurora.gtk/Themes/assets-dark/menu-radio-checked-insensitive.png
new file mode 100755
index 0000000..8a48620
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-radio-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-radio-checked.png b/Aurora.gtk/Themes/assets-dark/menu-radio-checked.png
new file mode 100755
index 0000000..ee73ff5
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-radio-checked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-radio-mixed-insensitive.png b/Aurora.gtk/Themes/assets-dark/menu-radio-mixed-insensitive.png
new file mode 100755
index 0000000..8fcb893
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-radio-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-radio-mixed.png b/Aurora.gtk/Themes/assets-dark/menu-radio-mixed.png
new file mode 100755
index 0000000..012bc41
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-radio-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-radio-unchecked-insensitive.png b/Aurora.gtk/Themes/assets-dark/menu-radio-unchecked-insensitive.png
new file mode 100755
index 0000000..81274cf
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-radio-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/menu-radio-unchecked.png b/Aurora.gtk/Themes/assets-dark/menu-radio-unchecked.png
new file mode 100755
index 0000000..167a6b6
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/menu-radio-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry-active.png b/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry-active.png
new file mode 100755
index 0000000..4412019
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry-insensitive.png b/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry-insensitive.png
new file mode 100755
index 0000000..539b570
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry.png b/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry.png
new file mode 100755
index 0000000..e8c8b1a
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-combo-ltr-entry.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry-active.png b/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry-active.png
new file mode 100755
index 0000000..7b716af
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry-insensitive.png b/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry-insensitive.png
new file mode 100755
index 0000000..85b78cc
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry.png b/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry.png
new file mode 100755
index 0000000..960e52c
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-combo-rtl-entry.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-entry-active.png b/Aurora.gtk/Themes/assets-dark/notebook-entry-active.png
new file mode 100755
index 0000000..1c07c14
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-entry-insensitive.png b/Aurora.gtk/Themes/assets-dark/notebook-entry-insensitive.png
new file mode 100755
index 0000000..d2b5bea
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/notebook-entry.png b/Aurora.gtk/Themes/assets-dark/notebook-entry.png
new file mode 100755
index 0000000..266c460
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/notebook-entry.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-down-alt-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-down-alt-insensitive.png
new file mode 100755
index 0000000..c6f07ec
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-down-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-down-alt.png b/Aurora.gtk/Themes/assets-dark/pan-down-alt.png
new file mode 100755
index 0000000..c9bfa29
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-down-alt.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-down-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-down-insensitive.png
new file mode 100755
index 0000000..ed2784b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-down-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-down.png b/Aurora.gtk/Themes/assets-dark/pan-down.png
new file mode 100755
index 0000000..504f527
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-down.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-left-alt-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-left-alt-insensitive.png
new file mode 100755
index 0000000..e4eb9b7
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-left-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-left-alt.png b/Aurora.gtk/Themes/assets-dark/pan-left-alt.png
new file mode 100755
index 0000000..b42dfc0
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-left-alt.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-left-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-left-insensitive.png
new file mode 100755
index 0000000..b3e0717
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-left-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-left-semi.png b/Aurora.gtk/Themes/assets-dark/pan-left-semi.png
new file mode 100755
index 0000000..eac4ea1
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-left-semi.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-left.png b/Aurora.gtk/Themes/assets-dark/pan-left.png
new file mode 100755
index 0000000..3521f01
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-left.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-right-alt-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-right-alt-insensitive.png
new file mode 100755
index 0000000..b2ee252
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-right-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-right-alt.png b/Aurora.gtk/Themes/assets-dark/pan-right-alt.png
new file mode 100755
index 0000000..801ca0c
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-right-alt.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-right-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-right-insensitive.png
new file mode 100755
index 0000000..952e6a0
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-right-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-right-semi.png b/Aurora.gtk/Themes/assets-dark/pan-right-semi.png
new file mode 100755
index 0000000..bc64e96
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-right-semi.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-right.png b/Aurora.gtk/Themes/assets-dark/pan-right.png
new file mode 100755
index 0000000..1ed3fa4
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-right.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-up-alt-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-up-alt-insensitive.png
new file mode 100755
index 0000000..58bcfe2
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-up-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-up-alt.png b/Aurora.gtk/Themes/assets-dark/pan-up-alt.png
new file mode 100755
index 0000000..2c23cc9
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-up-alt.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-up-insensitive.png b/Aurora.gtk/Themes/assets-dark/pan-up-insensitive.png
new file mode 100755
index 0000000..4932807
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-up-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/pan-up.png b/Aurora.gtk/Themes/assets-dark/pan-up.png
new file mode 100755
index 0000000..f6b9375
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/pan-up.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/progressbar-progress.png b/Aurora.gtk/Themes/assets-dark/progressbar-progress.png
new file mode 100755
index 0000000..d27bb6c
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/progressbar-progress.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/progressbar-trough.png b/Aurora.gtk/Themes/assets-dark/progressbar-trough.png
new file mode 100755
index 0000000..e160b8d
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/progressbar-trough.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-checked-active.png b/Aurora.gtk/Themes/assets-dark/radio-checked-active.png
new file mode 100755
index 0000000..2eae3dd
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-checked-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-checked-hover.png b/Aurora.gtk/Themes/assets-dark/radio-checked-hover.png
new file mode 100755
index 0000000..0ff99bc
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-checked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-checked-insensitive.png b/Aurora.gtk/Themes/assets-dark/radio-checked-insensitive.png
new file mode 100755
index 0000000..901626a
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-checked.png b/Aurora.gtk/Themes/assets-dark/radio-checked.png
new file mode 100755
index 0000000..dc7ad42
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-checked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-mixed-active.png b/Aurora.gtk/Themes/assets-dark/radio-mixed-active.png
new file mode 100755
index 0000000..2594bef
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-mixed-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-mixed-hover.png b/Aurora.gtk/Themes/assets-dark/radio-mixed-hover.png
new file mode 100755
index 0000000..367ecb6
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-mixed-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-mixed-insensitive.png b/Aurora.gtk/Themes/assets-dark/radio-mixed-insensitive.png
new file mode 100755
index 0000000..aa9a2f2
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-mixed.png b/Aurora.gtk/Themes/assets-dark/radio-mixed.png
new file mode 100755
index 0000000..6772f69
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-unchecked-active.png b/Aurora.gtk/Themes/assets-dark/radio-unchecked-active.png
new file mode 100755
index 0000000..bd7d230
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-unchecked-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-unchecked-hover.png b/Aurora.gtk/Themes/assets-dark/radio-unchecked-hover.png
new file mode 100755
index 0000000..c1cdae7
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-unchecked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-unchecked-insensitive.png b/Aurora.gtk/Themes/assets-dark/radio-unchecked-insensitive.png
new file mode 100755
index 0000000..cbd61e2
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/radio-unchecked.png b/Aurora.gtk/Themes/assets-dark/radio-unchecked.png
new file mode 100755
index 0000000..4f05f37
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/radio-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-horz-trough-active.png b/Aurora.gtk/Themes/assets-dark/scale-horz-trough-active.png
new file mode 100755
index 0000000..dcbea6e
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-horz-trough-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-horz-trough-insensitive.png b/Aurora.gtk/Themes/assets-dark/scale-horz-trough-insensitive.png
new file mode 100755
index 0000000..6d95beb
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-horz-trough-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-horz-trough.png b/Aurora.gtk/Themes/assets-dark/scale-horz-trough.png
new file mode 100755
index 0000000..065c598
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-horz-trough.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-slider-active.png b/Aurora.gtk/Themes/assets-dark/scale-slider-active.png
new file mode 100755
index 0000000..a2b7bb9
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-slider-hover.png b/Aurora.gtk/Themes/assets-dark/scale-slider-hover.png
new file mode 100755
index 0000000..ba5d993
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-slider-insensitive.png b/Aurora.gtk/Themes/assets-dark/scale-slider-insensitive.png
new file mode 100755
index 0000000..d1ce8ed
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-slider.png b/Aurora.gtk/Themes/assets-dark/scale-slider.png
new file mode 100755
index 0000000..5e9fdec
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-slider.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-vert-trough-active.png b/Aurora.gtk/Themes/assets-dark/scale-vert-trough-active.png
new file mode 100755
index 0000000..9a0ec10
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-vert-trough-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-vert-trough-insensitive.png b/Aurora.gtk/Themes/assets-dark/scale-vert-trough-insensitive.png
new file mode 100755
index 0000000..bb5aa6d
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-vert-trough-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scale-vert-trough.png b/Aurora.gtk/Themes/assets-dark/scale-vert-trough.png
new file mode 100755
index 0000000..6281828
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scale-vert-trough.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-active.png b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-active.png
new file mode 100755
index 0000000..f12cd7f
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-hover.png b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-hover.png
new file mode 100755
index 0000000..895cbbd
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-insensitive.png b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-insensitive.png
new file mode 100755
index 0000000..7068fa2
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider.png b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider.png
new file mode 100755
index 0000000..8c01cd7
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-slider.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-horz-trough.png b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-trough.png
new file mode 100755
index 0000000..99aac97
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-horz-trough.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-active.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-active.png
new file mode 100755
index 0000000..d2c2c1b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-hover.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-hover.png
new file mode 100755
index 0000000..fbceba7
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-insensitive.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-insensitive.png
new file mode 100755
index 0000000..3987167
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider.png
new file mode 100755
index 0000000..79b386d
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-slider.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-trough.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-trough.png
new file mode 100755
index 0000000..e5da90a
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-ltr-trough.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-active.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-active.png
new file mode 100755
index 0000000..dded4fa
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-hover.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-hover.png
new file mode 100755
index 0000000..fb28f6b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-insensitive.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-insensitive.png
new file mode 100755
index 0000000..6d0883f
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider.png
new file mode 100755
index 0000000..c8eb7b4
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-slider.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-trough.png b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-trough.png
new file mode 100755
index 0000000..647f2e5
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/scrollbar-vert-rtl-trough.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-down-active.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-down-active.png
new file mode 100755
index 0000000..b781ef5
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-down-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-down-hover.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-down-hover.png
new file mode 100755
index 0000000..c97e2fd
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-down-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-down-insensitive.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-down-insensitive.png
new file mode 100755
index 0000000..9cf71a9
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-down-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-down.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-down.png
new file mode 100755
index 0000000..a89f8c6
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-down.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-up-active.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-up-active.png
new file mode 100755
index 0000000..134da5d
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-up-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-up-hover.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-up-hover.png
new file mode 100755
index 0000000..4fa6b41
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-up-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-up-insensitive.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-up-insensitive.png
new file mode 100755
index 0000000..dd70229
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-up-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-ltr-up.png b/Aurora.gtk/Themes/assets-dark/spin-ltr-up.png
new file mode 100755
index 0000000..5830dc0
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-ltr-up.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-down-active.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-down-active.png
new file mode 100755
index 0000000..49a7503
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-down-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-down-hover.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-down-hover.png
new file mode 100755
index 0000000..1493a6a
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-down-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-down-insensitive.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-down-insensitive.png
new file mode 100755
index 0000000..4fc5a8d
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-down-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-down.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-down.png
new file mode 100755
index 0000000..0dae955
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-down.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-up-active.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-up-active.png
new file mode 100755
index 0000000..8036f1a
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-up-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-up-hover.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-up-hover.png
new file mode 100755
index 0000000..02fea7a
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-up-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-up-insensitive.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-up-insensitive.png
new file mode 100755
index 0000000..1ba0c76
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-up-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/spin-rtl-up.png b/Aurora.gtk/Themes/assets-dark/spin-rtl-up.png
new file mode 100755
index 0000000..35147c2
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/spin-rtl-up.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/tab.png b/Aurora.gtk/Themes/assets-dark/tab.png
new file mode 100755
index 0000000..c18e718
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/tab.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/treeview-ltr-button-active.png b/Aurora.gtk/Themes/assets-dark/treeview-ltr-button-active.png
new file mode 100755
index 0000000..6bac33b
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/treeview-ltr-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/treeview-ltr-button-hover.png b/Aurora.gtk/Themes/assets-dark/treeview-ltr-button-hover.png
new file mode 100755
index 0000000..1dbe86c
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/treeview-ltr-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/treeview-ltr-button.png b/Aurora.gtk/Themes/assets-dark/treeview-ltr-button.png
new file mode 100755
index 0000000..a638577
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/treeview-ltr-button.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/treeview-rtl-button-active.png b/Aurora.gtk/Themes/assets-dark/treeview-rtl-button-active.png
new file mode 100755
index 0000000..5f7c60e
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/treeview-rtl-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/treeview-rtl-button-hover.png b/Aurora.gtk/Themes/assets-dark/treeview-rtl-button-hover.png
new file mode 100755
index 0000000..c5f0db0
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/treeview-rtl-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets-dark/treeview-rtl-button.png b/Aurora.gtk/Themes/assets-dark/treeview-rtl-button.png
new file mode 100755
index 0000000..0b0d2f3
Binary files /dev/null and b/Aurora.gtk/Themes/assets-dark/treeview-rtl-button.png differ
diff --git a/Aurora.gtk/Themes/assets.svg b/Aurora.gtk/Themes/assets.svg
new file mode 100755
index 0000000..a52aa76
--- /dev/null
+++ b/Aurora.gtk/Themes/assets.svg
@@ -0,0 +1,657 @@
+
diff --git a/Aurora.gtk/Themes/assets.txt b/Aurora.gtk/Themes/assets.txt
new file mode 100755
index 0000000..1162374
--- /dev/null
+++ b/Aurora.gtk/Themes/assets.txt
@@ -0,0 +1,151 @@
+entry-background
+entry-background-insensitive
+entry
+entry-active
+entry-insensitive
+flat-button
+flat-button-hover
+flat-button-active
+flat-button-insensitive
+button
+button-hover
+button-active
+button-insensitive
+combo-ltr-entry
+combo-ltr-entry-active
+combo-ltr-entry-insensitive
+combo-ltr-button
+combo-ltr-button-hover
+combo-ltr-button-active
+combo-ltr-button-insensitive
+combo-rtl-entry
+combo-rtl-entry-active
+combo-rtl-entry-insensitive
+combo-rtl-button
+combo-rtl-button-hover
+combo-rtl-button-active
+combo-rtl-button-insensitive
+spin-ltr-up
+spin-ltr-up-hover
+spin-ltr-up-active
+spin-ltr-up-insensitive
+spin-ltr-down
+spin-ltr-down-hover
+spin-ltr-down-active
+spin-ltr-down-insensitive
+spin-rtl-up
+spin-rtl-up-hover
+spin-rtl-up-active
+spin-rtl-up-insensitive
+spin-rtl-down
+spin-rtl-down-hover
+spin-rtl-down-active
+spin-rtl-down-insensitive
+notebook-entry
+notebook-entry-active
+notebook-entry-insensitive
+notebook-combo-ltr-entry
+notebook-combo-ltr-entry-active
+notebook-combo-ltr-entry-insensitive
+notebook-combo-rtl-entry
+notebook-combo-rtl-entry-active
+notebook-combo-rtl-entry-insensitive
+checkbox-unchecked
+checkbox-unchecked-hover
+checkbox-unchecked-active
+checkbox-unchecked-insensitive
+checkbox-checked
+checkbox-checked-hover
+checkbox-checked-active
+checkbox-checked-insensitive
+checkbox-mixed
+checkbox-mixed-hover
+checkbox-mixed-active
+checkbox-mixed-insensitive
+radio-unchecked
+radio-unchecked-hover
+radio-unchecked-active
+radio-unchecked-insensitive
+radio-checked
+radio-checked-hover
+radio-checked-active
+radio-checked-insensitive
+radio-mixed
+radio-mixed-hover
+radio-mixed-active
+radio-mixed-insensitive
+menu-checkbox-unchecked
+menu-checkbox-unchecked-insensitive
+menu-checkbox-checked
+menu-checkbox-checked-insensitive
+menu-checkbox-mixed
+menu-checkbox-mixed-insensitive
+menu-radio-unchecked
+menu-radio-unchecked-insensitive
+menu-radio-checked
+menu-radio-checked-insensitive
+menu-radio-mixed
+menu-radio-mixed-insensitive
+scale-slider
+scale-slider-hover
+scale-slider-active
+scale-slider-insensitive
+scale-horz-trough
+scale-horz-trough-active
+scale-horz-trough-insensitive
+scale-vert-trough
+scale-vert-trough-active
+scale-vert-trough-insensitive
+scrollbar-horz-slider
+scrollbar-horz-slider-hover
+scrollbar-horz-slider-active
+scrollbar-horz-slider-insensitive
+scrollbar-horz-trough
+scrollbar-vert-ltr-slider
+scrollbar-vert-ltr-slider-hover
+scrollbar-vert-ltr-slider-active
+scrollbar-vert-ltr-slider-insensitive
+scrollbar-vert-ltr-trough
+scrollbar-vert-rtl-slider
+scrollbar-vert-rtl-slider-hover
+scrollbar-vert-rtl-slider-active
+scrollbar-vert-rtl-slider-insensitive
+scrollbar-vert-rtl-trough
+handle-horz
+handle-horz-hover
+handle-horz-active
+handle-vert
+handle-vert-hover
+handle-vert-active
+pan-up
+pan-up-insensitive
+pan-up-alt
+pan-up-alt-insensitive
+pan-down
+pan-down-insensitive
+pan-down-alt
+pan-down-alt-insensitive
+pan-left
+pan-left-insensitive
+pan-left-alt
+pan-left-alt-insensitive
+pan-left-semi
+pan-right
+pan-right-insensitive
+pan-right-alt
+pan-right-alt-insensitive
+pan-right-semi
+border
+tab
+progressbar-progress
+progressbar-trough
+frame
+frame-notebook
+frame-inline
+focus
+treeview-ltr-button
+treeview-ltr-button-hover
+treeview-ltr-button-active
+treeview-rtl-button
+treeview-rtl-button-hover
+treeview-rtl-button-active
diff --git a/Aurora.gtk/Themes/assets/border.png b/Aurora.gtk/Themes/assets/border.png
new file mode 100755
index 0000000..5d2d9ca
Binary files /dev/null and b/Aurora.gtk/Themes/assets/border.png differ
diff --git a/Aurora.gtk/Themes/assets/button-active.png b/Aurora.gtk/Themes/assets/button-active.png
new file mode 100755
index 0000000..a68a2cf
Binary files /dev/null and b/Aurora.gtk/Themes/assets/button-active.png differ
diff --git a/Aurora.gtk/Themes/assets/button-hover.png b/Aurora.gtk/Themes/assets/button-hover.png
new file mode 100755
index 0000000..89cfa89
Binary files /dev/null and b/Aurora.gtk/Themes/assets/button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/button-insensitive.png b/Aurora.gtk/Themes/assets/button-insensitive.png
new file mode 100755
index 0000000..f1f0ff4
Binary files /dev/null and b/Aurora.gtk/Themes/assets/button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/button.png b/Aurora.gtk/Themes/assets/button.png
new file mode 100755
index 0000000..455cabb
Binary files /dev/null and b/Aurora.gtk/Themes/assets/button.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-checked-active.png b/Aurora.gtk/Themes/assets/checkbox-checked-active.png
new file mode 100755
index 0000000..df0fb2a
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-checked-active.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-checked-hover.png b/Aurora.gtk/Themes/assets/checkbox-checked-hover.png
new file mode 100755
index 0000000..c8c025e
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-checked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-checked-insensitive.png b/Aurora.gtk/Themes/assets/checkbox-checked-insensitive.png
new file mode 100755
index 0000000..8963156
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-checked.png b/Aurora.gtk/Themes/assets/checkbox-checked.png
new file mode 100755
index 0000000..f747595
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-checked.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-mixed-active.png b/Aurora.gtk/Themes/assets/checkbox-mixed-active.png
new file mode 100755
index 0000000..1fc825d
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-mixed-active.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-mixed-hover.png b/Aurora.gtk/Themes/assets/checkbox-mixed-hover.png
new file mode 100755
index 0000000..eea7f4b
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-mixed-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-mixed-insensitive.png b/Aurora.gtk/Themes/assets/checkbox-mixed-insensitive.png
new file mode 100755
index 0000000..7666030
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-mixed.png b/Aurora.gtk/Themes/assets/checkbox-mixed.png
new file mode 100755
index 0000000..0c2ec4e
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-unchecked-active.png b/Aurora.gtk/Themes/assets/checkbox-unchecked-active.png
new file mode 100755
index 0000000..29e4e42
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-unchecked-active.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-unchecked-hover.png b/Aurora.gtk/Themes/assets/checkbox-unchecked-hover.png
new file mode 100755
index 0000000..5ae04c0
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-unchecked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-unchecked-insensitive.png b/Aurora.gtk/Themes/assets/checkbox-unchecked-insensitive.png
new file mode 100755
index 0000000..209eaaa
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/checkbox-unchecked.png b/Aurora.gtk/Themes/assets/checkbox-unchecked.png
new file mode 100755
index 0000000..3235cbb
Binary files /dev/null and b/Aurora.gtk/Themes/assets/checkbox-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-ltr-button-active.png b/Aurora.gtk/Themes/assets/combo-ltr-button-active.png
new file mode 100755
index 0000000..73d7916
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-ltr-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-ltr-button-hover.png b/Aurora.gtk/Themes/assets/combo-ltr-button-hover.png
new file mode 100755
index 0000000..243eec4
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-ltr-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-ltr-button-insensitive.png b/Aurora.gtk/Themes/assets/combo-ltr-button-insensitive.png
new file mode 100755
index 0000000..f0143cf
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-ltr-button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-ltr-button.png b/Aurora.gtk/Themes/assets/combo-ltr-button.png
new file mode 100755
index 0000000..21ceb48
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-ltr-button.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-ltr-entry-active.png b/Aurora.gtk/Themes/assets/combo-ltr-entry-active.png
new file mode 100755
index 0000000..adeab9b
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-ltr-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-ltr-entry-insensitive.png b/Aurora.gtk/Themes/assets/combo-ltr-entry-insensitive.png
new file mode 100755
index 0000000..f81e09b
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-ltr-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-ltr-entry.png b/Aurora.gtk/Themes/assets/combo-ltr-entry.png
new file mode 100755
index 0000000..34fca32
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-ltr-entry.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-rtl-button-active.png b/Aurora.gtk/Themes/assets/combo-rtl-button-active.png
new file mode 100755
index 0000000..d49dbdf
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-rtl-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-rtl-button-hover.png b/Aurora.gtk/Themes/assets/combo-rtl-button-hover.png
new file mode 100755
index 0000000..21dd9f8
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-rtl-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-rtl-button-insensitive.png b/Aurora.gtk/Themes/assets/combo-rtl-button-insensitive.png
new file mode 100755
index 0000000..c6405f8
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-rtl-button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-rtl-button.png b/Aurora.gtk/Themes/assets/combo-rtl-button.png
new file mode 100755
index 0000000..908b4b4
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-rtl-button.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-rtl-entry-active.png b/Aurora.gtk/Themes/assets/combo-rtl-entry-active.png
new file mode 100755
index 0000000..562bb91
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-rtl-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-rtl-entry-insensitive.png b/Aurora.gtk/Themes/assets/combo-rtl-entry-insensitive.png
new file mode 100755
index 0000000..5543d69
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-rtl-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/combo-rtl-entry.png b/Aurora.gtk/Themes/assets/combo-rtl-entry.png
new file mode 100755
index 0000000..7f96ccd
Binary files /dev/null and b/Aurora.gtk/Themes/assets/combo-rtl-entry.png differ
diff --git a/Aurora.gtk/Themes/assets/entry-active.png b/Aurora.gtk/Themes/assets/entry-active.png
new file mode 100755
index 0000000..1ce076f
Binary files /dev/null and b/Aurora.gtk/Themes/assets/entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets/entry-background-insensitive.png b/Aurora.gtk/Themes/assets/entry-background-insensitive.png
new file mode 100755
index 0000000..60fe539
Binary files /dev/null and b/Aurora.gtk/Themes/assets/entry-background-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/entry-background.png b/Aurora.gtk/Themes/assets/entry-background.png
new file mode 100755
index 0000000..d7a6d76
Binary files /dev/null and b/Aurora.gtk/Themes/assets/entry-background.png differ
diff --git a/Aurora.gtk/Themes/assets/entry-insensitive.png b/Aurora.gtk/Themes/assets/entry-insensitive.png
new file mode 100755
index 0000000..fe91869
Binary files /dev/null and b/Aurora.gtk/Themes/assets/entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/entry.png b/Aurora.gtk/Themes/assets/entry.png
new file mode 100755
index 0000000..2b44035
Binary files /dev/null and b/Aurora.gtk/Themes/assets/entry.png differ
diff --git a/Aurora.gtk/Themes/assets/flat-button-active.png b/Aurora.gtk/Themes/assets/flat-button-active.png
new file mode 100755
index 0000000..d23bf0c
Binary files /dev/null and b/Aurora.gtk/Themes/assets/flat-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets/flat-button-hover.png b/Aurora.gtk/Themes/assets/flat-button-hover.png
new file mode 100755
index 0000000..bb15149
Binary files /dev/null and b/Aurora.gtk/Themes/assets/flat-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/flat-button-insensitive.png b/Aurora.gtk/Themes/assets/flat-button-insensitive.png
new file mode 100755
index 0000000..2e3cfdc
Binary files /dev/null and b/Aurora.gtk/Themes/assets/flat-button-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/flat-button.png b/Aurora.gtk/Themes/assets/flat-button.png
new file mode 100755
index 0000000..2e3cfdc
Binary files /dev/null and b/Aurora.gtk/Themes/assets/flat-button.png differ
diff --git a/Aurora.gtk/Themes/assets/focus.png b/Aurora.gtk/Themes/assets/focus.png
new file mode 100755
index 0000000..559d92c
Binary files /dev/null and b/Aurora.gtk/Themes/assets/focus.png differ
diff --git a/Aurora.gtk/Themes/assets/frame-inline.png b/Aurora.gtk/Themes/assets/frame-inline.png
new file mode 100755
index 0000000..bfb7e80
Binary files /dev/null and b/Aurora.gtk/Themes/assets/frame-inline.png differ
diff --git a/Aurora.gtk/Themes/assets/frame-notebook.png b/Aurora.gtk/Themes/assets/frame-notebook.png
new file mode 100755
index 0000000..692d82e
Binary files /dev/null and b/Aurora.gtk/Themes/assets/frame-notebook.png differ
diff --git a/Aurora.gtk/Themes/assets/frame.png b/Aurora.gtk/Themes/assets/frame.png
new file mode 100755
index 0000000..10dd5c7
Binary files /dev/null and b/Aurora.gtk/Themes/assets/frame.png differ
diff --git a/Aurora.gtk/Themes/assets/handle-horz-active.png b/Aurora.gtk/Themes/assets/handle-horz-active.png
new file mode 100755
index 0000000..ed0e6de
Binary files /dev/null and b/Aurora.gtk/Themes/assets/handle-horz-active.png differ
diff --git a/Aurora.gtk/Themes/assets/handle-horz-hover.png b/Aurora.gtk/Themes/assets/handle-horz-hover.png
new file mode 100755
index 0000000..7f3a508
Binary files /dev/null and b/Aurora.gtk/Themes/assets/handle-horz-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/handle-horz.png b/Aurora.gtk/Themes/assets/handle-horz.png
new file mode 100755
index 0000000..5c448a4
Binary files /dev/null and b/Aurora.gtk/Themes/assets/handle-horz.png differ
diff --git a/Aurora.gtk/Themes/assets/handle-vert-active.png b/Aurora.gtk/Themes/assets/handle-vert-active.png
new file mode 100755
index 0000000..9cffb90
Binary files /dev/null and b/Aurora.gtk/Themes/assets/handle-vert-active.png differ
diff --git a/Aurora.gtk/Themes/assets/handle-vert-hover.png b/Aurora.gtk/Themes/assets/handle-vert-hover.png
new file mode 100755
index 0000000..a21c1cc
Binary files /dev/null and b/Aurora.gtk/Themes/assets/handle-vert-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/handle-vert.png b/Aurora.gtk/Themes/assets/handle-vert.png
new file mode 100755
index 0000000..069ce9d
Binary files /dev/null and b/Aurora.gtk/Themes/assets/handle-vert.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-checkbox-checked-insensitive.png b/Aurora.gtk/Themes/assets/menu-checkbox-checked-insensitive.png
new file mode 100755
index 0000000..09d32c4
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-checkbox-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-checkbox-checked.png b/Aurora.gtk/Themes/assets/menu-checkbox-checked.png
new file mode 100755
index 0000000..9e2785b
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-checkbox-checked.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-checkbox-mixed-insensitive.png b/Aurora.gtk/Themes/assets/menu-checkbox-mixed-insensitive.png
new file mode 100755
index 0000000..35e4b61
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-checkbox-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-checkbox-mixed.png b/Aurora.gtk/Themes/assets/menu-checkbox-mixed.png
new file mode 100755
index 0000000..7d80131
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-checkbox-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-checkbox-unchecked-insensitive.png b/Aurora.gtk/Themes/assets/menu-checkbox-unchecked-insensitive.png
new file mode 100755
index 0000000..40441ec
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-checkbox-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-checkbox-unchecked.png b/Aurora.gtk/Themes/assets/menu-checkbox-unchecked.png
new file mode 100755
index 0000000..e956648
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-checkbox-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-radio-checked-insensitive.png b/Aurora.gtk/Themes/assets/menu-radio-checked-insensitive.png
new file mode 100755
index 0000000..8a48620
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-radio-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-radio-checked.png b/Aurora.gtk/Themes/assets/menu-radio-checked.png
new file mode 100755
index 0000000..ee73ff5
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-radio-checked.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-radio-mixed-insensitive.png b/Aurora.gtk/Themes/assets/menu-radio-mixed-insensitive.png
new file mode 100755
index 0000000..8fcb893
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-radio-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-radio-mixed.png b/Aurora.gtk/Themes/assets/menu-radio-mixed.png
new file mode 100755
index 0000000..012bc41
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-radio-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-radio-unchecked-insensitive.png b/Aurora.gtk/Themes/assets/menu-radio-unchecked-insensitive.png
new file mode 100755
index 0000000..12e487e
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-radio-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/menu-radio-unchecked.png b/Aurora.gtk/Themes/assets/menu-radio-unchecked.png
new file mode 100755
index 0000000..433752a
Binary files /dev/null and b/Aurora.gtk/Themes/assets/menu-radio-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry-active.png b/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry-active.png
new file mode 100755
index 0000000..333355c
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry-insensitive.png b/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry-insensitive.png
new file mode 100755
index 0000000..424d696
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry.png b/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry.png
new file mode 100755
index 0000000..649303d
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-combo-ltr-entry.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry-active.png b/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry-active.png
new file mode 100755
index 0000000..9d2d05f
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry-insensitive.png b/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry-insensitive.png
new file mode 100755
index 0000000..c0ed7c9
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry.png b/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry.png
new file mode 100755
index 0000000..1b592c0
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-combo-rtl-entry.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-entry-active.png b/Aurora.gtk/Themes/assets/notebook-entry-active.png
new file mode 100755
index 0000000..c3d91c8
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-entry-active.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-entry-insensitive.png b/Aurora.gtk/Themes/assets/notebook-entry-insensitive.png
new file mode 100755
index 0000000..18fdcc1
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-entry-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/notebook-entry.png b/Aurora.gtk/Themes/assets/notebook-entry.png
new file mode 100755
index 0000000..60a03fc
Binary files /dev/null and b/Aurora.gtk/Themes/assets/notebook-entry.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-down-alt-insensitive.png b/Aurora.gtk/Themes/assets/pan-down-alt-insensitive.png
new file mode 100755
index 0000000..4c12a2f
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-down-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-down-alt.png b/Aurora.gtk/Themes/assets/pan-down-alt.png
new file mode 100755
index 0000000..1fe4d25
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-down-alt.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-down-insensitive.png b/Aurora.gtk/Themes/assets/pan-down-insensitive.png
new file mode 100755
index 0000000..9a93703
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-down-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-down.png b/Aurora.gtk/Themes/assets/pan-down.png
new file mode 100755
index 0000000..91024ac
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-down.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-left-alt-insensitive.png b/Aurora.gtk/Themes/assets/pan-left-alt-insensitive.png
new file mode 100755
index 0000000..d076a81
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-left-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-left-alt.png b/Aurora.gtk/Themes/assets/pan-left-alt.png
new file mode 100755
index 0000000..2139824
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-left-alt.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-left-insensitive.png b/Aurora.gtk/Themes/assets/pan-left-insensitive.png
new file mode 100755
index 0000000..4be6f80
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-left-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-left-semi.png b/Aurora.gtk/Themes/assets/pan-left-semi.png
new file mode 100755
index 0000000..134254b
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-left-semi.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-left.png b/Aurora.gtk/Themes/assets/pan-left.png
new file mode 100755
index 0000000..956cff3
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-left.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-right-alt-insensitive.png b/Aurora.gtk/Themes/assets/pan-right-alt-insensitive.png
new file mode 100755
index 0000000..8db9075
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-right-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-right-alt.png b/Aurora.gtk/Themes/assets/pan-right-alt.png
new file mode 100755
index 0000000..bc082e9
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-right-alt.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-right-insensitive.png b/Aurora.gtk/Themes/assets/pan-right-insensitive.png
new file mode 100755
index 0000000..6d2fa6f
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-right-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-right-semi.png b/Aurora.gtk/Themes/assets/pan-right-semi.png
new file mode 100755
index 0000000..7495986
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-right-semi.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-right.png b/Aurora.gtk/Themes/assets/pan-right.png
new file mode 100755
index 0000000..3eaf3c8
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-right.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-up-alt-insensitive.png b/Aurora.gtk/Themes/assets/pan-up-alt-insensitive.png
new file mode 100755
index 0000000..e32044f
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-up-alt-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-up-alt.png b/Aurora.gtk/Themes/assets/pan-up-alt.png
new file mode 100755
index 0000000..c5cc3a3
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-up-alt.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-up-insensitive.png b/Aurora.gtk/Themes/assets/pan-up-insensitive.png
new file mode 100755
index 0000000..30e1dcc
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-up-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/pan-up.png b/Aurora.gtk/Themes/assets/pan-up.png
new file mode 100755
index 0000000..fd41f15
Binary files /dev/null and b/Aurora.gtk/Themes/assets/pan-up.png differ
diff --git a/Aurora.gtk/Themes/assets/progressbar-progress.png b/Aurora.gtk/Themes/assets/progressbar-progress.png
new file mode 100755
index 0000000..d27bb6c
Binary files /dev/null and b/Aurora.gtk/Themes/assets/progressbar-progress.png differ
diff --git a/Aurora.gtk/Themes/assets/progressbar-trough.png b/Aurora.gtk/Themes/assets/progressbar-trough.png
new file mode 100755
index 0000000..b257089
Binary files /dev/null and b/Aurora.gtk/Themes/assets/progressbar-trough.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-checked-active.png b/Aurora.gtk/Themes/assets/radio-checked-active.png
new file mode 100755
index 0000000..2eae3dd
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-checked-active.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-checked-hover.png b/Aurora.gtk/Themes/assets/radio-checked-hover.png
new file mode 100755
index 0000000..0ff99bc
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-checked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-checked-insensitive.png b/Aurora.gtk/Themes/assets/radio-checked-insensitive.png
new file mode 100755
index 0000000..901626a
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-checked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-checked.png b/Aurora.gtk/Themes/assets/radio-checked.png
new file mode 100755
index 0000000..dc7ad42
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-checked.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-mixed-active.png b/Aurora.gtk/Themes/assets/radio-mixed-active.png
new file mode 100755
index 0000000..2594bef
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-mixed-active.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-mixed-hover.png b/Aurora.gtk/Themes/assets/radio-mixed-hover.png
new file mode 100755
index 0000000..367ecb6
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-mixed-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-mixed-insensitive.png b/Aurora.gtk/Themes/assets/radio-mixed-insensitive.png
new file mode 100755
index 0000000..aa9a2f2
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-mixed-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-mixed.png b/Aurora.gtk/Themes/assets/radio-mixed.png
new file mode 100755
index 0000000..6772f69
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-mixed.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-unchecked-active.png b/Aurora.gtk/Themes/assets/radio-unchecked-active.png
new file mode 100755
index 0000000..91f4d30
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-unchecked-active.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-unchecked-hover.png b/Aurora.gtk/Themes/assets/radio-unchecked-hover.png
new file mode 100755
index 0000000..7f2e573
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-unchecked-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-unchecked-insensitive.png b/Aurora.gtk/Themes/assets/radio-unchecked-insensitive.png
new file mode 100755
index 0000000..428f6d1
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-unchecked-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/radio-unchecked.png b/Aurora.gtk/Themes/assets/radio-unchecked.png
new file mode 100755
index 0000000..ed0e1fb
Binary files /dev/null and b/Aurora.gtk/Themes/assets/radio-unchecked.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-horz-trough-active.png b/Aurora.gtk/Themes/assets/scale-horz-trough-active.png
new file mode 100755
index 0000000..dcbea6e
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-horz-trough-active.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-horz-trough-insensitive.png b/Aurora.gtk/Themes/assets/scale-horz-trough-insensitive.png
new file mode 100755
index 0000000..c84a0d8
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-horz-trough-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-horz-trough.png b/Aurora.gtk/Themes/assets/scale-horz-trough.png
new file mode 100755
index 0000000..688d158
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-horz-trough.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-slider-active.png b/Aurora.gtk/Themes/assets/scale-slider-active.png
new file mode 100755
index 0000000..a2b7bb9
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-slider-hover.png b/Aurora.gtk/Themes/assets/scale-slider-hover.png
new file mode 100755
index 0000000..ba5d993
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-slider-insensitive.png b/Aurora.gtk/Themes/assets/scale-slider-insensitive.png
new file mode 100755
index 0000000..7a9ae61
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-slider.png b/Aurora.gtk/Themes/assets/scale-slider.png
new file mode 100755
index 0000000..5e9fdec
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-slider.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-vert-trough-active.png b/Aurora.gtk/Themes/assets/scale-vert-trough-active.png
new file mode 100755
index 0000000..9a0ec10
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-vert-trough-active.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-vert-trough-insensitive.png b/Aurora.gtk/Themes/assets/scale-vert-trough-insensitive.png
new file mode 100755
index 0000000..a198f2d
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-vert-trough-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/scale-vert-trough.png b/Aurora.gtk/Themes/assets/scale-vert-trough.png
new file mode 100755
index 0000000..30c074c
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scale-vert-trough.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-horz-slider-active.png b/Aurora.gtk/Themes/assets/scrollbar-horz-slider-active.png
new file mode 100755
index 0000000..c75b311
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-horz-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-horz-slider-hover.png b/Aurora.gtk/Themes/assets/scrollbar-horz-slider-hover.png
new file mode 100755
index 0000000..62fe658
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-horz-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-horz-slider-insensitive.png b/Aurora.gtk/Themes/assets/scrollbar-horz-slider-insensitive.png
new file mode 100755
index 0000000..cdc6f1e
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-horz-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-horz-slider.png b/Aurora.gtk/Themes/assets/scrollbar-horz-slider.png
new file mode 100755
index 0000000..c3e1cc3
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-horz-slider.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-horz-trough.png b/Aurora.gtk/Themes/assets/scrollbar-horz-trough.png
new file mode 100755
index 0000000..add06a4
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-horz-trough.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-active.png b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-active.png
new file mode 100755
index 0000000..3443f19
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-hover.png b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-hover.png
new file mode 100755
index 0000000..b6ccfc2
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-insensitive.png b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-insensitive.png
new file mode 100755
index 0000000..ca849de
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider.png b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider.png
new file mode 100755
index 0000000..cb47721
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-slider.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-trough.png b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-trough.png
new file mode 100755
index 0000000..6b6e359
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-ltr-trough.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-active.png b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-active.png
new file mode 100755
index 0000000..8044e69
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-active.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-hover.png b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-hover.png
new file mode 100755
index 0000000..04980a2
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-insensitive.png b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-insensitive.png
new file mode 100755
index 0000000..b8bc0c0
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider.png b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider.png
new file mode 100755
index 0000000..2b25b3d
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-slider.png differ
diff --git a/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-trough.png b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-trough.png
new file mode 100755
index 0000000..5156424
Binary files /dev/null and b/Aurora.gtk/Themes/assets/scrollbar-vert-rtl-trough.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-down-active.png b/Aurora.gtk/Themes/assets/spin-ltr-down-active.png
new file mode 100755
index 0000000..63cbce6
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-down-active.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-down-hover.png b/Aurora.gtk/Themes/assets/spin-ltr-down-hover.png
new file mode 100755
index 0000000..aaf3760
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-down-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-down-insensitive.png b/Aurora.gtk/Themes/assets/spin-ltr-down-insensitive.png
new file mode 100755
index 0000000..dc2fc26
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-down-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-down.png b/Aurora.gtk/Themes/assets/spin-ltr-down.png
new file mode 100755
index 0000000..939dd43
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-down.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-up-active.png b/Aurora.gtk/Themes/assets/spin-ltr-up-active.png
new file mode 100755
index 0000000..82a1f81
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-up-active.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-up-hover.png b/Aurora.gtk/Themes/assets/spin-ltr-up-hover.png
new file mode 100755
index 0000000..162d8f8
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-up-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-up-insensitive.png b/Aurora.gtk/Themes/assets/spin-ltr-up-insensitive.png
new file mode 100755
index 0000000..a5f2507
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-up-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-ltr-up.png b/Aurora.gtk/Themes/assets/spin-ltr-up.png
new file mode 100755
index 0000000..f4a506b
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-ltr-up.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-down-active.png b/Aurora.gtk/Themes/assets/spin-rtl-down-active.png
new file mode 100755
index 0000000..ed71e41
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-down-active.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-down-hover.png b/Aurora.gtk/Themes/assets/spin-rtl-down-hover.png
new file mode 100755
index 0000000..cf2227a
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-down-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-down-insensitive.png b/Aurora.gtk/Themes/assets/spin-rtl-down-insensitive.png
new file mode 100755
index 0000000..334e9b2
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-down-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-down.png b/Aurora.gtk/Themes/assets/spin-rtl-down.png
new file mode 100755
index 0000000..18d2f78
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-down.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-up-active.png b/Aurora.gtk/Themes/assets/spin-rtl-up-active.png
new file mode 100755
index 0000000..fc59be9
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-up-active.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-up-hover.png b/Aurora.gtk/Themes/assets/spin-rtl-up-hover.png
new file mode 100755
index 0000000..a2d6c58
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-up-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-up-insensitive.png b/Aurora.gtk/Themes/assets/spin-rtl-up-insensitive.png
new file mode 100755
index 0000000..78510c4
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-up-insensitive.png differ
diff --git a/Aurora.gtk/Themes/assets/spin-rtl-up.png b/Aurora.gtk/Themes/assets/spin-rtl-up.png
new file mode 100755
index 0000000..9b9de65
Binary files /dev/null and b/Aurora.gtk/Themes/assets/spin-rtl-up.png differ
diff --git a/Aurora.gtk/Themes/assets/tab.png b/Aurora.gtk/Themes/assets/tab.png
new file mode 100755
index 0000000..c18e718
Binary files /dev/null and b/Aurora.gtk/Themes/assets/tab.png differ
diff --git a/Aurora.gtk/Themes/assets/treeview-ltr-button-active.png b/Aurora.gtk/Themes/assets/treeview-ltr-button-active.png
new file mode 100755
index 0000000..bedb8e2
Binary files /dev/null and b/Aurora.gtk/Themes/assets/treeview-ltr-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets/treeview-ltr-button-hover.png b/Aurora.gtk/Themes/assets/treeview-ltr-button-hover.png
new file mode 100755
index 0000000..09894d0
Binary files /dev/null and b/Aurora.gtk/Themes/assets/treeview-ltr-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/treeview-ltr-button.png b/Aurora.gtk/Themes/assets/treeview-ltr-button.png
new file mode 100755
index 0000000..fb67848
Binary files /dev/null and b/Aurora.gtk/Themes/assets/treeview-ltr-button.png differ
diff --git a/Aurora.gtk/Themes/assets/treeview-rtl-button-active.png b/Aurora.gtk/Themes/assets/treeview-rtl-button-active.png
new file mode 100755
index 0000000..7a78a4d
Binary files /dev/null and b/Aurora.gtk/Themes/assets/treeview-rtl-button-active.png differ
diff --git a/Aurora.gtk/Themes/assets/treeview-rtl-button-hover.png b/Aurora.gtk/Themes/assets/treeview-rtl-button-hover.png
new file mode 100755
index 0000000..89e781d
Binary files /dev/null and b/Aurora.gtk/Themes/assets/treeview-rtl-button-hover.png differ
diff --git a/Aurora.gtk/Themes/assets/treeview-rtl-button.png b/Aurora.gtk/Themes/assets/treeview-rtl-button.png
new file mode 100755
index 0000000..e223350
Binary files /dev/null and b/Aurora.gtk/Themes/assets/treeview-rtl-button.png differ
diff --git a/Aurora.gtk/Themes/gtkrc b/Aurora.gtk/Themes/gtkrc
new file mode 100755
index 0000000..ab9c56f
--- /dev/null
+++ b/Aurora.gtk/Themes/gtkrc
@@ -0,0 +1,32 @@
+# Based on Bridge by ScionicSpectre and Adwaita by GNOME
+# vim:set ts=2 sw=2 sts=2 ai et:
+#
+# This is the GTK+ 2 version of Flat-Plat. It's whole purpose is to look as the
+# GTK+ 3 version as much as possible until GTK+ 2 dies completely.
+#
+# Note: comments for explaining styles are on the bottom of each file beside the
+# widget matches.
+
+# Declare the colours used throughout the theme.
+# There shouldn't be any fiddling with them in the theme files themselves in
+# order to not mess up the dark theme.
+
+# Text/base
+gtk-color-scheme = "text_color:#212121\nbase_color:#FFFFFF"
+# Foreground/background
+gtk-color-scheme = "fg_color:#212121\nbg_color:#F5F5F5"
+# Selected foreground/background
+gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#42A5F5"
+# Titlebar foreground/background
+gtk-color-scheme = "titlebar_fg_color:#FFFFFF\ntitlebar_bg_color:#455A64"
+# Links
+gtk-color-scheme = "link_color:#42A5F5\nvisited_link_color:#E040FB"
+
+# Set GTK settings
+gtk-auto-mnemonics = 1
+gtk-primary-button-warps-slider = 1
+
+# And hand over the control to the theme files
+include "main.rc"
+include "apps.rc"
+include "hacks.rc"
diff --git a/Aurora.gtk/Themes/gtkrc-dark b/Aurora.gtk/Themes/gtkrc-dark
new file mode 100755
index 0000000..8d838d7
--- /dev/null
+++ b/Aurora.gtk/Themes/gtkrc-dark
@@ -0,0 +1,32 @@
+# Based on Bridge by ScionicSpectre and Adwaita by GNOME
+# vim:set ts=2 sw=2 sts=2 ai et:
+#
+# This is the GTK+ 2 version of Flat-Plat. It's whole purpose is to look as the
+# GTK+ 3 version as much as possible until GTK+ 2 dies completely.
+#
+# Note: comments for explaining styles are on the bottom of each file beside the
+# widget matches.
+
+# Declare the colours used throughout the theme.
+# There shouldn't be any fiddling with them in the theme files themselves in
+# order to not mess up the dark theme.
+
+# Text/base
+gtk-color-scheme = "text_color:#FFFFFF\nbase_color:#50636c"
+# Foreground/background
+gtk-color-scheme = "fg_color:#FFFFFF\nbg_color:#44545c"
+# Selected foreground/background
+gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#42A5F5"
+# Titlebar foreground/background
+gtk-color-scheme = "titlebar_fg_color:#FFFFFF\ntitlebar_bg_color:#37474F"
+# Links
+gtk-color-scheme = "link_color:#42A5F5\nvisited_link_color:#E040FB"
+
+# Set GTK settings
+gtk-auto-mnemonics = 1
+gtk-primary-button-warps-slider = 1
+
+# And hand over the control to the theme files
+include "main.rc"
+include "apps.rc"
+include "hacks.rc"
diff --git a/Aurora.gtk/Themes/gtkrc-light b/Aurora.gtk/Themes/gtkrc-light
new file mode 100755
index 0000000..9ad718a
--- /dev/null
+++ b/Aurora.gtk/Themes/gtkrc-light
@@ -0,0 +1,32 @@
+# Based on Bridge by ScionicSpectre and Adwaita by GNOME
+# vim:set ts=2 sw=2 sts=2 ai et:
+#
+# This is the GTK+ 2 version of Flat-Plat. It's whole purpose is to look as the
+# GTK+ 3 version as much as possible until GTK+ 2 dies completely.
+#
+# Note: comments for explaining styles are on the bottom of each file beside the
+# widget matches.
+
+# Declare the colours used throughout the theme.
+# There shouldn't be any fiddling with them in the theme files themselves in
+# order to not mess up the dark theme.
+
+# Text/base
+gtk-color-scheme = "text_color:#212121\nbase_color:#FFFFFF"
+# Foreground/background
+gtk-color-scheme = "fg_color:#212121\nbg_color:#F5F5F5"
+# Selected foreground/background
+gtk-color-scheme = "selected_fg_color:#FFFFFF\nselected_bg_color:#42A5F5"
+# Titlebar foreground/background
+gtk-color-scheme = "titlebar_fg_color:#212121\ntitlebar_bg_color:#E0E0E0"
+# Links
+gtk-color-scheme = "link_color:#42A5F5\nvisited_link_color:#E040FB"
+
+# Set GTK settings
+gtk-auto-mnemonics = 1
+gtk-primary-button-warps-slider = 1
+
+# And hand over the control to the theme files
+include "main.rc"
+include "apps.rc"
+include "hacks.rc"
diff --git a/Aurora.gtk/Themes/hacks.rc b/Aurora.gtk/Themes/hacks.rc
new file mode 100755
index 0000000..96eb088
--- /dev/null
+++ b/Aurora.gtk/Themes/hacks.rc
@@ -0,0 +1,36 @@
+# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et:
+#
+# This file contains horrible hacks to make this theme work with some programs
+# This is mostly due to the limitations of gtk2 but sometimes its the fault of
+# the programs themselves. Not going to point fingers.
+#
+# Either way, it's a WONTFIX for both, hence this horrible file.
+
+style "toplevel_hack" {
+ engine "adwaita" {}
+}
+
+style "chrome_entry" {
+ base[NORMAL] = @base_color
+ base[INSENSITIVE] = @base_color
+}
+
+style "vim_notebook" {
+ bg[NORMAL] = @base_color
+ bg[ACTIVE] = @bg_color
+}
+
+# Vim puts an eventbox between the tab and the label and colours it,
+# we need to handle that
+widget "vim-main-window*GtkNotebook.GtkEventBox" style "vim_notebook"
+
+# (he)xchat input box
+class "SexySpellEntry" style:highest "normal_entry"
+
+# Chromium uses base as the fill colour of its own entries
+# This would be fine but Gtk+ uses it to fill the surrounding space, so its set to bg
+# That results in Chromium using it for the fill, so we need to handle that
+widget_class "*Chrom*" style "chrome_entry"
+
+# Hack to be able to match widgets in LibreOffice
+class "GtkWindow" style "toplevel_hack"
diff --git a/Aurora.gtk/Themes/main.rc b/Aurora.gtk/Themes/main.rc
new file mode 100755
index 0000000..3658fe5
--- /dev/null
+++ b/Aurora.gtk/Themes/main.rc
@@ -0,0 +1,2781 @@
+# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et:
+#
+# This is the main theme file, handling all the default widgets and theme
+# properties. Since GTK+ 2 is old, we need to overcome some of its limitations,
+# which is also mostly done in this file. Sadly not all of them can be overcome
+# so there will always be a visible difference between the GTK+ 2 and 3 theme.
+
+style "default" {
+ xthickness = 1
+ ythickness = 1
+
+ ####################
+ # Style Properties #
+ ####################
+
+ GtkWidget::focus-padding = 0
+ GtkWidget::focus-line-width = 2
+ GtkWidget::focus-line-pattern = "\2\1"
+
+ GtkToolbar::space-size = 5 # 1 + 2*2 (separator + margins)
+ GtkToolbar::internal-padding = 2
+ GtkToolButton::icon-spacing = 4
+
+ GtkWidget::tooltip-radius = 2
+ GtkWidget::tooltip-alpha = 230
+ GtkWidget::new-tooltip-style = 1 #for compatibility
+
+ GtkWidget::link-color = @link_color
+ GtkWidget::visited-link-color = @visited_link_color
+ GnomeHRef::link_color = @link_color
+ GtkHTML::link-color = @link_color
+ GtkHTML::vlink-color = @visited_link_color
+ GtkIMHtml::hyperlink-color = @link_color
+ GtkIMHtml::hyperlink-visited-color = @visited_link_color
+
+ GtkSeparatorMenuItem::horizontal-padding = 0
+ GtkSeparatorMenuItem::wide-separators = 1
+ GtkSeparatorMenuItem::separator-height = 3
+
+ GtkButton::child-displacement-y = 0
+
+ GtkButton::default-border = {0, 0, 0, 0}
+ GtkButton::default-outside-border = {0, 0, 0, 0}
+ GtkButton::inner-border = {4, 4, 4, 4}
+
+ GtkEntry::state-hint = 1
+ GtkEntry::inner-border = {4, 4, 4, 4}
+
+ GtkPaned::handle-size = 8
+ GtkHPaned::handle-size = 8
+ GtkVPaned::handle-size = 8
+
+ GtkScrollbar::trough-border = 0
+ GtkRange::trough-border = 0
+ GtkRange::slider-width = 17
+ GtkRange::stepper-size = 0
+ GtkRange::activate-slider = 1
+
+ GtkScrollbar::activate-slider = 1
+ GtkScrollbar::stepper-size = 0
+ GtkScrollbar::has-backward-stepper = 0
+ GtkScrollbar::has-forward-stepper = 0
+ GtkScrollbar::min-slider-length = 32 # 24 + 2*4 (margins)
+ GtkScrolledWindow::scrollbar-spacing = 0
+ GtkScrolledWindow::scrollbars-within-bevel = 1
+
+ GtkScale::slider_length = 24
+ GtkScale::slider_width = 24
+ GtkScale::trough-side-details = 1
+
+ GtkProgressBar::min-horizontal-bar-height = 4
+ GtkProgressBar::min-vertical-bar-width = 4
+ GtkProgressBar::xspacing = 4
+ GtkProgressBar::yspacing = 4
+
+ GtkStatusbar::shadow_type = GTK_SHADOW_NONE
+ GtkSpinButton::shadow_type = GTK_SHADOW_NONE
+ GtkMenuBar::shadow-type = GTK_SHADOW_NONE
+ GtkToolbar::shadow-type = GTK_SHADOW_NONE
+ # TODO: find out what this comment means:
+ # ( every window is misaligned for the sake of menus ):
+ GtkMenuBar::internal-padding = 0
+ GtkMenu::horizontal-padding = 0
+ GtkMenu::vertical-padding = 4
+ GtkMenu::double-arrows = 0
+ GtkMenuItem::arrow-scaling = 1
+ GtkMenuItem::toggle-spacing = 12
+
+ GtkCheckButton::indicator-size = 24
+ GtkCheckButton::indicator_spacing = 2
+ GtkOptionMenu::indicator_spacing = {10, 10, 6, 6}
+
+ GtkTreeView::expander-size = 16
+ GtkTreeView::vertical-separator = 0
+ GtkTreeView::horizontal-separator = 4
+ GtkTreeView::allow-rules = 0
+ # Set this because some apps read it
+ GtkTreeView::odd-row-color = @base_color
+ GtkTreeView::even-row-color = @base_color
+
+ GtkExpander::expander-size = 16
+
+ GtkNotebook::tab-overlap = 0
+
+ ##########
+ # Colors #
+ ##########
+
+ bg[NORMAL] = @bg_color
+ bg[PRELIGHT] = @bg_color
+ bg[SELECTED] = @selected_bg_color
+ bg[INSENSITIVE] = @bg_color
+ bg[ACTIVE] = @bg_color
+
+ fg[NORMAL] = @fg_color
+ fg[PRELIGHT] = @fg_color
+ fg[SELECTED] = @selected_fg_color
+ fg[INSENSITIVE] = mix (0.4, @fg_color, @bg_color)
+ fg[ACTIVE] = @fg_color
+
+ text[NORMAL] = @text_color
+ text[PRELIGHT] = @text_color
+ text[SELECTED] = @selected_fg_color
+ text[INSENSITIVE] = mix (0.4, @text_color, @base_color)
+ text[ACTIVE] = @selected_fg_color
+
+ base[NORMAL] = @base_color
+ base[PRELIGHT] = mix (0.05, @text_color, @base_color)
+ base[SELECTED] = @selected_bg_color
+ base[INSENSITIVE] = mix (0.5, @base_color, @bg_color)
+ base[ACTIVE] = @selected_bg_color
+
+ # For succinctness, all reasonable pixmap options remain here
+
+ # Draw frame around menu in a non-compositied environment
+ # This needs to go before pixmap because we need to override some stuff
+ engine "adwaita" {}
+
+ engine "pixmap" {
+
+ #################
+ # Check Buttons #
+ #################
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = SELECTED
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/checkbox-unchecked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/checkbox-checked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/checkbox-checked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = SELECTED
+ shadow = IN
+ overlay_file = "assets/checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/checkbox-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = SELECTED
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/checkbox-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ #################
+ # Radio Buttons #
+ #################
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = SELECTED
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/radio-unchecked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/radio-checked-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/radio-checked-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = SELECTED
+ shadow = IN
+ overlay_file = "assets/radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/radio-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed-hover.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed-active.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = SELECTED
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/radio-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ ##########
+ # Arrows #
+ ##########
+
+ # Overrides
+
+ # Disable arrows in spinbuttons
+ image {
+ function = ARROW
+ detail = "spinbutton"
+ }
+
+ # Disable arrows for qt in scrollbars
+
+ image {
+ function = ARROW
+ detail = "vscrollbar"
+ }
+
+ image {
+ function = ARROW
+ detail = "hscrollbar"
+ }
+
+ # Menu arrows
+
+ image {
+ function = ARROW
+ state = NORMAL
+ detail = "menuitem"
+ overlay_file = "assets/pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ detail = "menuitem"
+ overlay_file = "assets/pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menuitem"
+ overlay_file = "assets/pan-left-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ detail = "menuitem"
+ overlay_file = "assets/pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ detail = "menuitem"
+ overlay_file = "assets/pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menuitem"
+ overlay_file = "assets/pan-right-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menu_scroll_arrow_up"
+ overlay_file = "assets/pan-up-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = ARROW
+ detail = "menu_scroll_arrow_up"
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ detail = "menu_scroll_arrow_down"
+ overlay_file = "assets/pan-down-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = ARROW
+ detail = "menu_scroll_arrow_down"
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ # Regular arrows
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-up-alt.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-up-alt-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-down-alt.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-down-alt-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-left-alt.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-left.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-left-alt-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = LEFT
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-right-alt.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-right.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ image {
+ function = ARROW
+ state = INSENSITIVE
+ overlay_file = "assets/pan-right-alt-insensitive.png"
+ overlay_stretch = FALSE
+ arrow_direction = RIGHT
+ }
+
+ ######################
+ # Option Menu Arrows #
+ ######################
+
+ image {
+ function = TAB
+ state = NORMAL
+ overlay_file = "assets/pan-down-alt.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = TAB
+ state = PRELIGHT
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = TAB
+ state = ACTIVE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = TAB
+ state = INSENSITIVE
+ overlay_file = "assets/pan-down-alt-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ #########
+ # Lines #
+ #########
+
+ image {
+ function = VLINE
+ file = "assets/border.png"
+ border = {1, 0, 0, 0}
+ }
+
+ image {
+ function = HLINE
+ file = "assets/border.png"
+ border = {0, 0, 1, 0}
+ }
+
+ #########
+ # Focus #
+ #########
+
+ image {
+ function = FOCUS
+ file = "assets/focus.png"
+ border = {2, 2, 2, 2}
+ stretch = TRUE
+ }
+
+ ###########
+ # Handles #
+ ###########
+
+ image {
+ function = HANDLE
+ detail = "handlebox"
+ overlay_file = "assets/handle-vert.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = HANDLE
+ state = NORMAL
+ overlay_file = "assets/handle-horz.png"
+ overlay_stretch = FALSE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = HANDLE
+ state = PRELIGHT
+ overlay_file = "assets/handle-horz-hover.png"
+ overlay_stretch = FALSE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = HANDLE
+ state = ACTIVE
+ overlay_file = "assets/handle-horz-active.png"
+ overlay_stretch = FALSE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = HANDLE
+ state = NORMAL
+ overlay_file = "assets/handle-vert.png"
+ overlay_stretch = FALSE
+ orientation = VERTICAL
+ }
+
+ image {
+ function = HANDLE
+ state = PRELIGHT
+ overlay_file = "assets/handle-vert-hover.png"
+ overlay_stretch = FALSE
+ orientation = VERTICAL
+ }
+
+ image {
+ function = HANDLE
+ state = ACTIVE
+ overlay_file = "assets/handle-vert-active.png"
+ overlay_stretch = FALSE
+ orientation = VERTICAL
+ }
+
+ image {
+ function = RESIZE_GRIP
+ }
+
+ #############
+ # Expanders #
+ #############
+
+ image {
+ function = EXPANDER
+ expander_style = EXPANDED
+ state = NORMAL
+ file = "assets/pan-down-alt.png"
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = EXPANDED
+ state = PRELIGHT
+ file = "assets/pan-down.png"
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = EXPANDED
+ state = ACTIVE
+ file = "assets/pan-down.png"
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = EXPANDED
+ state = INSENSITIVE
+ file = "assets/pan-down-alt-insensitive.png"
+ }
+
+ # LTR
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = NORMAL
+ file = "assets/pan-right-alt.png"
+ direction = LTR
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = PRELIGHT
+ file = "assets/pan-right.png"
+ direction = LTR
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = ACTIVE
+ file = "assets/pan-right.png"
+ direction = LTR
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = INSENSITIVE
+ file = "assets/pan-right-alt-insensitive.png"
+ direction = LTR
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_COLLAPSED
+ file = "assets/pan-right-semi.png"
+ direction = LTR
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_EXPANDED
+ file = "assets/pan-right-semi.png"
+ direction = LTR
+ }
+
+ # RTL
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = NORMAL
+ file = "assets/pan-left-alt.png"
+ direction = RTL
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = PRELIGHT
+ file = "assets/pan-left.png"
+ direction = RTL
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = ACTIVE
+ file = "assets/pan-left.png"
+ direction = RTL
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = COLLAPSED
+ state = INSENSITIVE
+ file = "assets/pan-left-alt-insensitive.png"
+ direction = RTL
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_COLLAPSED
+ file = "assets/pan-left-semi.png"
+ direction = RTL
+ }
+
+ image {
+ function = EXPANDER
+ expander_style = SEMI_EXPANDED
+ file = "assets/pan-left-semi.png"
+ direction = RTL
+ }
+
+ #############
+ # Notebooks #
+ #############
+
+ # Left
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab.png"
+ border = {0, 1, 0, 0}
+ stretch = TRUE
+ gap_side = RIGHT
+ }
+
+ image {
+ function = EXTENSION
+ gap_side = RIGHT
+ }
+
+ # Right
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab.png"
+ border = {1, 0, 0, 0}
+ stretch = TRUE
+ gap_side = LEFT
+ }
+
+ image {
+ function = EXTENSION
+ gap_side = LEFT
+ }
+
+ # Up
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab.png"
+ border = {0, 0, 0, 1}
+ stretch = TRUE
+ gap_side = BOTTOM
+ }
+
+ image {
+ function = EXTENSION
+ gap_side = BOTTOM
+ }
+
+ # Down
+
+ image {
+ function = EXTENSION
+ state = NORMAL
+ file = "assets/tab.png"
+ border = {0, 0, 1, 0}
+ stretch = TRUE
+ gap_side = TOP
+ }
+
+ image {
+ function = EXTENSION
+ gap_side = TOP
+ }
+
+ # Inner frame
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab.png"
+ gap_border = {1, 0, 0, 0}
+ gap_side = LEFT
+ }
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab.png"
+ gap_border = {0, 1, 0, 0}
+ gap_side = RIGHT
+ }
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab.png"
+ gap_border = {0, 0, 1, 0}
+ gap_side = TOP
+ }
+
+ image {
+ function = BOX_GAP
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_file = "assets/tab.png"
+ gap_border = {0, 0, 0, 1}
+ gap_side = BOTTOM
+ }
+
+ # Standalone frame
+ image {
+ function = BOX
+ detail = "notebook"
+ file = "assets/frame-notebook.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ }
+
+ ##############
+ # Scrollbars #
+ ##############
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/scrollbar-horz-trough.png"
+ border = {0, 0, 1, 0}
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/scrollbar-vert-ltr-trough.png"
+ border = {1, 0, 0, 0}
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/scrollbar-vert-rtl-trough.png"
+ border = {0, 1, 0, 0}
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ # Horizontal sliders
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "slider"
+ file = "assets/scrollbar-horz-slider.png"
+ border = {8, 8, 9, 8 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "slider"
+ file = "assets/scrollbar-horz-slider-hover.png"
+ border = {8, 8, 9, 8 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "slider"
+ file = "assets/scrollbar-horz-slider-active.png"
+ border = {8, 8, 9, 8 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "slider"
+ file = "assets/scrollbar-horz-slider-insensitive.png"
+ border = {8, 8, 9, 8 }
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ # Vertical sliders
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "slider"
+ file = "assets/scrollbar-vert-ltr-slider.png"
+ border = {9, 8, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "slider"
+ file = "assets/scrollbar-vert-ltr-slider-hover.png"
+ border = {9, 8, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "slider"
+ file = "assets/scrollbar-vert-ltr-slider-active.png"
+ border = {9, 8, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "slider"
+ file = "assets/scrollbar-vert-ltr-slider-insensitive.png"
+ border = {9, 8, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = LTR
+ }
+
+ # RTL
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "slider"
+ file = "assets/scrollbar-vert-rtl-slider.png"
+ border = {8, 9, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "slider"
+ file = "assets/scrollbar-vert-rtl-slider-hover.png"
+ border = {8, 9, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "slider"
+ file = "assets/scrollbar-vert-rtl-slider-active.png"
+ border = {8, 9, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "slider"
+ file = "assets/scrollbar-vert-rtl-slider-insensitive.png"
+ border = {8, 9, 8, 8}
+ stretch = TRUE
+ orientation = VERTICAL
+ direction = RTL
+ }
+
+ ##########
+ # Scales #
+ ##########
+
+ # Troughs, overrided later on. We set them here too because some widgets
+ # don't specify their orientation.
+
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-horz-trough.png"
+ border = {6, 6, 0, 0}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "trough-upper"
+ file = "assets/scale-horz-trough-insensitive.png"
+ border = {6, 6, 0, 0}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-horz-trough-active.png"
+ border = {6, 6, 0, 0}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "trough-lower"
+ file = "assets/scale-horz-trough-insensitive.png"
+ border = {6, 6, 0, 0}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-vert-trough.png"
+ border = {0, 0, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "trough-upper"
+ file = "assets/scale-vert-trough-insensitive.png"
+ border = {0, 0, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-vert-trough-active.png"
+ border = {0, 0, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "trough-lower"
+ file = "assets/scale-vert-trough-insensitive.png"
+ border = {0, 0, 6, 6}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+
+ # Sliders
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "hscale"
+ file = "assets/scale-slider.png"
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "hscale"
+ file = "assets/scale-slider-hover.png"
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "hscale"
+ file = "assets/scale-slider-active.png"
+ }
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "hscale"
+ file = "assets/scale-slider-insensitive.png"
+ }
+
+ image {
+ function = SLIDER
+ state = NORMAL
+ detail = "vscale"
+ file = "assets/scale-slider.png"
+ }
+
+ image {
+ function = SLIDER
+ state = PRELIGHT
+ detail = "vscale"
+ file = "assets/scale-slider-hover.png"
+ }
+
+ image {
+ function = SLIDER
+ state = ACTIVE
+ detail = "vscale"
+ file = "assets/scale-slider-active.png"
+ }
+
+ image {
+ function = SLIDER
+ state = INSENSITIVE
+ detail = "vscale"
+ file = "assets/scale-slider-insensitive.png"
+ }
+
+ ###########
+ # Menubar #
+ ###########
+
+ # image {
+ # function = BOX
+ # detail = "menubar"
+ # file = "assets/border.png"
+ # border = {0, 0, 0, 1}
+ # }
+
+ #########
+ # Menus #
+ #########
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "menu_scroll_arrow_up"
+ file = "assets/border.png"
+ }
+
+ image {
+ function = BOX
+ detail = "menu_scroll_arrow_up"
+ file = "assets/border.png"
+ border = {0, 0, 0, 1}
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "menu_scroll_arrow_down"
+ file = "assets/border.png"
+ }
+
+ image {
+ function = BOX
+ detail = "menu_scroll_arrow_down"
+ file = "assets/border.png"
+ border = {0, 0, 1, 0}
+ }
+
+ ###########
+ # Entries #
+ ###########
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/entry-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/entry-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ file = "assets/entry.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = FLAT_BOX
+ state = ACTIVE
+ detail = "entry_bg"
+ file = "assets/entry-background.png"
+ }
+
+ image {
+ function = FLAT_BOX
+ state = INSENSITIVE
+ detail = "entry_bg"
+ file = "assets/entry-background-insensitive.png"
+ }
+
+ image {
+ function = FLAT_BOX
+ detail = "entry_bg"
+ file = "assets/entry-background.png"
+ }
+
+ #########
+ # Spins #
+ #########
+
+ # Spin-Up LTR
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up.png"
+ border = {0, 8, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up-alt.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up-hover.png"
+ border = {0, 8, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up-active.png"
+ border = {0, 8, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-ltr-up-insensitive.png"
+ border = {0, 8, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up-alt-insensitive.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ # Spin-Up RTL
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up.png"
+ border = {8, 0, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up-alt.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up-hover.png"
+ border = {8, 0, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up-hover.png"
+ border = {8, 0, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_up"
+ file = "assets/spin-rtl-up-insensitive.png"
+ border = {8, 0, 8, 0}
+ stretch = TRUE
+ overlay_file = "assets/pan-up-alt-insensitive.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ # Spin-Down LTR
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down.png"
+ border = {0, 8, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down-alt.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down-hover.png"
+ border = {0, 8, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down-active.png"
+ border = {0, 8, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-ltr-down-insensitive.png"
+ border = {0, 8, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down-alt-insensitive.png"
+ overlay_stretch = FALSE
+ direction = LTR
+ }
+
+ # Spin-Down RTL
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down.png"
+ border = {8, 0, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down-alt.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down-hover.png"
+ border = {8, 0, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down-active.png"
+ border = {8, 0, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "spinbutton_down"
+ file = "assets/spin-rtl-down-insensitive.png"
+ border = {8, 0, 0, 8}
+ stretch = TRUE
+ overlay_file = "assets/pan-down-alt-insensitive.png"
+ overlay_stretch = FALSE
+ direction = RTL
+ }
+
+ ##############
+ # Scrollbars #
+ ##############
+
+ image {
+ function = BOX
+ detail = "bar"
+ file = "assets/progressbar-progress.png"
+ stretch = TRUE
+ border = {0, 0, 0, 0}
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "bar"
+ file = "assets/progressbar-progress.png"
+ stretch = TRUE
+ border = {0, 0, 0, 0}
+ orientation = VERTICAL
+ }
+
+ #############
+ # Treeviews #
+ #############
+
+ # Disable active the column highlight
+ # We need to match specific cells or we break stuff
+ # Looking at you deadbeef
+
+ image {
+ function = FLAT_BOX
+ detail = "cell_even_sorted"
+ state = NORMAL
+ }
+
+ image {
+ function = FLAT_BOX
+ detail = "cell_odd_sorted"
+ state = NORMAL
+ }
+
+ # Disable all the other shadows
+ # This prevents the Raleigh effect
+ image {
+ function = SHADOW
+ }
+ }
+}
+
+style "menubar" {
+ bg[NORMAL] = @titlebar_bg_color
+ fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color)
+ fg[PRELIGHT] = @titlebar_fg_color
+ fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color)
+ # Needed to fix Firefox's menubar text
+ bg[SELECTED] = mix(0.15, @titlebar_fg_color, @titlebar_bg_color)
+ fg[SELECTED] = @titlebar_fg_color
+}
+
+style "menubar_item" {
+ xthickness = 3
+ ythickness = 4
+
+ fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color)
+ bg[PRELIGHT] = mix(0.15, @titlebar_fg_color, @titlebar_bg_color)
+ fg[PRELIGHT] = @titlebar_fg_color
+ fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color)
+}
+
+style "menu" {
+ xthickness = 0
+ ythickness = 0
+
+ bg[NORMAL] = @base_color
+ bg[INSENSITIVE] = @base_color
+ bg[PRELIGHT] = @base_color
+ bg[SELECTED] = mix(0.15, @fg_color, @base_color)
+}
+
+style "menu_item" {
+ xthickness = 4
+ ythickness = 4
+
+ bg[PRELIGHT] = mix(0.15, @fg_color, @base_color)
+ fg[PRELIGHT] = @fg_color
+ # Chromium uses this setting
+ bg[SELECTED] = mix(0.15, @fg_color, @base_color)
+ text[SELECTED] = @fg_color
+ # Some widgets use text, we need to handle that
+ text[NORMAL] = @fg_color
+ text[PRELIGHT] = @fg_color
+
+ # Unfortunately we can't tell regular and menu checks/radios apart
+ # Without the heirarchy
+ engine "pixmap" {
+
+ #################
+ # Check Buttons #
+ #################
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/menu-checkbox-unchecked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/menu-checkbox-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = CHECK
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-checkbox-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ #################
+ # Radio Buttons #
+ #################
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = OUT
+ overlay_file = "assets/menu-radio-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = OUT
+ overlay_file = "assets/menu-radio-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = OUT
+ overlay_file = "assets/menu-radio-unchecked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = OUT
+ overlay_file = "assets/menu-radio-unchecked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = IN
+ overlay_file = "assets/menu-radio-checked-insensitive.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = NORMAL
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = PRELIGHT
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = ACTIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed.png"
+ overlay_stretch = FALSE
+ }
+
+ image {
+ function = OPTION
+ state = INSENSITIVE
+ shadow = ETCHED_IN
+ overlay_file = "assets/menu-radio-mixed-insensitive.png"
+ overlay_stretch = FALSE
+ }
+ }
+}
+
+style "separator_menu_item" {
+ xthickness = 0
+ ythickness = 2
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ file = "assets/border.png"
+ border = {0, 0, 0, 1}
+ }
+ }
+}
+
+style "button_label" {
+ fg[NORMAL] = mix(0.75, @fg_color, @bg_color)
+ # fg[INSENSITIVE] = mix(0.3, @fg_color, @bg_color)
+
+ font_name = "Medium"
+}
+
+style "checkbutton_label" {
+ fg[NORMAL] = @fg_color
+ # fg[INSENSITIVE] = mix(0.4, @fg_color, @bg_color)
+
+ font_name = "Regular"
+}
+
+style "button" {
+ xthickness = 4
+ ythickness = 4
+
+ # For the sake of sanity style buttons this way
+ engine "pixmap" {
+
+ ###########
+ # Buttons #
+ ###########
+
+ image {
+ function = BOX
+ state = NORMAL
+ file = "assets/button.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = OUT
+ file = "assets/button-hover.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ # Don't add hover effect on pressed buttons
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = IN
+ file = "assets/button-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ file = "assets/button-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ file = "assets/button-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+ }
+}
+
+style "link_button" {
+ # Disable the button effect, leave just the link
+ engine "pixmap" {
+ image {
+ function = BOX
+ }
+ }
+}
+
+style "entry" {
+ # We set this same as the border of the border of the entry
+ # This way there's no overlap
+ xthickness = 6
+ ythickness = 6
+}
+
+style "combobox" {
+ xthickness = 6
+ ythickness = 6
+
+ # This affects only the button beside an entry
+ GtkButton::inner-border = {0, 0, 0, 0}
+}
+
+style "combobox_cellview" {
+ text[NORMAL] = mix(0.75, @fg_color, @bg_color)
+ # text[INSENSITIVE] = mix(0.3, @fg_color, @bg_color)
+
+ font_name = "Medium"
+}
+
+style "combobox_entry" {
+ # Since one side of the button is missing, we need to shift the arrow a little to the right
+ GtkButton::inner-border = {0, 2, 0, 0}
+
+ engine "pixmap" {
+
+ #############
+ # LTR entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/combo-ltr-entry.png"
+ border = {8, 0, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/combo-ltr-entry-active.png"
+ border = {8, 0, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/combo-ltr-entry-insensitive.png"
+ border = {8, 0, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ #############
+ # RTL entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/combo-rtl-entry.png"
+ border = {0, 8, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/combo-rtl-entry-active.png"
+ border = {0, 8, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/combo-rtl-entry-insensitive.png"
+ border = {0, 8, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ ##############
+ # LTR button #
+ ##############
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "button"
+ file = "assets/combo-ltr-button.png"
+ border = {0, 8, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "button"
+ file = "assets/combo-ltr-button-hover.png"
+ border = {0, 8, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "button"
+ file = "assets/combo-ltr-button-active.png"
+ border = {0, 8, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "button"
+ file = "assets/combo-ltr-button-insensitive.png"
+ border = {0, 8, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ ##############
+ # RTL button #
+ ##############
+
+ image {
+ function = BOX
+ state = NORMAL
+ detail = "button"
+ file = "assets/combo-rtl-button.png"
+ border = {8, 0, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ detail = "button"
+ file = "assets/combo-rtl-button-hover.png"
+ border = {8, 0, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ detail = "button"
+ file = "assets/combo-rtl-button-active.png"
+ border = {8, 0, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ detail = "button"
+ file = "assets/combo-rtl-button-insensitive.png"
+ border = {8, 0, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+ }
+}
+
+style "combo_button_padding" {
+ # Since one side of the button is missing, we need to shift the arrow a
+ # little to the right.
+ # This is the same thing we've done above but the combo, unlike the combobox,
+ # uses padding the same way as a button.
+ GtkButton::inner-border = {3, 6, 3, 3}
+}
+
+style "notebook" {
+ xthickness = 3
+ ythickness = 3
+}
+
+style "notebook_tab_label" {
+ fg[ACTIVE] = mix(0.75, @fg_color, @bg_color)
+
+ font_name = "Medium"
+}
+
+style "notebook_viewport" {
+ bg[NORMAL] = @base_color
+}
+
+style "notebook_bg" {
+ bg[NORMAL] = @base_color
+ bg[PRELIGHT] = @base_color
+ bg[INSENSITIVE] = @base_color
+}
+
+style "notebook_entry" {
+ engine "pixmap" {
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/notebook-entry-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/notebook-entry-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ file = "assets/notebook-entry.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+ }
+}
+
+style "normal_bg" {
+ bg[NORMAL] = @bg_color
+ bg[PRELIGHT] = @bg_color
+ bg[INSENSITIVE] = @bg_color
+}
+
+style "normal_entry" {
+ engine "pixmap" {
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/entry-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/entry-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW
+ detail = "entry"
+ file = "assets/entry.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+ }
+}
+
+style "notebook_combo" {
+ engine "pixmap" {
+
+ #############
+ # LTR entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/notebook-combo-ltr-entry.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/notebook-combo-ltr-entry-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/notebook-combo-ltr-entry-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ #############
+ # RTL entry #
+ #############
+
+ image {
+ function = SHADOW
+ state = NORMAL
+ detail = "entry"
+ file = "assets/notebook-combo-rtl-entry.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = ACTIVE
+ detail = "entry"
+ file = "assets/notebook-combo-rtl-entry-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = SHADOW
+ state = INSENSITIVE
+ detail = "entry"
+ file = "assets/notebook-combo-rtl-entry-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ direction = RTL
+ }
+ }
+}
+
+style "textview" {
+ bg[NORMAL] = @base_color
+}
+
+style "scale_horz" {
+ engine "pixmap" {
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-horz-trough.png"
+ border = {6, 6, 0, 0}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-horz-trough-active.png"
+ border = {6, 6, 0, 0}
+ stretch = TRUE
+ }
+ }
+}
+
+style "scale_vert" {
+ engine "pixmap" {
+ image {
+ function = BOX
+ detail = "trough-upper"
+ file = "assets/scale-vert-trough.png"
+ border = {0, 0, 6, 6}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ detail = "trough-lower"
+ file = "assets/scale-vert-trough-active.png"
+ border = {0, 0, 6, 6}
+ stretch = TRUE
+ }
+ }
+}
+
+style "progressbar" {
+ xthickness = 0
+ ythickness = 0
+
+ fg[PRELIGHT] = @selected_fg_color
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/progressbar-trough.png"
+ border = {0, 0, 0, 0}
+ stretch = TRUE
+ orientation = HORIZONTAL
+ }
+
+ image {
+ function = BOX
+ detail = "trough"
+ file = "assets/progressbar-trough.png"
+ border = {0, 0, 0, 0}
+ stretch = TRUE
+ orientation = VERTICAL
+ }
+ }
+}
+
+style "treeview_header" {
+ xthickness = 2
+ ythickness = 2
+
+ fg[NORMAL] = mix(0.75, @fg_color, @base_color)
+ fg[PRELIGHT] = @fg_color
+
+ font_name = "Medium"
+
+ GtkButton::inner-border = {4, 4, 0, 2}
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ state = NORMAL
+ file = "assets/treeview-ltr-button.png"
+ border = {0, 1, 0, 1}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ file = "assets/treeview-ltr-button-hover.png"
+ border = {0, 1, 0, 1}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ file = "assets/treeview-ltr-button-active.png"
+ border = {0, 1, 0, 1}
+ stretch = TRUE
+ direction = LTR
+ }
+
+ image {
+ function = BOX
+ state = NORMAL
+ file = "assets/treeview-rtl-button.png"
+ border = {1, 0, 0, 1}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ file = "assets/treeview-rtl-button-hover.png"
+ border = {1, 0, 0, 1}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ file = "assets/treeview-rtl-button-active.png"
+ border = {1, 0, 0, 1}
+ stretch = TRUE
+ direction = RTL
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-up-alt.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-up.png"
+ overlay_stretch = FALSE
+ arrow_direction = UP
+ }
+
+ image {
+ function = ARROW
+ state = NORMAL
+ overlay_file = "assets/pan-down-alt.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = PRELIGHT
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+
+ image {
+ function = ARROW
+ state = ACTIVE
+ overlay_file = "assets/pan-down.png"
+ overlay_stretch = FALSE
+ arrow_direction = DOWN
+ }
+ }
+}
+
+style "scrolled_window" {
+ engine "pixmap" {
+ image {
+ function = SHADOW
+ file = "assets/frame.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ }
+ }
+}
+
+style "frame" {
+ engine "pixmap" {
+ image {
+ function = SHADOW
+ shadow = NONE
+ }
+
+ image {
+ function = SHADOW
+ file = "assets/frame.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ }
+
+ image {
+ function = SHADOW_GAP
+ file = "assets/frame.png"
+ border = {1, 1, 1, 1}
+ stretch = TRUE
+ gap_start_file = "assets/border.png"
+ gap_end_file = "assets/border.png"
+ }
+ }
+}
+
+style "tool_button" {
+ GtkButton::inner-border = {2, 2, 2, 2}
+
+ # For the sake of sanity style buttons this way
+ engine "pixmap" {
+ image {
+ function = BOX
+ state = NORMAL
+ file = "assets/flat-button.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = OUT
+ file = "assets/flat-button-hover.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ # Don't add hover effect on pressed buttons
+ image {
+ function = BOX
+ state = PRELIGHT
+ shadow = IN
+ file = "assets/flat-button-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = ACTIVE
+ file = "assets/flat-button-active.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ shadow = OUT
+ file = "assets/flat-button-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+
+ image {
+ function = BOX
+ state = INSENSITIVE
+ shadow = IN
+ file = "assets/button-insensitive.png"
+ border = {8, 8, 8, 8}
+ stretch = TRUE
+ }
+ }
+}
+
+style "toolbar_separator" {
+ GtkWidget::wide-separators = 1
+ GtkWidget::separator-width = 1
+ GtkWidget::separator-height = 1
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ file = "assets/border.png"
+ }
+ }
+}
+
+style "inline_toolbar" {
+ # GtkToolbar::button-relief = GTK_RELIEF_NORMAL
+
+ engine "pixmap" {
+ image {
+ function = BOX
+ file = "assets/frame-inline.png"
+ border = {1, 1, 0, 1}
+ stretch = TRUE
+ }
+ }
+}
+
+style "tooltip" {
+ xthickness = 8
+ ythickness = 8
+
+ bg[NORMAL] = @base_color
+ fg[NORMAL] = @fg_color
+ bg[SELECTED] = @base_color
+}
+
+style "disable_text_shadow" {
+ engine "murrine" {
+ textstyle = 0
+ }
+}
+
+style "disable_separator" {
+ xthickness = 0
+ ythickness = 0
+
+ GtkWidget::wide-separators = 1
+}
+
+# Default style, containing theme properties and trying to match every widget as
+# much as possible, which is not only faster than trying to match every widget
+# by its own but also less bug-prune and more consistent. However there is some
+# widget specific stuff that needs to be taken care of, which is the point of
+# every other style below.
+class "GtkWidget" style "default"
+
+######################################
+# Override padding, style and colour #
+######################################
+
+class "GtkButton" style "button"
+class "GtkLinkButton" style "link_button"
+class "GtkEntry" style "entry"
+class "GtkOldEditable" style "entry"
+class "GtkNotebook" style "notebook"
+class "GtkHScale" style "scale_horz"
+class "GtkVScale" style "scale_vert"
+class "GtkProgressBar" style "progressbar"
+class "GtkScrolledWindow" style "scrolled_window"
+class "GtkFrame" style "frame"
+class "GtkSeparatorToolItem" style "toolbar_separator"
+class "GtkMenuBar" style "menubar"
+class "GtkMenu" style "menu"
+class "GtkTextView" style "textview"
+
+# Menu and menubar items
+widget_class "**" style "menu_item"
+widget_class "*.*" style "menubar_item"
+widget_class "**" style "separator_menu_item"
+
+# Treeview buttons
+widget_class "***" style "treeview_header"
+
+# Give the file chooser toolbar a border
+widget_class "**" style "inline_toolbar"
+
+# Fix padding on regular comboboxes
+widget_class "*." style "combobox"
+
+# And disable separators on them
+widget_class "*.*" style "disable_separator"
+widget_class "**" style "disable_separator"
+widget_class "**" style "disable_separator"
+
+# Join together the ComboBoxEntry entry and button
+widget_class "**" style "combobox_entry"
+
+# Join the Combo entry and button
+widget_class "**" style "combobox_entry"
+
+# Tweak the padding on the button a little bit because it
+# uses it a bit differently
+widget_class "*." style "combo_button_padding"
+
+# Alas we cannot do the same for ComboBoxText because there
+# isn't a way to apply the style to only the comboboxes that
+# have an entry inside
+
+# Tool buttons have different styles
+widget_class "**" style "tool_button"
+widget_class "**.*" style "tool_button"
+
+# Notebooks
+widget_class "*." style "notebook_tab_label"
+widget_class "*.." style "notebook_tab_label"
+
+# Notebooks are white, act accordingly
+widget_class "**" style "notebook_entry"
+widget_class "**" style "notebook_bg"
+widget_class "**" style "notebook_bg"
+widget_class "***" style "notebook_bg"
+widget_class "**" style "notebook_bg"
+widget_class "*.*" style "notebook_bg"
+widget_class "***" style "notebook_combo"
+widget_class "***" style "notebook_combo"
+
+# However, stuff inside eventboxes inside notebooks is grey
+# again, react
+widget_class "***" style "normal_entry"
+widget_class "***" style "normal_bg"
+widget_class "***" style "normal_bg"
+widget_class "****" style "combobox_entry"
+widget_class "****" style "combobox_entry"
+widget_class "***." style "combo_button_padding"
+
+# Button labels
+widget_class "**" style "button_label"
+
+# Checkbutton labels
+widget_class "*." style "checkbutton_label"
+
+# ComboBoxes tend to draw the button label with text[]
+# instead of fg[], we need to fix that
+widget_class "**" style "combobox_cellview"
+
+# Disable white text shadows
+widget_class "*" style "disable_text_shadow"
+widget_class "*" style "disable_text_shadow"
+
+# GTK tooltips
+widget "gtk-tooltip*" style "tooltip"
diff --git a/Aurora.gtk/Themes/render-assets-dark.sh b/Aurora.gtk/Themes/render-assets-dark.sh
new file mode 100755
index 0000000..cca8e10
--- /dev/null
+++ b/Aurora.gtk/Themes/render-assets-dark.sh
@@ -0,0 +1,24 @@
+#! /bin/bash
+
+INKSCAPE="/usr/bin/inkscape"
+OPTIPNG="/usr/bin/optipng"
+
+SRC_FILE="assets-dark.svg"
+ASSETS_DIR="assets-dark"
+INDEX="assets.txt"
+
+for i in `cat $INDEX`
+do
+if [ -f $ASSETS_DIR/$i.png ]; then
+ echo $ASSETS_DIR/$i.png exists.
+else
+ echo
+ echo Rendering $ASSETS_DIR/$i.png
+ $INKSCAPE --export-id=$i \
+ --export-id-only \
+ --export-background-opacity=0 \
+ --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \
+ && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png
+fi
+done
+exit 0
diff --git a/Aurora.gtk/Themes/render-assets.sh b/Aurora.gtk/Themes/render-assets.sh
new file mode 100755
index 0000000..abc5e93
--- /dev/null
+++ b/Aurora.gtk/Themes/render-assets.sh
@@ -0,0 +1,24 @@
+#! /bin/bash
+
+INKSCAPE="/usr/bin/inkscape"
+OPTIPNG="/usr/bin/optipng"
+
+SRC_FILE="assets.svg"
+ASSETS_DIR="assets"
+INDEX="assets.txt"
+
+for i in `cat $INDEX`
+do
+if [ -f $ASSETS_DIR/$i.png ]; then
+ echo $ASSETS_DIR/$i.png exists.
+else
+ echo
+ echo Rendering $ASSETS_DIR/$i.png
+ $INKSCAPE --export-id=$i \
+ --export-id-only \
+ --export-background-opacity=0 \
+ --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \
+ && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png
+fi
+done
+exit 0
diff --git a/Aurora/App.xaml b/Aurora/App.xaml
index 48c3fd9..f452747 100644
--- a/Aurora/App.xaml
+++ b/Aurora/App.xaml
@@ -1,5 +1,26 @@
-
-
+
+
+
+
+
+ #FFFFFF
+ #000000
+
+
+ #F5C210
+ #151C25
+ #1E2634
+ #151C25
+ #44545C
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Aurora/App.xaml.cs b/Aurora/App.xaml.cs
index 504fc72..1b5a40a 100644
--- a/Aurora/App.xaml.cs
+++ b/Aurora/App.xaml.cs
@@ -1,4 +1,5 @@
using System;
+using Aurora.Frontend.Views.Main;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
@@ -10,7 +11,7 @@ namespace Aurora
{
InitializeComponent();
- MainPage = new MainPage();
+ MainPage = new MainView();
}
protected override void OnStart()
diff --git a/Aurora/Aurora.csproj b/Aurora/Aurora.csproj
index ca5a32d..05ac152 100644
--- a/Aurora/Aurora.csproj
+++ b/Aurora/Aurora.csproj
@@ -14,4 +14,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Aurora/Frontend/Behaviors/BehaviorBase.cs b/Aurora/Frontend/Behaviors/BehaviorBase.cs
new file mode 100644
index 0000000..b353a54
--- /dev/null
+++ b/Aurora/Frontend/Behaviors/BehaviorBase.cs
@@ -0,0 +1,42 @@
+using System;
+using Xamarin.Forms;
+
+namespace Aurora.Frontend.Behaviors
+{
+ public class BehaviorBase : Behavior where T : BindableObject
+ {
+ public T AssociatedObject { get; private set; }
+
+ protected override void OnAttachedTo(T bindable)
+ {
+ base.OnAttachedTo(bindable);
+ AssociatedObject = bindable;
+
+ if (bindable.BindingContext != null)
+ {
+ BindingContext = bindable.BindingContext;
+ }
+
+ bindable.BindingContextChanged += OnBindingContextChanged;
+ }
+
+ protected override void OnDetachingFrom(T bindable)
+ {
+ base.OnDetachingFrom(bindable);
+ bindable.BindingContextChanged -= OnBindingContextChanged;
+ AssociatedObject = null;
+ }
+
+ void OnBindingContextChanged(object sender, EventArgs e)
+ {
+ OnBindingContextChanged();
+ }
+
+ protected override void OnBindingContextChanged()
+ {
+ base.OnBindingContextChanged();
+ BindingContext = AssociatedObject.BindingContext;
+ }
+ }
+}
+
diff --git a/Aurora/Frontend/Behaviors/EventToCommandBehavior.cs b/Aurora/Frontend/Behaviors/EventToCommandBehavior.cs
new file mode 100644
index 0000000..329be79
--- /dev/null
+++ b/Aurora/Frontend/Behaviors/EventToCommandBehavior.cs
@@ -0,0 +1,132 @@
+using System;
+using System.Reflection;
+using System.Windows.Input;
+using Xamarin.Forms;
+
+namespace Aurora.Frontend.Behaviors
+{
+ public class EventToCommandBehavior : BehaviorBase
+ {
+ Delegate eventHandler;
+
+ public static readonly BindableProperty EventNameProperty = BindableProperty.Create("EventName", typeof(string), typeof(EventToCommandBehavior), null, propertyChanged: OnEventNameChanged);
+ public static readonly BindableProperty CommandProperty = BindableProperty.Create("Command", typeof(ICommand), typeof(EventToCommandBehavior), null);
+ public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create("CommandParameter", typeof(object), typeof(EventToCommandBehavior), null);
+ public static readonly BindableProperty InputConverterProperty = BindableProperty.Create("Converter", typeof(IValueConverter), typeof(EventToCommandBehavior), null);
+
+ public string EventName
+ {
+ get { return (string)GetValue(EventNameProperty); }
+ set { SetValue(EventNameProperty, value); }
+ }
+
+ public ICommand Command
+ {
+ get { return (ICommand)GetValue(CommandProperty); }
+ set { SetValue(CommandProperty, value); }
+ }
+
+ public object CommandParameter
+ {
+ get { return GetValue(CommandParameterProperty); }
+ set { SetValue(CommandParameterProperty, value); }
+ }
+
+ public IValueConverter Converter
+ {
+ get { return (IValueConverter)GetValue(InputConverterProperty); }
+ set { SetValue(InputConverterProperty, value); }
+ }
+
+ protected override void OnAttachedTo(View bindable)
+ {
+ base.OnAttachedTo(bindable);
+ RegisterEvent(EventName);
+ }
+
+ protected override void OnDetachingFrom(View bindable)
+ {
+ DeregisterEvent(EventName);
+ base.OnDetachingFrom(bindable);
+ }
+
+ void RegisterEvent(string name)
+ {
+ if (string.IsNullOrWhiteSpace(name))
+ {
+ return;
+ }
+
+ EventInfo eventInfo = AssociatedObject.GetType().GetRuntimeEvent(name);
+ if (eventInfo == null)
+ {
+ throw new ArgumentException(string.Format("EventToCommandBehavior: Can't register the '{0}' event.", EventName));
+ }
+ MethodInfo methodInfo = typeof(EventToCommandBehavior).GetTypeInfo().GetDeclaredMethod("OnEvent");
+ eventHandler = methodInfo.CreateDelegate(eventInfo.EventHandlerType, this);
+ eventInfo.AddEventHandler(AssociatedObject, eventHandler);
+ }
+
+ void DeregisterEvent(string name)
+ {
+ if (string.IsNullOrWhiteSpace(name))
+ {
+ return;
+ }
+
+ if (eventHandler == null)
+ {
+ return;
+ }
+ EventInfo eventInfo = AssociatedObject.GetType().GetRuntimeEvent(name);
+ if (eventInfo == null)
+ {
+ throw new ArgumentException(string.Format("EventToCommandBehavior: Can't de-register the '{0}' event.", EventName));
+ }
+ eventInfo.RemoveEventHandler(AssociatedObject, eventHandler);
+ eventHandler = null;
+ }
+
+ void OnEvent(object sender, object eventArgs)
+ {
+ if (Command == null)
+ {
+ return;
+ }
+
+ object resolvedParameter;
+ if (CommandParameter != null)
+ {
+ resolvedParameter = CommandParameter;
+ }
+ else if (Converter != null)
+ {
+ resolvedParameter = Converter.Convert(eventArgs, typeof(object), null, null);
+ }
+ else
+ {
+ resolvedParameter = eventArgs;
+ }
+
+ if (Command.CanExecute(resolvedParameter))
+ {
+ Command.Execute(resolvedParameter);
+ }
+ }
+
+ static void OnEventNameChanged(BindableObject bindable, object oldValue, object newValue)
+ {
+ var behavior = (EventToCommandBehavior)bindable;
+ if (behavior.AssociatedObject == null)
+ {
+ return;
+ }
+
+ string oldEventName = (string)oldValue;
+ string newEventName = (string)newValue;
+
+ behavior.DeregisterEvent(oldEventName);
+ behavior.RegisterEvent(newEventName);
+ }
+ }
+}
diff --git a/Aurora/Frontend/Components/ContentPresenter.cs b/Aurora/Frontend/Components/ContentPresenter.cs
new file mode 100644
index 0000000..8fd6fa6
--- /dev/null
+++ b/Aurora/Frontend/Components/ContentPresenter.cs
@@ -0,0 +1,38 @@
+using System;
+using Xamarin.Forms;
+
+namespace Aurora.Frontend.Components
+{
+ public class ContentPresenter : ContentView
+ {
+ public static readonly BindableProperty ItemTemplateProperty = BindableProperty.Create("ItemTemplate", typeof(DataTemplate), typeof(ContentPresenter), null, propertyChanged: OnItemTemplateChanged);
+
+ private static void OnItemTemplateChanged(BindableObject bindable, object oldvalue, object newvalue)
+ {
+ var cp = (ContentPresenter)bindable;
+
+ var template = cp.ItemTemplate;
+ if (template != null)
+ {
+ var content = (View)template.CreateContent();
+ cp.Content = content;
+ }
+ else
+ {
+ cp.Content = null;
+ }
+ }
+
+ public DataTemplate ItemTemplate
+ {
+ get
+ {
+ return (DataTemplate)GetValue(ItemTemplateProperty);
+ }
+ set
+ {
+ SetValue(ItemTemplateProperty, value);
+ }
+ }
+ }
+}
diff --git a/Aurora/Frontend/Components/HorizontalList/HorizontalList.cs b/Aurora/Frontend/Components/HorizontalList/HorizontalList.cs
new file mode 100755
index 0000000..0766b6f
--- /dev/null
+++ b/Aurora/Frontend/Components/HorizontalList/HorizontalList.cs
@@ -0,0 +1,168 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Windows.Input;
+using Xamarin.Forms;
+
+namespace Movies.Controls
+{
+ public class HorizontalList : Grid
+ {
+ private ICommand _innerSelectedCommand;
+ private readonly ScrollView _scrollView;
+ private readonly StackLayout _itemsStackLayout;
+
+ public event EventHandler SelectedItemChanged;
+
+ public StackOrientation ListOrientation { get; set; }
+
+ public double Spacing { get; set; }
+
+ public static readonly BindableProperty SelectedCommandProperty =
+ BindableProperty.Create("SelectedCommand", typeof(ICommand), typeof(HorizontalList), null);
+
+ public static readonly BindableProperty ItemsSourceProperty =
+ BindableProperty.Create("ItemsSource", typeof(IEnumerable), typeof(HorizontalList), default(IEnumerable