mirror of
https://github.com/webhooked/kanso.nvim.git
synced 2026-05-31 14:17:00 +02:00
ADD: Simple Terminal
This commit is contained in:
parent
85ad1002b2
commit
5f4d67ea0e
6 changed files with 182 additions and 0 deletions
22
extras/st/kanso-ink/theme.h
Normal file
22
extras/st/kanso-ink/theme.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
static const char *colorname[] = {
|
||||
"#14171D",
|
||||
"#c4746e",
|
||||
"#8a9a7b",
|
||||
"#c4b28a",
|
||||
"#8ba4b0",
|
||||
"#a292a3",
|
||||
"#8ea4a2",
|
||||
"#c8c093", // Change this to #C5C9C7 if you prefer
|
||||
"#a4a7a4",
|
||||
"#e46876",
|
||||
"#87a987",
|
||||
"#e6c384",
|
||||
"#7fb4ca",
|
||||
"#938aa9",
|
||||
"#7aa89f",
|
||||
"#c5c9c7",
|
||||
};
|
||||
|
||||
unsigned int defaultcs = 15;
|
||||
unsigned int defaultbg = 0;
|
||||
unsigned int defaultfg = 15;
|
||||
26
extras/st/kanso-pearl/theme.h
Normal file
26
extras/st/kanso-pearl/theme.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
static const char *colorname[] = {
|
||||
"#24262D", // 0
|
||||
"#C84053",
|
||||
"#6F894E",
|
||||
"#77713F",
|
||||
"#4D699B",
|
||||
"#B35B79",
|
||||
"#597B75",
|
||||
"#545464",
|
||||
"#6D6F6E",
|
||||
"#D7474B",
|
||||
"#6E915F",
|
||||
"#836F4A",
|
||||
"#6693BF",
|
||||
"#624C83",
|
||||
"#5E857A",
|
||||
"#43436C",
|
||||
[255] = 0,
|
||||
"#F2F1EF", // 256
|
||||
};
|
||||
|
||||
unsigned int defaultcs = 15;
|
||||
unsigned int defaultbg = 256;
|
||||
unsigned int defaultfg = 0;
|
||||
|
||||
|
||||
22
extras/st/kanso-zen/theme.h
Normal file
22
extras/st/kanso-zen/theme.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
static const char *colorname[] = {
|
||||
"#090E13",
|
||||
"#c4746e",
|
||||
"#8a9a7b",
|
||||
"#c4b28a",
|
||||
"#8ba4b0",
|
||||
"#a292a3",
|
||||
"#8ea4a2",
|
||||
"#c8c093", // Change this to #C5C9C7 if you prefer
|
||||
"#a4a7a4",
|
||||
"#e46876",
|
||||
"#87a987",
|
||||
"#e6c384",
|
||||
"#7fb4ca",
|
||||
"#938aa9",
|
||||
"#7aa89f",
|
||||
"#c5c9c7",
|
||||
};
|
||||
|
||||
unsigned int defaultcs = 15;
|
||||
unsigned int defaultbg = 0;
|
||||
unsigned int defaultfg = 15;
|
||||
38
extras/urxvt/kanso-ink/.Xresources
Normal file
38
extras/urxvt/kanso-ink/.Xresources
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
!! Colorscheme
|
||||
|
||||
! special
|
||||
*.foreground: #C5C9C7
|
||||
*.background: #14171D
|
||||
*.cursorColor: #C5C9C7
|
||||
|
||||
! black
|
||||
*.color0: #14171D
|
||||
*.color8: #A4A7A4
|
||||
|
||||
! red
|
||||
*.color1: #c4746e
|
||||
*.color9: #e46876
|
||||
|
||||
! green
|
||||
*.color2: #8a9a7b
|
||||
*.color10: #87a987
|
||||
|
||||
! yellow
|
||||
*.color3: #c4b28a
|
||||
*.color11: #e6c384
|
||||
|
||||
! blue
|
||||
*.color4: #8ba4b0
|
||||
*.color12: #7fb4ca
|
||||
|
||||
! magenta
|
||||
*.color5: #a292a3
|
||||
*.color13: #938aa9
|
||||
|
||||
! cyan
|
||||
*.color6: #8ea4a2
|
||||
*.color14: #7aa89f
|
||||
|
||||
! white
|
||||
*.color7: #c8c093
|
||||
*.color15: #c5c9c7
|
||||
36
extras/urxvt/kanso-pearl/.Xresources
Normal file
36
extras/urxvt/kanso-pearl/.Xresources
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
! special
|
||||
*.foreground: #24262D
|
||||
*.background: #f2f1ef
|
||||
*.cursorColor: #24262D
|
||||
|
||||
! black
|
||||
*.color0: #24262D
|
||||
*.color8: #6D6F6E
|
||||
|
||||
! red
|
||||
*.color1: #c84053
|
||||
*.color9: #d7474b
|
||||
|
||||
! green
|
||||
*.color2: #6f894e
|
||||
*.color10: #6e915f
|
||||
|
||||
! yellow
|
||||
*.color3: #77713f
|
||||
*.color11: #836f4a
|
||||
|
||||
! blue
|
||||
*.color4: #4d699b
|
||||
*.color12: #6693bf
|
||||
|
||||
! magenta
|
||||
*.color5: #b35b79
|
||||
*.color13: #624c83
|
||||
|
||||
! cyan
|
||||
*.color6: #597b75
|
||||
*.color14: #5e857a
|
||||
|
||||
! white
|
||||
*.color7: #545464
|
||||
*.color15: #43436c
|
||||
38
extras/urxvt/kanso-zen/.Xresources
Normal file
38
extras/urxvt/kanso-zen/.Xresources
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
!! Colorscheme
|
||||
|
||||
! special
|
||||
*.foreground: #C5C9C7
|
||||
*.background: #090E13
|
||||
*.cursorColor: #C5C9C7
|
||||
|
||||
! black
|
||||
*.color0: #090E13
|
||||
*.color8: #A4A7A4
|
||||
|
||||
! red
|
||||
*.color1: #c4746e
|
||||
*.color9: #e46876
|
||||
|
||||
! green
|
||||
*.color2: #8a9a7b
|
||||
*.color10: #87a987
|
||||
|
||||
! yellow
|
||||
*.color3: #c4b28a
|
||||
*.color11: #e6c384
|
||||
|
||||
! blue
|
||||
*.color4: #8ba4b0
|
||||
*.color12: #7fb4ca
|
||||
|
||||
! magenta
|
||||
*.color5: #a292a3
|
||||
*.color13: #938aa9
|
||||
|
||||
! cyan
|
||||
*.color6: #8ea4a2
|
||||
*.color14: #7aa89f
|
||||
|
||||
! white
|
||||
*.color7: #c8c093
|
||||
*.color15: #c5c9c7
|
||||
Loading…
Add table
Add a link
Reference in a new issue