Skip to content

Commit

Permalink
Update Solarized Palette (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Jul 8, 2022
1 parent c5215f3 commit 873068f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion data/io.elementary.terminal.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
<description>The shape of the cursor of the terminal.</description>
</key>
<key name="palette" type="s">
<default>"#073642:#dc322f:#859900:#b58900:#268bd2:#ec0048:#2aa198:#94a3a5:#586e75:#cb4b16:#859900:#b58900:#268bd2:#d33682:#2aa198:#6c71c4"</default>
<default>"#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#dc322f:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3"</default>
<summary>Palette of the terminal.</summary>
<description>Defines the colors of various things in the terminal.</description>
</key>
Expand Down
12 changes: 6 additions & 6 deletions src/Themes.vala
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,22 @@ public class Terminal.Themes {
switch (theme) {
case (HIGH_CONTRAST):
string_palette = {
"#073642", "#dc322f", "#859900", "#b58900", "#268bd2", "#ec0048", "#2aa198", "#94a3a5",
"#586e75", "#cb4b16", "#859900", "#b58900", "#268bd2", "#d33682", "#2aa198", "#6c71c4",
"#073642", "#dc322f", "#859900", "#b58900", "#268bd2", "#d33682", "#2aa198", "#eee8d5",
"#002b36", "#dc322f", "#586e75", "#657b83", "#839496", "#6c71c4", "#93a1a1", "#fdf6e3",
"#ffffff", "#333333", "#839496"
};
break;
case (LIGHT):
string_palette = {
"#073642", "#dc322f", "#859900", "#b58900", "#268bd2", "#ec0048", "#2aa198", "#94a3a5",
"#586e75", "#cb4b16", "#859900", "#b58900", "#268bd2", "#d33682", "#2aa198", "#6c71c4",
"#073642", "#dc322f", "#859900", "#b58900", "#268bd2", "#d33682", "#2aa198", "#eee8d5",
"#002b36", "#dc322f", "#586e75", "#657b83", "#839496", "#6c71c4", "#93a1a1", "#fdf6e3",
"#FDF6E3", "#586e75", "#839496"
};
break;
case (DARK):
string_palette = {
"#073642", "#dc322f", "#859900", "#b58900", "#268bd2", "#ec0048", "#2aa198", "#94a3a5",
"#586e75", "#cb4b16", "#859900", "#b58900", "#268bd2", "#d33682", "#2aa198", "#6c71c4",
"#073642", "#dc322f", "#859900", "#b58900", "#268bd2", "#d33682", "#2aa198", "#eee8d5",
"#002b36", "#dc322f", "#586e75", "#657b83", "#839496", "#6c71c4", "#93a1a1", "#fdf6e3",
"#2E2E2E", "#a5a5a5", "#839496"
};
break;
Expand Down

0 comments on commit 873068f

Please sign in to comment.