From 265ed77f93d3378d33c80d9c22b96488f58ab147 Mon Sep 17 00:00:00 2001 From: Scott McKendry <39483124+scottmckendry@users.noreply.github.com> Date: Tue, 26 Dec 2023 13:45:12 +1300 Subject: [PATCH] feat: add popular terminal emulator themes --- extras/alacritty_cyberdream.yml | 33 ++++++++++++++++++++++++++++++++ extras/cyberdream.json | 34 +++++++++++++++++++++++++++++++++ extras/pywal-theme.json | 27 ++++++++++++++++++++++++++ extras/wezterm.lua | 21 ++++++++++++++++++++ extras/windows_terminal.json | 23 ++++++++++++++++++++++ 5 files changed, 138 insertions(+) create mode 100644 extras/alacritty_cyberdream.yml create mode 100644 extras/cyberdream.json create mode 100644 extras/pywal-theme.json create mode 100644 extras/wezterm.lua create mode 100644 extras/windows_terminal.json diff --git a/extras/alacritty_cyberdream.yml b/extras/alacritty_cyberdream.yml new file mode 100644 index 0000000..a498809 --- /dev/null +++ b/extras/alacritty_cyberdream.yml @@ -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" } diff --git a/extras/cyberdream.json b/extras/cyberdream.json new file mode 100644 index 0000000..d3bdd13 --- /dev/null +++ b/extras/cyberdream.json @@ -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 +} diff --git a/extras/pywal-theme.json b/extras/pywal-theme.json new file mode 100644 index 0000000..91482e1 --- /dev/null +++ b/extras/pywal-theme.json @@ -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" + } +} diff --git a/extras/wezterm.lua b/extras/wezterm.lua new file mode 100644 index 0000000..186e8da --- /dev/null +++ b/extras/wezterm.lua @@ -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" }, + }, +} diff --git a/extras/windows_terminal.json b/extras/windows_terminal.json new file mode 100644 index 0000000..4ff0323 --- /dev/null +++ b/extras/windows_terminal.json @@ -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" +}