Created
September 25, 2012 08:43
-
-
Save shakefu/3780680 to your computer and use it in GitHub Desktop.
Terminal.app colors for ConqueTerm (vim/MacVim)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Replace the defined CONQUE_FONT in autoload/conque_term/conque_globals.py | |
with the following to get pretty Terminal.app colors when using ConqueTerm. | |
Works great with MacVim! | |
""" | |
# Font codes | |
CONQUE_FONT = { | |
0: {'description': 'Normal (default)', 'attributes': {'cterm': 'NONE', 'ctermfg': 'NONE', 'ctermbg': 'NONE', 'gui': 'NONE', 'guifg': 'NONE', 'guibg': 'NONE'}, 'normal': True}, | |
1: {'description': 'Bold', 'attributes': {'cterm': 'BOLD', 'gui': 'BOLD'}, 'normal': False}, | |
4: {'description': 'Underlined', 'attributes': {'cterm': 'UNDERLINE', 'gui': 'UNDERLINE'}, 'normal': False}, | |
5: {'description': 'Blink (appears as Bold)', 'attributes': {'cterm': 'BOLD', 'gui': 'BOLD'}, 'normal': False}, | |
7: {'description': 'Inverse', 'attributes': {'cterm': 'REVERSE', 'gui': 'REVERSE'}, 'normal': False}, | |
8: {'description': 'Invisible (hidden)', 'attributes': {'ctermfg': '0', 'ctermbg': '0', 'guifg': '#000000', 'guibg': '#000000'}, 'normal': False}, | |
22: {'description': 'Normal (neither bold nor faint)', 'attributes': {'cterm': 'NONE', 'gui': 'NONE'}, 'normal': True}, | |
24: {'description': 'Not underlined', 'attributes': {'cterm': 'NONE', 'gui': 'NONE'}, 'normal': True}, | |
25: {'description': 'Steady (not blinking)', 'attributes': {'cterm': 'NONE', 'gui': 'NONE'}, 'normal': True}, | |
27: {'description': 'Positive (not inverse)', 'attributes': {'cterm': 'NONE', 'gui': 'NONE'}, 'normal': True}, | |
28: {'description': 'Visible (not hidden)', 'attributes': {'ctermfg': 'NONE', 'ctermbg': 'NONE', 'guifg': 'NONE', 'guibg': 'NONE'}, 'normal': True}, | |
30: {'description': 'Set foreground color to Black', 'attributes': {'ctermfg': '16', 'guifg': '#818383'}, 'normal': False}, | |
31: {'description': 'Set foreground color to Red', 'attributes': {'ctermfg': '1', 'guifg': '#C23621'}, 'normal': False}, | |
32: {'description': 'Set foreground color to Green', 'attributes': {'ctermfg': '2', 'guifg': '#25BC24'}, 'normal': False}, | |
33: {'description': 'Set foreground color to Yellow', 'attributes': {'ctermfg': '3', 'guifg': '#ADAD27'}, 'normal': False}, | |
34: {'description': 'Set foreground color to Blue', 'attributes': {'ctermfg': '4', 'guifg': '#492EE1'}, 'normal': False}, | |
35: {'description': 'Set foreground color to Magenta', 'attributes': {'ctermfg': '5', 'guifg': '#D338D3'}, 'normal': False}, | |
36: {'description': 'Set foreground color to Cyan', 'attributes': {'ctermfg': '6', 'guifg': '#33BBC8'}, 'normal': False}, | |
37: {'description': 'Set foreground color to White', 'attributes': {'ctermfg': '7', 'guifg': '#CBCCCD'}, 'normal': False}, | |
39: {'description': 'Set foreground color to default (original)', 'attributes': {'ctermfg': 'NONE', 'guifg': 'NONE'}, 'normal': True}, | |
40: {'description': 'Set background color to Black', 'attributes': {'ctermbg': '16', 'guibg': '#000000'}, 'normal': False}, | |
41: {'description': 'Set background color to Red', 'attributes': {'ctermbg': '1', 'guibg': '#C23621'}, 'normal': False}, | |
42: {'description': 'Set background color to Green', 'attributes': {'ctermbg': '2', 'guibg': '#25BC24'}, 'normal': False}, | |
43: {'description': 'Set background color to Yellow', 'attributes': {'ctermbg': '3', 'guibg': '#ADAD27'}, 'normal': False}, | |
44: {'description': 'Set background color to Blue', 'attributes': {'ctermbg': '4', 'guibg': '#492EE1'}, 'normal': False}, | |
45: {'description': 'Set background color to Magenta', 'attributes': {'ctermbg': '5', 'guibg': '#D338D3'}, 'normal': False}, | |
46: {'description': 'Set background color to Cyan', 'attributes': {'ctermbg': '6', 'guibg': '#33BBC8'}, 'normal': False}, | |
47: {'description': 'Set background color to White', 'attributes': {'ctermbg': '7', 'guibg': '#CBCCCD'}, 'normal': False}, | |
49: {'description': 'Set background color to default (original).', 'attributes': {'ctermbg': 'NONE', 'guibg': 'NONE'}, 'normal': True}, | |
90: {'description': 'Set foreground color to Black', 'attributes': {'ctermfg': '8', 'guifg': '#000000'}, 'normal': False}, | |
91: {'description': 'Set foreground color to Red', 'attributes': {'ctermfg': '9', 'guifg': '#FC391F'}, 'normal': False}, | |
92: {'description': 'Set foreground color to Green', 'attributes': {'ctermfg': '10', 'guifg': '#31E722'}, 'normal': False}, | |
93: {'description': 'Set foreground color to Yellow', 'attributes': {'ctermfg': '11', 'guifg': '#EAEC23'}, 'normal': False}, | |
94: {'description': 'Set foreground color to Blue', 'attributes': {'ctermfg': '12', 'guifg': '#5833FF'}, 'normal': False}, | |
95: {'description': 'Set foreground color to Magenta', 'attributes': {'ctermfg': '13', 'guifg': '#F935F8'}, 'normal': False}, | |
96: {'description': 'Set foreground color to Cyan', 'attributes': {'ctermfg': '14', 'guifg': '#14F0F0'}, 'normal': False}, | |
97: {'description': 'Set foreground color to White', 'attributes': {'ctermfg': '15', 'guifg': '#E9EBEB'}, 'normal': False}, | |
100: {'description': 'Set background color to Black', 'attributes': {'ctermbg': '8', 'guibg': '#000000'}, 'normal': False}, | |
101: {'description': 'Set background color to Red', 'attributes': {'ctermbg': '9', 'guibg': '#FC391F'}, 'normal': False}, | |
102: {'description': 'Set background color to Green', 'attributes': {'ctermbg': '10', 'guibg': '#31E722'}, 'normal': False}, | |
103: {'description': 'Set background color to Yellow', 'attributes': {'ctermbg': '11', 'guibg': '#EAEC23'}, 'normal': False}, | |
104: {'description': 'Set background color to Blue', 'attributes': {'ctermbg': '12', 'guibg': '#5833FF'}, 'normal': False}, | |
105: {'description': 'Set background color to Magenta', 'attributes': {'ctermbg': '13', 'guibg': '#F935F8'}, 'normal': False}, | |
106: {'description': 'Set background color to Cyan', 'attributes': {'ctermbg': '14', 'guibg': '#14F0F0'}, 'normal': False}, | |
107: {'description': 'Set background color to White', 'attributes': {'ctermbg': '15', 'guibg': '#E9EBEB'}, 'normal': False} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! Changed to my own colours but this was wayyy helpful