Compare commits

..

2 Commits

Author SHA1 Message Date
Nakidai 03a3b0f9cc Remove diff file 2023-12-02 14:17:43 +03:00
Nakidai 82bbb8cbf6 Add tokyo night theme 2023-12-02 14:15:38 +03:00
4 changed files with 37 additions and 17 deletions

2
.gitignore vendored Normal file
View File

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

View File

@ -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
```

View File

@ -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

32
tokyo_night.h Normal file
View File

@ -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;