Lines Matching refs:colors
70 This allows using `:highlight` commands to set your preferred colors before or
80 For setting up your own colors syntax highlighting see |syncolor|.
94 :syntax on " start highlighting, use 'background' to set colors
185 example, to change the colors for the C syntax: >
220 To be able to allow each user to pick their favorite set of colors, there must
303 | +- Setup the colors for syntax highlighting. If a color scheme is
304 | | defined it is loaded again with ":colors {name}". Otherwise
306 | | existing colors, ":syntax enable" only sets groups that weren't
378 colors should be exactly the same as you see them in Vim. With
395 - Some truly ancient browsers may not show the background colors.
398 features such as conceal support will not function, and the colors may be
484 differ. If you do not like the automatically selected colors, you can define
485 your own highlight colors for the progress bar. Example: >
1509 If you want include your own changes to the default colors, you have to
1844 doesn't specify different colors for Functions and Identifiers. To change
1993 In order to highlight nested parens with different colors define colors
2572 colors of their contents (e.g. PPWizard macros and variables)
3574 To copy a pixel with one of the colors, yank a "pixel" with "yl" and insert it
3994 different colors: >
4829 for the file "colors/{name}.vim". The first one that
4838 For changing the appearance of specific colors, you
4848 "~/.vim/colors/mine.vim", and use `:runtime` to load
4850 runtime colors/evening.vim
4854 color list scripts (`colors/lists/default.vim`) will
4860 :edit $VIMRUNTIME/colors/README.txt
4872 default colors to use.
4878 is _not_ set back to the default colors.
4883 recognized, each `colors/lists/default.vim` found on
4895 A simple way to change colors is with the |:colorscheme| command. This loads
4989 colors are used. For example, in a normal terminal comments could
5010 colors for a color-xterm can be changed from the .Xdefaults file.
5011 Unfortunately this means that it's not possible to get the same colors
5015 # tmux colors
5022 The MS-Windows standard colors are fixed (in a console window), so
5028 *cterm-colors*
5051 "linux"), this causes the bright colors to appear. This doesn't work
5052 for background colors! Without the '*' the bold attribute is removed.
5063 colors!
5068 When setting the "ctermfg" or "ctermbg" colors for the Normal group,
5069 these will become the colors used for the non-highlighted text.
5076 'background' to change! This means you should set the colors for
5077 Normal first, before setting other colors.
5079 be reloaded, which may reset all colors (including Normal). First
5087 When Vim knows the normal foreground, background and underline colors,
5089 setting the colors for the Normal group and for the MS-Windows
5092 < Note that the colors are used that are valid at the moment this
5093 command is given. If the Normal group colors are changed later, the
5094 "fg" and "bg" colors will not be adjusted.
5144 *gui-colors*
5156 In the Win32 GUI version, additional system colors are available. See
5157 |win32-colors|.
5176 If you are using a color scheme that relies on named colors and you
5177 would like to adjust the precise appearance of those colors, you can
5186 are placed in the colors/lists directory. You can see an example in
5187 '$VIMRUNTIME/colors/lists/csscolors.vim'. This list would be sourced
5190 :runtime colors/lists/csscolors.vim
5338 For the GUI you can use the following groups to set the colors for the menu,
5344 Menu Current font, background and foreground colors of the menus.
5444 If you have changed the colors and messed them up, use this command to get the
5452 This doesn't change the colors for the 'highlight' option.
5454 Note that the syntax colors that you set in your vimrc file will also be reset
5456 Note that if you are using a color scheme, the colors defined by the color
5467 If you want to use different colors for syntax highlighting, you can add a Vim
5468 script file to set these colors. Put this file in a directory in
5470 the default colors. This way these colors will be used after the ":syntax
5487 your defined colors are to be used or the colors from the scheme. This
5493 "on" ":syntax on" command. Highlight colors are overruled but
5495 "enable" ":syntax enable" command. Only define colors for groups that
5498 the colors.
5499 "skip" Don't define colors. Used to skip the default settings when a
5571 Most color xterms have only eight colors. If you don't get colors with the
5589 Note: Do these settings BEFORE doing ":syntax on". Otherwise the colors may
5593 But for using 16 colors in an rxvt these should work with terminfo: >
5603 output lighter foreground colors, even though the number of colors is defined
5605 colors, when 't_Co' is 8.
5608 To get 16 colors or more, get the newest xterm version (which should be
5612 Here is a good way to configure it. This uses 88 colors and enables the
5613 termcap-query feature, which allows Vim to ask the xterm how many colors it
5616 If you only get 8 colors, check the xterm compilation settings.
5619 This xterm should work with these lines in your .vimrc (for 16 colors): >
5632 translate cterm colors of 8 and above to "<Esc>[9%dm" and "<Esc>[10%dm".
5635 For 256 colors this has been reported to work: >
5681 foreground colors: >
5696 bold attribute to get bright colors. Add an ":if" like above when needed. >