Color Scheme for Gnome Terminal and Pantheon Terminal https://mayccoll.github.io/gogh/
Go to file
Mayccoll 8575840ee8 upload image 2015-04-19 11:20:45 -05:00
images upload image 2015-04-19 11:20:45 -05:00
README.md New name for this project 2015-04-19 10:25:24 -05:00
aci.sh Add new themes aci and aco 2014-05-20 15:24:06 -05:00
aco.sh Add new themes aci and aco 2014-05-20 15:24:06 -05:00
azu.sh update readme file 2014-04-23 20:54:55 -05:00
base.sh Update base and remove image 2015-04-12 20:11:18 -05:00
bim.sh remove themes 2014-11-03 17:19:46 -05:00
cai.sh update readme file 2014-04-23 20:54:55 -05:00
elementary.sh update readme file 2014-04-23 20:54:55 -05:00
elic.sh update readme file 2014-04-23 20:54:55 -05:00
elio.sh update readme file 2014-04-23 20:54:55 -05:00
flat.sh add flat image new theme 2015-04-19 11:15:27 -05:00
freya.sh fix colors, freya 0.3 final version color scheme 2015-04-12 21:06:50 -05:00
hybrid.sh Hybrid theme 2015-01-02 13:13:30 +01:00
jup.sh remove themes 2014-11-03 17:19:46 -05:00
mar.sh remove themes 2014-11-03 17:19:46 -05:00
miu.sh update readme file 2014-04-23 20:54:55 -05:00
nep.sh remove themes 2014-11-03 17:19:46 -05:00
pali.sh new script file and theme pali 2014-12-14 15:49:19 -05:00
sat.sh remove themes 2014-11-03 17:19:46 -05:00
shel.sh remove themes 2014-11-03 17:19:46 -05:00
tin.sh update readme file 2014-04-23 20:54:55 -05:00
ura.sh remove themes 2014-11-03 17:19:46 -05:00
vag.sh remove themes 2014-11-03 17:19:46 -05:00

README.md

Gogh

Color Scheme for Gnome Terminal

Color Schemes For Ubuntu, Linux Mint and all distributions that use gnome terminal, initially inspired by Elementary OS.

elementary

What's New

Elementary os Freya 0.3 color scheme.

  wget -O xt  http://git.io/vvmPj && chmod +x xt && ./xt && rm xt

new

How to install:

  • Just copy and paste One line command
    $ wget -O xt  http://git.io/fXU8Jg && chmod +x xt && ./xt && rm xt

This way of installing is equals the below, the only thing is that a shortening of urls (git.io) was used and fits all commands on a single line.

  • or Download and save the script file, make this file executable and run it:
    $ wget https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/elementary.sh
    $ chmod +x elementary.sh
    $ ./elementary.sh

Elementary OS

  • Uncomment the following line in .bashrc
    #force_color_prompt=yes
  • execute in terminal
    $ source .bashrc

New Script

To have more control over colors, I made a new simple script to change those made with 4 bits. This new script has variables which can be set according to preferences. Please feel free to use and create your own color schemes.

You can send Pull Request.

  • The Script

https://github.com/Mayccoll/Elementary-OS-Terminal-Colors/blob/master/base.sh

  • Variables
    BACKGROUD_COLOR="#2F373B"    # Background Color
    FOREGROUND_COLOR="#d9e6f2"   # Text

    COLOR_01="#383838"           # HOST
    COLOR_02="#9f9393"           # SYNTAX_STRING
    COLOR_03="#939f93"           # COMMAND
    COLOR_04="#9f9f93"           # COMMAND_COLOR2
    COLOR_05="#7cafc2"           # PATH
    COLOR_06="#9f939f"           # SYNTAX_VAR
    COLOR_07="#ab4642"           # PROMP
    COLOR_08="#F2F2F2"           #

    COLOR_09="#5D5D5D"           #
    COLOR_10="#ab4642"           # COMMAND_ERROR
    COLOR_11="#a1b56c"           # EXEC
    COLOR_12="#FFD00A"           #
    COLOR_13="#7cafc2"           # FOLDER
    COLOR_14="#FF1D62"           #
    COLOR_15="#4BB8FD"           #
    COLOR_16="#A020F0"           #
  • Explanation of colors and variables

The colors of the terminal are composed of 18 colors in 3 sections.

Section 1: Regular text.

Section 2: Bold text.

Section 3: text and background.

The basic colors are 8:

  • Black
  • Red
  • Green
  • Yellow
  • Blue
  • Purple
  • Cyan
  • White

In comments variables is that of the console belongs each color.

Here is a picture that explains a little better as colors are distributed.

Colors

  • View Colors

You can use this alias to view your color scheme in termial

