summaryrefslogtreecommitdiff
path: root/src/profile-editor.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2017-12-15 12:26:49 +0300
committermonsta <[email protected]>2017-12-21 21:29:50 +0300
commit019042e65f653975f5d7bdbab18a656c9e37aa2e (patch)
tree68eacbe25168e97c1b79a4ac3d959c2756d0e72d /src/profile-editor.c
parent926ec59919a2416a09e95a7a69494187081082cc (diff)
downloadmate-terminal-019042e65f653975f5d7bdbab18a656c9e37aa2e.tar.bz2
mate-terminal-019042e65f653975f5d7bdbab18a656c9e37aa2e.tar.xz
add Solarized themes from gnome-terminal
closes https://github.com/mate-desktop/mate-terminal/issues/151 ported from: https://git.gnome.org/browse/gnome-terminal/commit/?id=b4d7416 https://git.gnome.org/browse/gnome-terminal/commit/?id=2763ea6
Diffstat (limited to 'src/profile-editor.c')
-rw-r--r--src/profile-editor.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/profile-editor.c b/src/profile-editor.c
index d0f6d0f..1aa9f90 100644
--- a/src/profile-editor.c
+++ b/src/profile-editor.c
@@ -64,7 +64,17 @@ static const TerminalColorScheme color_schemes[] =
N_("White on black"),
{ 1, 1, 1, 1 },
{ 0, 0, 0, 1 }
- }
+ },
+ /* Translators: "Solarized" is the name of a colour scheme, "light" can be translated */
+ { N_("Solarized light"),
+ { 0.396078, 0.482352, 0.513725, 1 },
+ { 0.992156, 0.964705, 0.890196, 1 }
+ },
+ /* Translators: "Solarized" is the name of a colour scheme, "dark" can be translated */
+ { N_("Solarized dark"),
+ { 0.513725, 0.580392, 0.588235, 1 },
+ { 0, 0.168627, 0.211764, 1 }
+ },
};
static void profile_forgotten_cb (TerminalProfile *profile,