Skip to content

Commit

Permalink
feat: add popular terminal emulator themes
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Dec 26, 2023
1 parent f90f0e1 commit 265ed77
Show file tree
Hide file tree
Showing 5 changed files with 138 additions and 0 deletions.
33 changes: 33 additions & 0 deletions extras/alacritty_cyberdream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# cyberdream theme for Alacritty
colors:
primary:
background: "0x16181a"
foreground: "0xffffff"

normal:
black: "0x16181a"
red: "0xff6e5e"
green: "0x5eff6c"
yellow: "0xf1ff5e"
blue: "0x5ea1ff"
magenta: "0xbd5eff"
cyan: "0x5ef1ff"
white: "0xffffff"

bright:
black: "0x3c4048"
red: "0xff6e5e"
green: "0x5eff6c"
yellow: "0xf1ff5e"
blue: "0x5ea1ff"
magenta: "0xbd5eff"
cyan: "0x5ef1ff"
white: "0xffffff"

selection:
background: "0x3c4048"
foreground: "0xffffff"

indexed_colors:
- { index: 16, color: "0xffbd5e" }
- { index: 17, color: "0xff6e5e" }
34 changes: 34 additions & 0 deletions extras/cyberdream.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "cyberdream",
"comment": "A high-contrast, futuristic & vibrant colourscheme",
"background-color": "#16181A ",
"foreground-color": "#ffffff",
"badge-color": "#16181A ",
"bold-color": "#5ef1ff",
"cursor-color": "#ffffff",
"highlight-background-color": "#3c4048",
"highlight-foreground-color": "#ffffff",
"palette": [
"#16181a",
"#ff6e5e",
"#5eff6c",
"#f1ff5e",
"#5ea1ff",
"#bd5eff",
"#5ef1ff",
"#ffffff",
"#3c4048",
"#ff6e5e",
"#5eff6c",
"#f1ff5e",
"#5ea1ff",
"#bd5eff",
"#5ef1ff",
"#ffffff"
],
"use-badge-color": false,
"use-bold-color": false,
"use-cursor-color": true,
"use-highlight-color": true,
"use-theme-colors": false
}
27 changes: 27 additions & 0 deletions extras/pywal-theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"colors": {
"color0": "#16181a",
"color1": "#ff6e5e",
"color2": "#5eff6c",
"color3": "#f1ff5e",
"color4": "#5ea1ff",
"color5": "#bd5eff",
"color6": "#5ef1ff",
"color7": "#ffffff",
"color8": "#3c4048",
"color9": "#ff6e5e",
"color10": "#5eff6c",
"color11": "#f1ff5e",
"color12": "#5ea1ff",
"color13": "#bd5eff",
"color14": "#5ef1ff",
"color15": "#ffffff",
"color16": "#ffbd5e",
"color17": "#ff6e5e"
},
"special": {
"foreground": "#ffffff",
"background": "#16181a",
"cursor": "#ffffff"
}
}
21 changes: 21 additions & 0 deletions extras/wezterm.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
return {
force_reverse_video_cursor = true,
colors = {
foreground = "#ffffff",
background = "#16181A ",

cursor_bg = "#ffffff",
cursor_fg = "#ffffff",
cursor_border = "#ffffff",

selection_fg = "#ffffff",
selection_bg = "#3c4048",

scrollbar_thumb = "#16181a",
split = "#16181a",

ansi = { "#16181a", "#ff6e5e", "#5eff6c", "#f1ff5e", "#5ea1ff", "#bd5eff", "#5ef1ff", "#ffffff" },
brights = { "#3c4048", "#ff6e5e", "#5eff6c", "#f1ff5e", "#5ea1ff", "#bd5eff", "#5ef1ff", "#ffffff" },
indexed = { [16] = "#ffbd5e", [17] = "#ff6e5e" },
},
}
23 changes: 23 additions & 0 deletions extras/windows_terminal.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"background": "#16181A ",
"black": "#16181a",
"blue": "#5ea1ff",
"brightBlack": "#3c4048",
"brightBlue": "#5ea1ff",
"brightCyan": "#5ef1ff",
"brightGreen": "#5eff6c",
"brightPurple": "#bd5eff",
"brightRed": "#ff6e5e",
"brightWhite": "#ffffff",
"brightYellow": "#f1ff5e",
"cursorColor": "#ffffff",
"cyan": "#5ef1ff",
"foreground": "#ffffff",
"green": "#5eff6c",
"name": "cyberdream",
"purple": "#bd5eff",
"red": "#ff6e5e",
"selectionBackground": "#3c4048",
"white": "#ffffff",
"yellow": "#f1ff5e"
}

0 comments on commit 265ed77

Please sign in to comment.