Skip to content

Commit 265ed77

Browse files
committed
feat: add popular terminal emulator themes
1 parent f90f0e1 commit 265ed77

5 files changed

+138
-0
lines changed

extras/alacritty_cyberdream.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# cyberdream theme for Alacritty
2+
colors:
3+
primary:
4+
background: "0x16181a"
5+
foreground: "0xffffff"
6+
7+
normal:
8+
black: "0x16181a"
9+
red: "0xff6e5e"
10+
green: "0x5eff6c"
11+
yellow: "0xf1ff5e"
12+
blue: "0x5ea1ff"
13+
magenta: "0xbd5eff"
14+
cyan: "0x5ef1ff"
15+
white: "0xffffff"
16+
17+
bright:
18+
black: "0x3c4048"
19+
red: "0xff6e5e"
20+
green: "0x5eff6c"
21+
yellow: "0xf1ff5e"
22+
blue: "0x5ea1ff"
23+
magenta: "0xbd5eff"
24+
cyan: "0x5ef1ff"
25+
white: "0xffffff"
26+
27+
selection:
28+
background: "0x3c4048"
29+
foreground: "0xffffff"
30+
31+
indexed_colors:
32+
- { index: 16, color: "0xffbd5e" }
33+
- { index: 17, color: "0xff6e5e" }

extras/cyberdream.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "cyberdream",
3+
"comment": "A high-contrast, futuristic & vibrant colourscheme",
4+
"background-color": "#16181A ",
5+
"foreground-color": "#ffffff",
6+
"badge-color": "#16181A ",
7+
"bold-color": "#5ef1ff",
8+
"cursor-color": "#ffffff",
9+
"highlight-background-color": "#3c4048",
10+
"highlight-foreground-color": "#ffffff",
11+
"palette": [
12+
"#16181a",
13+
"#ff6e5e",
14+
"#5eff6c",
15+
"#f1ff5e",
16+
"#5ea1ff",
17+
"#bd5eff",
18+
"#5ef1ff",
19+
"#ffffff",
20+
"#3c4048",
21+
"#ff6e5e",
22+
"#5eff6c",
23+
"#f1ff5e",
24+
"#5ea1ff",
25+
"#bd5eff",
26+
"#5ef1ff",
27+
"#ffffff"
28+
],
29+
"use-badge-color": false,
30+
"use-bold-color": false,
31+
"use-cursor-color": true,
32+
"use-highlight-color": true,
33+
"use-theme-colors": false
34+
}

extras/pywal-theme.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"colors": {
3+
"color0": "#16181a",
4+
"color1": "#ff6e5e",
5+
"color2": "#5eff6c",
6+
"color3": "#f1ff5e",
7+
"color4": "#5ea1ff",
8+
"color5": "#bd5eff",
9+
"color6": "#5ef1ff",
10+
"color7": "#ffffff",
11+
"color8": "#3c4048",
12+
"color9": "#ff6e5e",
13+
"color10": "#5eff6c",
14+
"color11": "#f1ff5e",
15+
"color12": "#5ea1ff",
16+
"color13": "#bd5eff",
17+
"color14": "#5ef1ff",
18+
"color15": "#ffffff",
19+
"color16": "#ffbd5e",
20+
"color17": "#ff6e5e"
21+
},
22+
"special": {
23+
"foreground": "#ffffff",
24+
"background": "#16181a",
25+
"cursor": "#ffffff"
26+
}
27+
}

extras/wezterm.lua

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
return {
2+
force_reverse_video_cursor = true,
3+
colors = {
4+
foreground = "#ffffff",
5+
background = "#16181A ",
6+
7+
cursor_bg = "#ffffff",
8+
cursor_fg = "#ffffff",
9+
cursor_border = "#ffffff",
10+
11+
selection_fg = "#ffffff",
12+
selection_bg = "#3c4048",
13+
14+
scrollbar_thumb = "#16181a",
15+
split = "#16181a",
16+
17+
ansi = { "#16181a", "#ff6e5e", "#5eff6c", "#f1ff5e", "#5ea1ff", "#bd5eff", "#5ef1ff", "#ffffff" },
18+
brights = { "#3c4048", "#ff6e5e", "#5eff6c", "#f1ff5e", "#5ea1ff", "#bd5eff", "#5ef1ff", "#ffffff" },
19+
indexed = { [16] = "#ffbd5e", [17] = "#ff6e5e" },
20+
},
21+
}

extras/windows_terminal.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"background": "#16181A ",
3+
"black": "#16181a",
4+
"blue": "#5ea1ff",
5+
"brightBlack": "#3c4048",
6+
"brightBlue": "#5ea1ff",
7+
"brightCyan": "#5ef1ff",
8+
"brightGreen": "#5eff6c",
9+
"brightPurple": "#bd5eff",
10+
"brightRed": "#ff6e5e",
11+
"brightWhite": "#ffffff",
12+
"brightYellow": "#f1ff5e",
13+
"cursorColor": "#ffffff",
14+
"cyan": "#5ef1ff",
15+
"foreground": "#ffffff",
16+
"green": "#5eff6c",
17+
"name": "cyberdream",
18+
"purple": "#bd5eff",
19+
"red": "#ff6e5e",
20+
"selectionBackground": "#3c4048",
21+
"white": "#ffffff",
22+
"yellow": "#f1ff5e"
23+
}

0 commit comments

Comments
 (0)