diff --git a/show_colors.sh b/show_colors.sh new file mode 100755 index 0000000..ecf4dc4 --- /dev/null +++ b/show_colors.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# Syntax of colors from https: //misc.flogisoft.com/bash/tip_colors_and_formatting + +NC='\033[0m' + +# Colors +echo -e "" +echo -e " \033[39mRegular${NC} \033[1;39mBold${NC} \033[30;107mBackground${NC} \033[30;107mLighter BG${NC}" +echo -e "30: \033[30mBlack${NC} \033[1;30mBlack${NC}" +echo -e "31: \033[31mRed${NC} \033[1;31mRed${NC} \033[41mRed${NC} \033[101mRed${NC}" +echo -e "32: \033[32mGreen${NC} \033[1;32mGreen${NC} \033[42mGreen${NC} \033[102mgreen${NC}" +echo -e "33: \033[33mYellow${NC} \033[1;33mYellow${NC} \033[43mYellow${NC} \033[103mYellow${NC}" +echo -e "34: \033[34mBlue${NC} \033[1;34mBlue${NC} \033[44mBlue${NC} \033[104mBlue${NC}" +echo -e "35: \033[35mMagenta${NC} \033[1;35mMagenta${NC} \033[45mMagenta${NC} \033[105mMagenta${NC}" +echo -e "36: \033[36mCyan${NC} \033[1;36mCyan${NC} \033[46mCyan${NC} \033[106mCyan${NC}" +echo -e "37: \033[37mGray${NC} \033[1;37mGray${NC} \033[47mGray${NC} \033[100mGray${NC}" +echo -e "39: \033[39mWhite${NC} \033[1;39mWhite${NC} \033[107mWhite${NC} \033[107mWhite${NC}" +echo -e "" \ No newline at end of file diff --git a/themes/argonaut.yml b/themes/argonaut.yml new file mode 100644 index 0000000..aac21c4 --- /dev/null +++ b/themes/argonaut.yml @@ -0,0 +1,33 @@ +# Colors (Argonaut) +colors: + # Default colors + primary: + background: '#292C3E' + foreground: '#EBEBEB' + + # Cursor colors + cursor: + text: '#FF261E' + cursor: '#FF261E' + + # Normal colors + normal: + black: '#0d0d0d' + red: '#FF301B' + green: '#A0E521' + yellow: '#FFC620' + blue: '#1BA6FA' + magenta: '#8763B8' + cyan: '#21DEEF' + white: '#EBEBEB' + + # Bright colors + bright: + black: '#6D7070' + red: '#FF4352' + green: '#B8E466' + yellow: '#FFD750' + blue: '#1BA6FA' + magenta: '#A578EA' + cyan: '#73FBF1' + white: '#FEFEF8' diff --git a/themes/bloodmoon.yml b/themes/bloodmoon.yml new file mode 100644 index 0000000..2ca9bf4 --- /dev/null +++ b/themes/bloodmoon.yml @@ -0,0 +1,28 @@ +# Colors (Blood Moon) +colors: + # Default colors + primary: + background: '#10100E' + foreground: '#C6C6C4' + + # Normal colors + normal: + black: '#10100E' + red: '#C40233' + green: '#009F6B' + yellow: '#FFD700' + blue: '#0087BD' + magenta: '#9A4EAE' + cyan: '#20B2AA' + white: '#C6C6C4' + + # Bright colors + bright: + black: '#696969' + red: '#FF2400' + green: '#03C03C' + yellow: '#FDFF00' + blue: '#007FFF' + magenta: '#FF1493' + cyan: '#00CCCC' + white: '#FFFAFA' diff --git a/themes/hyper.yml b/themes/hyper.yml new file mode 100644 index 0000000..167df39 --- /dev/null +++ b/themes/hyper.yml @@ -0,0 +1,33 @@ +# Colors (Hyper) +colors: + # Default colors + primary: + background: '#000000' + foreground: '#ffffff' + cursor: + text: '#F81CE5' + cursor: '#ffffff' + + # Normal colors + normal: + black: '#000000' + red: '#fe0100' + green: '#33ff00' + yellow: '#FFD700' + # yellow: '#feff00' + blue: '#0066ff' + magenta: '#cc00ff' + cyan: '#00ffff' + white: '#d0d0d0' + + # Bright colors + bright: + black: '#808080' + red: '#fe0100' + green: '#33ff00' + yellow: '#FFD700' + # yellow: '#feff00' + blue: '#0066ff' + magenta: '#cc00ff' + cyan: '#00ffff' + white: '#FFFFFF' diff --git a/themes/iterm2.yml b/themes/iterm2.yml new file mode 100644 index 0000000..c7a6f88 --- /dev/null +++ b/themes/iterm2.yml @@ -0,0 +1,28 @@ +# Colors (iTerm 2 default theme) +colors: + # Default colors + primary: + background: '#101421' + foreground: '#fffbf6' + + # Normal colors + normal: + black: '#2e2e2e' + red: '#eb4129' + green: '#abe047' + yellow: '#f6c744' + blue: '#47a0f3' + magenta: '#7b5cb0' + cyan: '#64dbed' + white: '#e5e9f0' + + # Bright colors + bright: + black: '#565656' + red: '#ec5357' + green: '#c0e17d' + yellow: '#f9da6a' + blue: '#49a4f8' + magenta: '#a47de9' + cyan: '#99faf2' + white: '#ffffff' diff --git a/themes/material.yml b/themes/material.yml new file mode 100644 index 0000000..ae10c91 --- /dev/null +++ b/themes/material.yml @@ -0,0 +1,28 @@ +# Colors (Material Theme) +colors: + # Default colors + primary: + background: '#263238' + foreground: '#eeffff' + + # Normal colors + normal: + black: '#000000' + red: '#e53935' + green: '#91b859' + yellow: '#ffb62c' + blue: '#6182b8' + magenta: '#ff5370' + cyan: '#39adb5' + white: '#a0a0a0' + + # Bright colors + bright: + black: '#4e4e4e' + red: '#ff5370' + green: '#c3e88d' + yellow: '#ffcb6b' + blue: '#82aaff' + magenta: '#f07178' + cyan: '#89ddff' + white: '#ffffff' diff --git a/themes/monokaiSoda.yml b/themes/monokaiSoda.yml new file mode 100644 index 0000000..3dff99e --- /dev/null +++ b/themes/monokaiSoda.yml @@ -0,0 +1,28 @@ +# Colors (Monokai Soda) +colors: + # Default colors + primary: + background: '#1a1a1a' + foreground: '#c4c5b5' + + # Normal colors + normal: + black: '#1a1a1a' + red: '#f4005f' + green: '#98e024' + yellow: '#fa8419' + blue: '#9d65ff' + magenta: '#f4005f' + cyan: '#58d1eb' + white: '#c4c5b5' + + # Bright colors + bright: + black: '#625e4c' + red: '#f4005f' + green: '#98e024' + yellow: '#e0d561' + blue: '#9d65ff' + magenta: '#f4005f' + cyan: '#58d1eb' + white: '#f6f6ef' diff --git a/themes/pop_OS.yml b/themes/pop_OS.yml new file mode 100644 index 0000000..5ceaf7d --- /dev/null +++ b/themes/pop_OS.yml @@ -0,0 +1,28 @@ +# Colors (Pop OS) +colors: + # Default colors + primary: + background: '#333333' + foreground: '#F2F2F2' + + # Normal colors + normal: + black: '#333333' + red: '#CC0000' + green: '#4E9A06' + yellow: '#C4A000' + blue: '#3465A4' + magenta: '#75507B' + cyan: '#06989A' + white: '#D3D7CF' + + # Bright colors + bright: + black: '#88807C' + red: '#F15D22' + green: '#73C48F' + yellow: '#FFCE51' + blue: '#48B9C7' + magenta: '#AD7FA8' + cyan: '#34E2E2' + white: '#EEEEEC' diff --git a/themes/robocopAlpha.yml b/themes/robocopAlpha.yml new file mode 100644 index 0000000..a488816 --- /dev/null +++ b/themes/robocopAlpha.yml @@ -0,0 +1,27 @@ +# RobocopAlpha colors +colors: +# Default colors + primary: + background: '#000000' + foreground: '#FFFFFF' + + normal: + black: '#000000' + red: '#FF2222' + green: '#22BB22' + yellow: '#BBBB22' + blue: '#2279FF' + magenta: '#BB22BB' + cyan: '#22BBBB' + white: '#DDDDDD' + + # Bright colors + bright: + black: '#888888' + red: '#FF2222' + green: '#22FF22' + yellow: '#FFFF22' + blue: '#2279FF' + magenta: '#FF22FF' + cyan: '#22FFFF' + white: '#FFFFFF' diff --git a/themes/seabird.yml b/themes/seabird.yml new file mode 100644 index 0000000..55bfe19 --- /dev/null +++ b/themes/seabird.yml @@ -0,0 +1,29 @@ +# Colors (Seabird) +colors: + # Default colors + primary: + background: '#ffffff' + # foreground: '#61707a' + foreground: '#1A1A1A' + + # Normal colors + normal: + black: '#0b141a' + red: '#ff4053' + green: '#11ab00' + yellow: '#bf8c00' + blue: '#0099ff' + magenta: '#9854ff' + cyan: '#00a5ab' + white: '#ffffff' + + # Bright colors + bright: + black: '#0b141a' + red: '#ff4053' + green: '#11ab00' + yellow: '#bf8c00' + blue: '#0099ff' + magenta: '#9854ff' + cyan: '#00a5ab' + white: '#ffffff' diff --git a/themes/spacemacsLight.yml b/themes/spacemacsLight.yml new file mode 100644 index 0000000..f440bd0 --- /dev/null +++ b/themes/spacemacsLight.yml @@ -0,0 +1,32 @@ +# color (Spacemacs light) +colors: + primary: + foreground: '#64526F' + background: '#FAF7EE' + + cursor: + cursor: '#64526F' + text: '#FAF7EE' + normal: + black: '#FAF7EE' + red: '#DF201C' + green: '#009F6B' + # green: '#29A0AD' + yellow: '#DB742E' + blue: '#3980C2' + magenta: '#29A0AD' + # magenta: '#2C9473' + cyan: '#6B3062' + white: '#64526F' + + bright: + black: '#9F93A1' + red: '#DF201C' + green: '#009F6B' + # green: '#29A0AD' + yellow: '#DB742E' + blue: '#3980C2' + magenta: '#29A0AD' + # magenta: '#2C9473' + cyan: '#6B3062' + white: '#64526F' diff --git a/themes/terminalBasic.yml b/themes/terminalBasic.yml new file mode 100644 index 0000000..5461114 --- /dev/null +++ b/themes/terminalBasic.yml @@ -0,0 +1,24 @@ +# Colors (Terminal.app Basic) +colors: + primary: + background: '#FFFFFF' + foreground: '#000000' + normal: + black: '#000000' + red: '#990000' + green: '#00A600' + yellow: '#e1b600' + blue: '#0000B2' + magenta: '#B200B2' + cyan: '#00A6B2' + white: '#BFBFBF' + bright: + black: '#666666' + red: '#E50000' + green: '#00D900' + yellow: '#e1b600' + blue: '#0000FF' + magenta: '#E500E5' + cyan: '#00E5E5' + white: '#E5E5E5' + diff --git a/themes/ubuntu.yml b/themes/ubuntu.yml new file mode 100644 index 0000000..74a0719 --- /dev/null +++ b/themes/ubuntu.yml @@ -0,0 +1,28 @@ +# Colors (Ubuntu) +colors: + # Default colors + primary: + background: '#300a24' + foreground: '#eeeeec' + + # Normal colors + normal: + black: '#2e3436' + red: '#cc0000' + green: '#4e9a06' + yellow: '#c4a000' + blue: '#3465a4' + magenta: '#75507b' + cyan: '#06989a' + white: '#d3d7cf' + + # Bright colors + bright: + black: '#555753' + red: '#ef2929' + green: '#8ae234' + yellow: '#fce94f' + blue: '#729fcf' + magenta: '#ad7fa8' + cyan: '#34e2e2' + white: '#eeeeec'