commit 1cc8e58588c2286ce557f65ee25a7b16778679ef
Author: Anders Larsson <[email protected]>
Date:   Thu Nov 19 20:47:35 2015 +0100

    [st] update solarized patches for latest HEAD

diff --git a/st.suckless.org/patches/solarized.md 
b/st.suckless.org/patches/solarized.md
index b36a9bb..663400a 100644
--- a/st.suckless.org/patches/solarized.md
+++ b/st.suckless.org/patches/solarized.md
@@ -43,13 +43,13 @@ or the dark color scheme:
 
  * [st-0.5-solarized-light.diff](st-0.5-solarized-light.diff)
  * [st-0.6-solarized-light.diff](st-0.6-solarized-light.diff)
- * [st-git-20150917-solarized-light.diff](st-git-20150917-solarized-light.diff)
+ * [st-git-20151119-solarized-light.diff](st-git-20151119-solarized-light.diff)
 
 *Dark*:
 
  * [st-0.5-solarized-dark.diff](st-0.5-solarized-dark.diff)
  * [st-0.6-solarized-dark.diff](st-0.6-solarized-dark.diff)
- * [st-git-20150917-solarized-dark.diff](st-git-20150917-solarized-dark.diff)
+ * [st-git-20151119-solarized-dark.diff](st-git-20151119-solarized-dark.diff)
 
 Authors
 -------
diff --git a/st.suckless.org/patches/st-git-20151119-solarized-dark.diff 
b/st.suckless.org/patches/st-git-20151119-solarized-dark.diff
new file mode 100644
index 0000000..9c43650
--- /dev/null
+++ b/st.suckless.org/patches/st-git-20151119-solarized-dark.diff
@@ -0,0 +1,68 @@
+diff --git a/config.def.h b/config.def.h
+index fd09d72..1c0c1f9 100644
+--- a/config.def.h
++++ b/config.def.h
+@@ -69,31 +69,23 @@ static unsigned int tabspaces = 8;
+ 
+ /* Terminal colors (16 first used in escape sequence) */
+ static const char *colorname[] = {
+-      /* 8 normal colors */
+-      "black",
+-      "red3",
+-      "green3",
+-      "yellow3",
+-      "blue2",
+-      "magenta3",
+-      "cyan3",
+-      "gray90",
+-
+-      /* 8 bright colors */
+-      "gray50",
+-      "red",
+-      "green",
+-      "yellow",
+-      "#5c5cff",
+-      "magenta",
+-      "cyan",
+-      "white",
+-
+-      [255] = 0,
+-
+-      /* more colors can be added after 255 to use with DefaultXX */
+-      "#cccccc",
+-      "#555555",
++      /* solarized dark */
++      "#073642",  /*  0: black    */
++      "#dc322f",  /*  1: red      */
++      "#859900",  /*  2: green    */
++      "#b58900",  /*  3: yellow   */
++      "#268bd2",  /*  4: blue     */
++      "#d33682",  /*  5: magenta  */
++      "#2aa198",  /*  6: cyan     */
++      "#eee8d5",  /*  7: white    */
++      "#002b36",  /*  8: brblack  */
++      "#cb4b16",  /*  9: brred    */
++      "#586e75",  /* 10: brgreen  */
++      "#657b83",  /* 11: bryellow */
++      "#839496",  /* 12: brblue   */
++      "#6c71c4",  /* 13: brmagenta*/
++      "#93a1a1",  /* 14: brcyan   */
++      "#fdf6e3",  /* 15: brwhite  */
+ };
+ 
+ 
+@@ -101,10 +93,10 @@ static const char *colorname[] = {
+  * Default colors (colorname index)
+  * foreground, background, cursor, reverse cursor
+  */
+-static unsigned int defaultfg = 7;
+-static unsigned int defaultbg = 0;
+-static unsigned int defaultcs = 256;
+-static unsigned int defaultrcs = 257;
++static unsigned int defaultfg = 12;
++static unsigned int defaultbg = 8;
++static unsigned int defaultcs = 14;
++static unsigned int defaultrcs = 15;
+ 
+ /*
+  * Default shape of cursor
diff --git a/st.suckless.org/patches/st-git-20151119-solarized-light.diff 
b/st.suckless.org/patches/st-git-20151119-solarized-light.diff
new file mode 100644
index 0000000..cf1cf86
--- /dev/null
+++ b/st.suckless.org/patches/st-git-20151119-solarized-light.diff
@@ -0,0 +1,68 @@
+diff --git a/config.def.h b/config.def.h
+index fd09d72..2d3c9d0 100644
+--- a/config.def.h
++++ b/config.def.h
+@@ -69,31 +69,23 @@ static unsigned int tabspaces = 8;
+ 
+ /* Terminal colors (16 first used in escape sequence) */
+ static const char *colorname[] = {
+-      /* 8 normal colors */
+-      "black",
+-      "red3",
+-      "green3",
+-      "yellow3",
+-      "blue2",
+-      "magenta3",
+-      "cyan3",
+-      "gray90",
+-
+-      /* 8 bright colors */
+-      "gray50",
+-      "red",
+-      "green",
+-      "yellow",
+-      "#5c5cff",
+-      "magenta",
+-      "cyan",
+-      "white",
+-
+-      [255] = 0,
+-
+-      /* more colors can be added after 255 to use with DefaultXX */
+-      "#cccccc",
+-      "#555555",
++      /* solarized light */
++      "#eee8d5",  /*  0: black    */
++      "#dc322f",  /*  1: red      */
++      "#859900",  /*  2: green    */
++      "#b58900",  /*  3: yellow   */
++      "#268bd2",  /*  4: blue     */
++      "#d33682",  /*  5: magenta  */
++      "#2aa198",  /*  6: cyan     */
++      "#073642",  /*  7: white    */
++      "#fdf6e3",  /*  8: brblack  */
++      "#cb4b16",  /*  9: brred    */
++      "#93a1a1",  /* 10: brgreen  */
++      "#839496",  /* 11: bryellow */
++      "#657b83",  /* 12: brblue   */
++      "#6c71c4",  /* 13: brmagenta*/
++      "#586e75",  /* 14: brcyan   */
++      "#002b36",  /* 15: brwhite  */
+ };
+ 
+ 
+@@ -101,10 +93,10 @@ static const char *colorname[] = {
+  * Default colors (colorname index)
+  * foreground, background, cursor, reverse cursor
+  */
+-static unsigned int defaultfg = 7;
+-static unsigned int defaultbg = 0;
+-static unsigned int defaultcs = 256;
+-static unsigned int defaultrcs = 257;
++static unsigned int defaultfg = 12;
++static unsigned int defaultbg = 8;
++static unsigned int defaultcs = 14;
++static unsigned int defaultrcs = 15;
+ 
+ /*
+  * Default shape of cursor


Reply via email to