Home
last modified time | relevance | path

Searched refs:rgb (Results 1 – 25 of 37) sorted by relevance

12

/vim-8.2.3635/src/libvterm/t/
H A D64screen_pen.test8 ?screen_cell 0,0 = {0x41} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
12 ?screen_cell 0,1 = {0x42} width=1 attrs={B} fg=rgb(240,240,240) bg=rgb(0,0,0)
16 ?screen_cell 0,2 = {0x43} width=1 attrs={BI} fg=rgb(240,240,240) bg=rgb(0,0,0)
20 ?screen_cell 0,3 = {0x44} width=1 attrs={BU1I} fg=rgb(240,240,240) bg=rgb(0,0,0)
24 ?screen_cell 0,4 = {0x45} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
28 ?screen_cell 0,5 = {0x46} width=1 attrs={F1} fg=rgb(240,240,240) bg=rgb(0,0,0)
32 ?screen_cell 0,6 = {0x47} width=1 attrs={} fg=idx(1) bg=rgb(0,0,0)
36 ?screen_cell 0,7 = {0x48} width=1 attrs={} fg=rgb(240,240,240) bg=idx(2)
47 ?screen_cell 1,0 = {} width=1 attrs={R} fg=rgb(240,240,240) bg=rgb(0,0,0)
53 ?screen_cell 1,0 = {} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
H A D67screen_dbl_wh.test10 ?screen_cell 0,0 = {0x61} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
16 ?screen_cell 0,0 = {0x61} width=1 attrs={} dwl fg=rgb(240,240,240) bg=rgb(0,0,0)
24 ?screen_cell 0,0 = {0x61} width=1 attrs={} dwl dhl-top fg=rgb(240,240,240) bg=rgb(0,0,0)
25 ?screen_cell 1,0 = {0x61} width=1 attrs={} dwl dhl-bottom fg=rgb(240,240,240) bg=rgb(0,0,0)
30 ?screen_cell 0,0 = {0x61} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
32 ?screen_cell 0,0 = {0x61} width=1 attrs={} dwl fg=rgb(240,240,240) bg=rgb(0,0,0)
37 ?screen_cell 23,0 = {0x46} width=1 attrs={} dwl fg=rgb(240,240,240) bg=rgb(0,0,0)
38 ?screen_cell 24,0 = {} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
H A D61screen_unicode.test12 ?screen_cell 0,0 = {0xc1} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
21 ?screen_cell 0,0 = {0xff10} width=2 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
30 ?screen_cell 0,0 = {0x65,0x301} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
35 …_cell 0,0 = {0x65,0x301,0x302,0x303,0x304,0x305} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
41 …_cell 0,0 = {0x65,0x301,0x301,0x301,0x301,0x301} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
46 ?screen_cell 0,79 = {} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
47 ?screen_cell 1,0 = {0xff10} width=2 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
H A D60screen_ascii.test12 ?screen_cell 0,0 = {0x41} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
13 ?screen_cell 0,1 = {0x42} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
14 ?screen_cell 0,2 = {0x43} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
H A D30state_pen.test13 ?pen foreground = rgb(240,240,240,is_default_fg)
14 ?pen background = rgb(0,0,0,is_default_bg)
86 ?pen foreground = rgb(10,20,30)
90 ?pen foreground = rgb(240,240,240,is_default_fg)
102 ?pen background = rgb(10,20,30)
106 ?pen background = rgb(0,0,0,is_default_bg)
/vim-8.2.3635/src/proto/
H A Dterm.pro34 void term_fg_rgb_color(guicolor_T rgb);
35 void term_bg_rgb_color(guicolor_T rgb);
36 void term_ul_rgb_color(guicolor_T rgb);
/vim-8.2.3635/src/
H A Dterminal.c3891 cterm_color2rgb(nr, &rgb->red, &rgb->green, &rgb->blue, &rgb->index); in cterm_color2vterm()
3892 if (rgb->index == 0) in cterm_color2vterm()
3893 rgb->type = VTERM_COLOR_RGB; in cterm_color2vterm()
3896 rgb->type = VTERM_COLOR_INDEXED; in cterm_color2vterm()
3897 --rgb->index; in cterm_color2vterm()
3935 fg->blue = (unsigned)rgb & 255; in get_vterm_color_from_synid()
4132 long_u rgb[16]; in set_ansi_colors_list() local
4154 set_vterm_palette(vterm, rgb); in set_ansi_colors_list()
6102 char_u rgb[8]; in f_term_scrape() local
6152 dict_add_string(dcell, "fg", rgb); in f_term_scrape()
[all …]
H A Dterm.c3051 #define RED(rgb) (((long_u)(rgb) >> 16) & 0xFF) argument
3052 #define GREEN(rgb) (((long_u)(rgb) >> 8) & 0xFF) argument
3053 #define BLUE(rgb) (((long_u)(rgb) ) & 0xFF) argument
3056 term_rgb_color(char_u *s, guicolor_T rgb) in term_rgb_color() argument
3062 (char *)s, RED(rgb), GREEN(rgb), BLUE(rgb)); in term_rgb_color()
3076 term_fg_rgb_color(guicolor_T rgb) in term_fg_rgb_color() argument
3078 term_rgb_color(T_8F, rgb); in term_fg_rgb_color()
3082 term_bg_rgb_color(guicolor_T rgb) in term_bg_rgb_color() argument
3084 term_rgb_color(T_8B, rgb); in term_bg_rgb_color()
3088 term_ul_rgb_color(guicolor_T rgb) in term_ul_rgb_color() argument
[all …]
H A Dgui_haiku.cc1198 rgb_color rgb = GUI_TO_RGB(gui.back_pixel); in Draw() local
1199 SetLowColor(rgb); in Draw()
1205 SetLowColor(rgb); in Draw()
3381 gui.vimForm->SetViewColor(rgb); in gui_mch_new_colors()
4067 rgb_color rgb = GUI_TO_RGB(color); in gui_mch_set_fg_color() local
4069 gui.vimTextArea->SetHighColor(rgb); in gui_mch_set_fg_color()
4081 rgb_color rgb = GUI_TO_RGB(color); in gui_mch_set_bg_color() local
4083 gui.vimTextArea->SetLowColor(rgb); in gui_mch_set_bg_color()
4944 rgb_color rgb = GUI_TO_RGB(pixel); in gui_mch_get_rgb() local
4946 return ((rgb.red & 0xff) << 16) + ((rgb.green & 0xff) << 8) in gui_mch_get_rgb()
[all …]
H A Djob.c542 long_u rgb[16]; in get_job_options() local
575 rgb[n] = GUI_MCH_GET_RGB(guicolor); in get_job_options()
585 memcpy(opt->jo_ansi_colors, rgb, sizeof(rgb)); in get_job_options()
H A Dhardcopy.c265 darken_rgb(long_u rgb) in darken_rgb() argument
267 return ((rgb >> 17) << 16) in darken_rgb()
268 + (((rgb & 0xff00) >> 9) << 8) in darken_rgb()
269 + ((rgb & 0xff) >> 1); in darken_rgb()
H A Dhighlight.c3081 long_u rgb; in highlight_color() local
3092 rgb = (long_u)GUI_MCH_GET_RGB(color); in highlight_color()
3094 (unsigned)(rgb >> 16), in highlight_color()
3095 (unsigned)(rgb >> 8) & 255, in highlight_color()
3096 (unsigned)rgb & 255); in highlight_color()
H A Dgui.c4798 long_u rgb = (long_u)gui_mch_get_rgb(pixel); in gui_get_lightness() local
4800 return (int)( (((rgb >> 16) & 0xff) * 299) in gui_get_lightness()
4801 + (((rgb >> 8) & 0xff) * 587) in gui_get_lightness()
4802 + ((rgb & 0xff) * 114)) / 1000; in gui_get_lightness()
/vim-8.2.3635/runtime/syntax/
H A D2html.vim1068 …let l:rgb = map(matchlist(l:progbar_color, '#\zs\x\x\ze\(\x\x\)\(\x\x\)')[:2], 'str2nr(v:val, 16)')
1069 let l:avg = (l:rgb[0] + l:rgb[1] + l:rgb[2])/3
1073 let l:rgb = map(l:rgb, 'v:val * 3 / 4')
1074 let l:avg_new = (l:rgb[0] + l:rgb[1] + l:rgb[2])/3
1079 let l:rgb = map(l:rgb, 'min([max([v:val, 4]) * 5 / 4, 255])')
1080 let l:avg_new = (l:rgb[0] + l:rgb[1] + l:rgb[2])/3
1083 let l:progbar_color = printf("#%02x%02x%02x", l:rgb[0], l:rgb[1], l:rgb[2])
H A Dless.vim33 syn match lessFunction "\<\%(rgb\|rgba\|argb\|argb\|hsl\|hsla\|hsv\|hsva\)\>(\@=" contained
H A Dsass.vim29 syn match sassFunction "\<\%(rgb\|rgba\|red\|green\|blue\|mix\)\>(\@=" contained
H A Dnetrw.vim74 …c\(\S\+ \)*\S*\.\%(bmp\|fits\=\|gif\|je\=pg\|pcx\|ppc\|pgm\|png\|ppm\|psd\|rgb\|tif\|xbm\|xcf\)\>"…
H A Dmrxvtrc.vim170 \ rgb bgr vrgb vbgr none
H A Dpov.vim26 syn keyword povDescriptors color colour rgb rgbt rgbf rgbft srgb srgbf srgbt srgbft
H A Dprogress.vim185 …get-qname-by-index get-red[-value] get-rel[ation] get-repositioned-row get-rgb[-value] get-selecte…
237 syn keyword ProgressOperator return-to-start-di[r] return-value-data-type returns reverse-from rgb-…
249 syn keyword ProgressOperator set-red[-value] set-repositioned-row set-rgb[-value] set-rollback set-…
/vim-8.2.3635/runtime/colors/lists/
H A Dcsscolors.vim4 " Similar in spirit to rgb.txt, this plugin establishes a human-friendly name
H A Ddefault.vim4 " Replaced rgb.txt as the source of de facto standard color names. This is
/vim-8.2.3635/src/testdir/
H A Dtest_termcodes.vim1546 let seq = printf("\<Esc>]10;rgb:%02x00/%02x00/%02x00\x07", red, green, blue)
1554 let seq = printf("\<Esc>]10;rgb:%02x/%02x/%02x\x07", red, green, blue)
1564 let seq = printf("\<Esc>]11;rgb:%02x00/%02x00/%02x00\x07", red, green, blue)
1575 let seq = printf("\<Esc>]11;rgb:%02x00/%02x00/%02x00\x07", red, green, blue)
1586 let seq = printf("\<Esc>]11;rgb:%02x/%02x/%02x\x07", red, green, blue)
1597 let seq = printf("\<Esc>]11;rgb:%02x/%02x/%02x\x07", red, green, blue)
/vim-8.2.3635/runtime/doc/
H A Dgui_w32.txt325 *rgb.txt*
328 $VIMRUNTIME/rgb.txt, now they are in |v:colornames| which is initialized from
H A Dusr_06.txt210 include all X11 colors (previously defined in rgb.txt).

12