Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVaclav Vancura <vaclav@vancura.org>2016-01-16 21:48:55 +0300
committerVaclav Vancura <vaclav@vancura.org>2016-01-16 21:48:55 +0300
commit1e138bbf4ca078e8e7a96bfdc47dae1ec47e159f (patch)
treedd294035b214fed2e026784fbf3ea916787f1942 /main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor
parentdc1af28d8ba746e7cc91078184820b7d4f4d3d57 (diff)
[Gettext] Dark styles
Diffstat (limited to 'main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor')
-rw-r--r--main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/Styles.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/Styles.cs b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/Styles.cs
index 1e7c03bec6..60d41c71b3 100644
--- a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/Styles.cs
+++ b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/Styles.cs
@@ -55,10 +55,10 @@ namespace MonoDevelop.Gettext
POEditor.EntryFuzzyBackgroundColor = new Gdk.Color (255, 199, 186);
POEditor.TabBarBackgroundColor = new Gdk.Color (241, 241, 241);
} else {
- POEditor.EntryUntranslatedBackgroundColor = new Gdk.Color (51, 51, 51); // TODO
- POEditor.EntryMissingBackgroundColor = new Gdk.Color (51, 51, 51); // TODO
- POEditor.EntryFuzzyBackgroundColor = new Gdk.Color (237, 167, 167); // TODO
- POEditor.TabBarBackgroundColor = new Gdk.Color (51, 51, 51); // TODO
+ POEditor.EntryUntranslatedBackgroundColor = new Gdk.Color (255, 238, 194);
+ POEditor.EntryMissingBackgroundColor = new Gdk.Color (255, 0, 255); // TODO: VV
+ POEditor.EntryFuzzyBackgroundColor = new Gdk.Color (255, 195, 183);
+ POEditor.TabBarBackgroundColor = new Gdk.Color (51, 51, 51);
}
}
}