commit 36e4e9f0959c2656090691b6ed2ef8ddad3b0e08
parent 21ba294f31eee70ae433421bbc7eec074409e3dc
Author: elbachir-one <bachiralfa@gmail.com>
Date: Tue, 19 Nov 2024 20:17:46 +0100
[st][patch][windows_xp_colorscheme] added patch
Diffstat:
3 files changed, 94 insertions(+), 0 deletions(-)
diff --git a/st.suckless.org/patches/windows_xp_colorscheme/index.md b/st.suckless.org/patches/windows_xp_colorscheme/index.md
@@ -0,0 +1,22 @@
+windowns xp colorscheme
+=======================
+
+Description
+-----------
+
+The "Windowns XP colorscheme" is specific color palette that resembles the classic Windows XP theme
+
+Example
+-------
+
+[![Screenshot](screenshot.jpg)](screenshot.jpg)
+
+Download
+--------
+
+* [st-windows-xp-colorscheme-20241119-4801b01.diff](st-windows-xp-colorscheme-20241119-4801b01.diff)
+
+Author
+------
+
+* El Bachir - <bachiralfa@gmail.com>
diff --git a/st.suckless.org/patches/windows_xp_colorscheme/screenshot.jpg b/st.suckless.org/patches/windows_xp_colorscheme/screenshot.jpg
Binary files differ.
diff --git a/st.suckless.org/patches/windows_xp_colorscheme/st-windows-xp-colorscheme-20241119-4801b01.diff b/st.suckless.org/patches/windows_xp_colorscheme/st-windows-xp-colorscheme-20241119-4801b01.diff
@@ -0,0 +1,72 @@
+From 4801b01b171ba8d4bec667d6a6b83f3fbd6af5bd Mon Sep 17 00:00:00 2001
+From: elbachir-one <bachiralfa@gmail.com>
+Date: Tue, 19 Nov 2024 18:23:59 +0100
+Subject: [PATCH] Windows XP color scheme
+
+---
+ config.def.h | 42 ++++++++++++++++++++----------------------
+ 1 file changed, 20 insertions(+), 22 deletions(-)
+
+diff --git a/config.def.h b/config.def.h
+index 2cd740a..a6d71f1 100644
+--- a/config.def.h
++++ b/config.def.h
+@@ -96,35 +96,33 @@ 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",
++ "#d3d7cf",
++ "#d3d7cf",
++ "#000000",
++ "#ffffff",
++ "#0000aa",
++ "#89dceb",
++ "#d9e0ee",
++ "#988ba2",
+
+ /* 8 bright colors */
+- "gray50",
+- "red",
+- "green",
+- "yellow",
+- "#5c5cff",
+- "magenta",
+- "cyan",
+- "white",
++ "#270e05",
++ "#6b290f",
++ "#bd4307",
++ "#ffba51",
++ "#96cdfb",
++ "#f5c2e7",
++ "#89dceb",
++ "#d9e0ee",
+
+ [255] = 0,
+
+ /* more colors can be added after 255 to use with DefaultXX */
+- "#cccccc",
+- "#555555",
+- "gray90", /* default foreground colour */
+- "black", /* default background colour */
++ "#ffffff", /* default foreground color */
++ "#000000", /* default background color */
++ "#d3d7cf", /* default cursor color */
++ "#0000aa", /* reverse cursor color */
+ };
+-
+-
+ /*
+ * Default colors (colorname index)
+ * foreground, background, cursor, reverse cursor
+--
+2.46.2
+