Compare commits
2 Commits
f76619d5e1
...
03a3b0f9cc
Author | SHA1 | Date |
---|---|---|
Nakidai | 03a3b0f9cc | |
Nakidai | 82bbb8cbf6 |
|
@ -0,0 +1,2 @@
|
||||||
|
st
|
||||||
|
*.o
|
|
@ -9,7 +9,6 @@ Patches
|
||||||
Themes
|
Themes
|
||||||
--
|
--
|
||||||
- Catppuccin frappe
|
- Catppuccin frappe
|
||||||
- To change theme to catppuccin latte use
|
- Catppuccin latte
|
||||||
```sh
|
- Tokyo night
|
||||||
git apply apply_latte.diff
|
To change theme edit include in config.h
|
||||||
```
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
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
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
/* 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