colors () {
    echo ""
    echo "# Regular"

    #black
    echo -e "\e[0;30m *** AaBbCs ---  ███ \\e[0m ---> COLOR_01"
    #red
    echo -e "\e[0;31m *** AaBbCs ---  ███ \\e[0m ---> COLOR_02"
    #green
    echo -e "\e[0;32m *** AaBbCs ---  ███ \\e[0m ---> COLOR_03"
    #yellow
    echo -e "\e[0;33m *** AaBbCs ---  ███ \\e[0m ---> COLOR_04"
    #blue
    echo -e "\e[0;34m *** AaBbCs ---  ███ \\e[0m ---> COLOR_05"
    #purple
    echo -e "\e[0;35m *** AaBbCs ---  ███ \\e[0m ---> COLOR_06"
    #cyan
    echo -e "\e[0;36m *** AaBbCs ---  ███ \\e[0m ---> COLOR_07"
    #white
    echo -e "\e[0;37m *** AaBbCs ---  ███ \\e[0m ---> COLOR_08"

    echo ""
    echo "# Bold"

    #black
    echo -e "\e[1;30m *** AaBbCs ---  ███ \\e[0m ---> COLOR_09"
    #red
    echo -e "\e[1;31m *** AaBbCs ---  ███ \\e[0m ---> COLOR_10"
    #green
    echo -e "\e[1;32m *** AaBbCs ---  ███ \\e[0m ---> COLOR_11"
    #yellow
    echo -e "\e[1;33m *** AaBbCs ---  ███ \\e[0m ---> COLOR_12"
    #blue
    echo -e "\e[1;34m *** AaBbCs ---  ███ \\e[0m ---> COLOR_13"
    #purple
    echo -e "\e[1;35m *** AaBbCs ---  ███ \\e[0m ---> COLOR_14"
    #cyan
    echo -e "\e[1;36m *** AaBbCs ---  ███ \\e[0m ---> COLOR_15"
    #white
    echo -e "\e[1;37m *** AaBbCs ---  ███ \\e[0m ---> COLOR_16"

}

Credits:

contributors:


More themes:

  • Freya.sh

freya

# One line install:
$ wget -O xt  http://git.io/vvmPj && chmod +x xt && ./xt && rm xt
  • aci.sh

aci

# One line install:
$ wget -O xt  http://git.io/mGzs5Q && chmod +x xt && ./xt && rm xt
  • aco.sh

aco

# One line install:
$ wget -O xt  http://git.io/0l4A5w && chmod +x xt && ./xt && rm xt
  • azu.sh

azu

# One line install:
$ wget -O xt  http://git.io/pDU8aQ && chmod +x xt && ./xt && rm xt
  • cai.sh

cai

# One line install:
$ wget -O xt  http://git.io/ECkzjg && chmod +x xt && ./xt && rm xt
  • elic.sh

elic

# One line install:
$ wget -O xt  http://git.io/sSSshQ && chmod +x xt && ./xt && rm xt
  • elio.sh

elio

# One line install:
$ wget -O xt  http://git.io/bCVhIA && chmod +x xt && ./xt && rm xt
  • miu.sh

miu

# One line install:
$ wget -O xt  http://git.io/b-eZVQ && chmod +x xt && ./xt && rm xt
  • tin.sh

tin

# One line install:
$ wget -O xt  http://git.io/W5dkrA && chmod +x xt && ./xt && rm xt
  • elementary.sh

elementary

# One line install:
$ wget -O xt  http://git.io/fXU8Jg && chmod +x xt && ./xt && rm xt
  • vag.sh

vag

# One line install:
$ wget -O xt  http://git.io/xwkzlg && chmod +x xt && ./xt && rm xt
  • bim.sh

bim

# One line install:
$ wget -O xt  http://git.io/-t0lXg && chmod +x xt && ./xt && rm xt
  • jup.sh

jup

# One line install:
$ wget -O xt  http://git.io/PE0xXw && chmod +x xt && ./xt && rm xt
  • mar.sh

mar

# One line install:
$ wget -O xt  http://git.io/g749-Q && chmod +x xt && ./xt && rm xt
  • nep.sh

nep

# One line install:
$ wget -O xt  http://git.io/6hJsiw && chmod +x xt && ./xt && rm xt
  • sat.sh

sat

# One line install:
$ wget -O xt  http://git.io/luv_2A && chmod +x xt && ./xt && rm xt
  • shel.sh

shel

# One line install:
$ wget -O xt  http://git.io/TF6KDA && chmod +x xt && ./xt && rm xt
  • ura.sh

ura

# One line install:
$ wget -O xt  http://git.io/GUFFsQ && chmod +x xt && ./xt && rm xt
  • pali.sh

pali

# One line install:
$ wget -O xt  http://git.io/xh3YKA && chmod +x xt && ./xt && rm xt
  • hydrid.sh

hydrid

# One line install:
$ wget -O xt  http://git.io/PWgNtA && chmod +x xt && ./xt && rm xt