Compare commits
No commits in common. "03a3b0f9ccb829492af82a94836bd2927c52ced8" and "f76619d5e1d8962916cd015c7d3e6118235e8364" have entirely different histories.
03a3b0f9cc
...
f76619d5e1
|
@ -1,2 +0,0 @@
|
||||||
st
|
|
||||||
*.o
|
|
|
@ -9,6 +9,7 @@ Patches
|
||||||
Themes
|
Themes
|
||||||
--
|
--
|
||||||
- Catppuccin frappe
|
- Catppuccin frappe
|
||||||
- Catppuccin latte
|
- To change theme to catppuccin latte use
|
||||||
- Tokyo night
|
```sh
|
||||||
To change theme edit include in config.h
|
git apply apply_latte.diff
|
||||||
|
```
|
||||||
|
|
|
@ -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
|
|
@ -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;
|
|
Loading…
Reference in New Issue