File: yellow.sl

package info (click to toggle)
jed-extra 2.5.7-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 2,972 kB
  • ctags: 2,490
  • sloc: makefile: 75; ruby: 43; sed: 38; sh: 31
file content (36 lines) | stat: -rw-r--r-- 1,531 bytes parent folder | download | duplicates (8)
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
% Light yellow color scheme for xjed
% 
% Copyright (c) 2003 Gnter Milde
% Released under the terms of the GNU General Public License (ver. 2 or later)
%
% This scheme uses colors only available in xjed, will not work with jed in 
% a console or X terminal.

static variable bg = "LightYellow";

set_color("normal",     "black",     bg);
set_color("status", 	"yellow",    "blue");
set_color("operator", 	"black",     bg);  % +, -, etc..
set_color("number",  	"darkblue",  bg);  % 10, 2.71, etc.. 
set_color("comment", 	"magenta",   bg);  % /* comment */
set_color("region", 	"yellow",    "blue");
set_color("string", 	"darkblue",  bg);  % "string" or 'char'
set_color("keyword", 	"blue",      bg);  % if, while, unsigned, ...
set_color("keyword1", 	"brightblue",bg);  % malloc, exit, etc...
set_color("keyword2",	"darkblue",  bg);	   
set_color("keyword3",	"red",       bg);	   
set_color("delimiter",  "blue",      bg);  % {}[](),.;...
set_color("preprocess", "darkgreen", bg);   
set_color("message",   	"blue",      bg);
set_color("error",  	"brightred", bg);
set_color("dollar", 	"brightred", bg);
set_color("...",   	"red", 	     bg);  % folding indicator

set_color ("menu_char",          "yellow", "blue");
set_color ("menu", 		 "white",  "blue");
set_color ("menu_popup",	 "white",  "blue");
set_color ("menu_shadow", 	 "blue",   "black");
set_color ("menu_selection", 	 "white",  "darkblue");
set_color ("menu_selection_char","yellow", "darkblue");
%set_color ("mouse", "black", bg);