From e25ecbc82e990d0c9830f0be27b7a277b51edefa Mon Sep 17 00:00:00 2001 From: Ignacio Casal Quinteiro Date: Mon, 21 Dec 2015 08:51:03 +0100 Subject: [PATCH] Color were swapped on the dark theme --- libgitg/gitg-diff-view-file.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgitg/gitg-diff-view-file.vala b/libgitg/gitg-diff-view-file.vala index 4be05f2b..10b5a6cc 100644 --- a/libgitg/gitg-diff-view-file.vala +++ b/libgitg/gitg-diff-view-file.vala @@ -228,8 +228,8 @@ class Gitg.DiffViewFile : Gtk.Grid if (settings.gtk_application_prefer_dark_theme) { header_attributes.background = Gdk.RGBA() { red = 136.0 / 255.0, green = 138.0 / 255.0, blue = 133.0 / 255.0, alpha = 1.0 }; - added_attributes.background = Gdk.RGBA() { red = 164.0 / 255.0, green = 0.0, blue = 0.0, alpha = 1.0 }; - removed_attributes.background = Gdk.RGBA() { red = 78.0 / 255.0, green = 154.0 / 255.0, blue = 6.0 / 255.0, alpha = 1.0 }; + added_attributes.background = Gdk.RGBA() { red = 78.0 / 255.0, green = 154.0 / 255.0, blue = 6.0 / 255.0, alpha = 1.0 }; + removed_attributes.background = Gdk.RGBA() { red = 164.0 / 255.0, green = 0.0, blue = 0.0, alpha = 1.0 }; } else {