Compare commits

..

No commits in common. "03a3b0f9ccb829492af82a94836bd2927c52ced8" and "f76619d5e1d8962916cd015c7d3e6118235e8364" have entirely different histories.

4 changed files with 17 additions and 37 deletions

2
.gitignore vendored
View File

@ -1,2 +0,0 @@
st
*.o

View File

@ -9,6 +9,7 @@ Patches
Themes
--
- Catppuccin frappe
- Catppuccin latte
- Tokyo night
To change theme edit include in config.h
- To change theme to catppuccin latte use
```sh
git apply apply_latte.diff
```

13
apply_latte.diff Normal file
View File

@ -0,0 +1,13 @@
diff --git a/config.h b/config.h
index e7b14ea..8691b82 100644
--- a/config.h
+++ b/config.h
@@ -99,7 +99,7 @@ unsigned int tabspaces = 8;
/*
* Include theme
*/
-#include "frappe.h"
+#include "latte.h"
/*
* Default shape of cursor

View File

@ -1,32 +0,0 @@
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
[0] = "#1a1b26", /* black */
[1] = "#f7768e", /* red */
[2] = "#9ece6a", /* green */
[3] = "#e0af68", /* yellow */
[4] = "#2ac3de", /* blue */
[5] = "#bb9af7", /* magenta */
[6] = "#7dcfff", /* cyan */
[7] = "#d5d6db", /* white */
/* 8 bright colors */
[8] = "#1a1b26", /* black */
[9] = "#f7768e", /* red */
[10] = "#9ece6a", /* green */
[11] = "#e0af68", /* yellow */
[12] = "#2ac3de", /* blue */
[13] = "#bb9af7", /* magenta */
[14] = "#7dcfff", /* cyan */
[15] = "#cfc9c2", /* white */
/* special colors */
[256] = "#1a1b26", /* background */
[257] = "#cfc9c2", /* foreground */
};
unsigned int defaultfg = 257;
unsigned int defaultbg = 256;
unsigned int defaultcs = 257;
static unsigned int defaultrcs = 257;