From f7ce7ffaea703a71c18128a573aca3cdd29ea8e2 Mon Sep 17 00:00:00 2001 From: blake <572337+bartenbach@users.noreply.github.com> Date: Sat, 18 Dec 2021 08:42:13 -0600 Subject: [PATCH] added cyberpunk neon theme --- Color-schemes.md | 57 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/Color-schemes.md b/Color-schemes.md index 22109d1..33c3a5c 100644 --- a/Color-schemes.md +++ b/Color-schemes.md @@ -367,6 +367,63 @@ colors: ```
++ +```yaml +draw_bold_text_with_bright_colors: true + +# Cyberpunk-Neon colours +colors: + # Default colours + primary: + background: '0x000b1e' + foreground: '0x0abdc6' + + # Colors that should be used to draw the terminal cursor. If these are unset, + # the cursor colour will be the inverse of the cell colour. + # cursor: + # text: '0x2e2e2d' + # # text: '0x000000' + # cursor: '0xffffff' + + # Normal colors + normal: + black: '0x123e7c' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x123e7c' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' + + # Bright colors + bright: + black: '0x1c61c2' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x00ff00' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' + + # dim colors + dim: + black: '0x1c61c2' + red: '0xff0000' + green: '0xd300c4' + yellow: '0xf57800' + blue: '0x123e7c' + magenta: '0x711c91' + cyan: '0x0abdc6' + white: '0xd7d7d5' + +``` + +