-
Notifications
You must be signed in to change notification settings - Fork 4
/
colors
51 lines (41 loc) · 1.42 KB
/
colors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
! ANSI colors
!
! Most of these colors are used by the jellybeans Vim color scheme [1] for key
! highlighting groups (if Vim is running inside a 256-color terminal; the colors used for
! gVim differ). The color numbers can be listed with the `:highlight` command from Vim
! (while jellybeans is the active color scheme). I then used [this chart][2] to get the
! RGB triplets.
!
! [1]: https://github.com/nanotech/jellybeans.vim
! [2]: https://en.wikipedia.org/wiki/File:Xterm_256color_chart.svg
! [3]: https://wiki.archlinux.org/title/Xterm#Colors
! [4]: https://terminal.sexy
! Black.
*color0: #000000
! Gray (color 244); used by jellybeans for the "Comment" highlighting group.
*color8: #808080
! Red (color 167); "Constant" highlighting group
*color1: #d75f5f
*color9: #d75f5f
! Red (color 88); "ErrorMsg" highlighting group
! *color1: #870000
! *color9: #870000
! Green (color 107); "String" highlighting group
*color2: #87af5f
*color10: #87af5f
! Yellow (color 222); "Function" highlighting group
*color3: #ffdf87
*color11: #ffdf87
! Blue (color 103); "Statement" highlighting group
*color4: #8787af
*color12: #8787af
! Magenta (color 162); "rubyRegexp" highlighting group
*color5: #d70087
*color13: #d70087
! Cyan (color 110); "Structure" highlighting group
*color6: #87afd7
*color14: #87afd7
! White (color 188); "Normal" highlighting group
*color7: #dfdfdf
*color15: #ffffff
! vim: ft=xdefaults tw=90 sts=-1 sw=3 et cms=!\ %s