Blame samples/lynx.lss

Packit f574b8
# Setting the normal and default types lets us keep (almost) the same colors
Packit f574b8
# whether the terminal's default colors are white-on-black or black-on-white.
Packit f574b8
# It is not exact since the default "white" is not necessarily the same color
Packit f574b8
# as the ANSI lightgray, but is as close as we can get in a standard way.
Packit f574b8
#
Packit f574b8
# If you really want the terminal's default colors, and if lynx is built using
Packit f574b8
# ncurses' default-color support, remove these two lines:
Packit f574b8
normal:		normal:			lightgray:black
Packit f574b8
default:	normal:			white:black
Packit f574b8
Packit f574b8
# Normal type styles correspond to HTML tags.
Packit f574b8
#
Packit f574b8
# The next line (beginning with "em") means:  use bold if mono, otherwise
Packit f574b8
# brightblue on <defaultbackground>
Packit f574b8
em:		bold:			brightblue
Packit f574b8
strong:		bold:			brightred
Packit f574b8
b:		bold:			red
Packit f574b8
i:		bold:			brightblue
Packit f574b8
a:		bold:			green
Packit f574b8
img:		dim:			brown
Packit f574b8
fig:		normal:			gray
Packit f574b8
caption:	reverse:		brown
Packit f574b8
hr:		normal:			yellow
Packit f574b8
blockquote:	normal:			brightblue
Packit f574b8
ul:		normal:			brown
Packit f574b8
address:	normal:			magenta
Packit f574b8
title:		normal:			magenta
Packit f574b8
tt:		dim:			brightmagenta:	black
Packit f574b8
h1:		bold:			yellow:		blue
Packit f574b8
label:		normal:			magenta
Packit f574b8
q:		normal:			yellow:		magenta
Packit f574b8
small:		dim:			default
Packit f574b8
big:		bold:			yellow
Packit f574b8
sup:		bold:			yellow
Packit f574b8
sub:		dim:			gray
Packit f574b8
li:		normal:			magenta
Packit f574b8
code:		normal:			cyan
Packit f574b8
cite:		normal:			cyan
Packit f574b8
Packit f574b8
table:		normal:			brightcyan
Packit f574b8
tr:		bold:			brown
Packit f574b8
td:		normal:			default
Packit f574b8
br:		normal:			default
Packit f574b8
Packit f574b8
# Special styles - not corresponding directly to HTML tags
Packit f574b8
#	alert	- status bar, when message begins "Alert".
Packit f574b8
#	alink	- active link
Packit f574b8
#	normal	- default attributes
Packit f574b8
#	status	- status bar
Packit f574b8
#	whereis	- whereis search target
Packit f574b8
#
Packit f574b8
#normal:normal:default:blue
Packit f574b8
alink:		reverse:		yellow:		black
Packit f574b8
status:		reverse:		yellow:		blue
Packit f574b8
alert:		bold:			yellow:		red
Packit f574b8
whereis:	reverse+underline:	magenta:	cyan
Packit f574b8
# currently not used
Packit f574b8
#value:normal:green
Packit f574b8
Packit f574b8
menu.bg:	normal:			black:		lightgray
Packit f574b8
menu.frame:	normal:			black:		lightgray
Packit f574b8
menu.entry:	normal:			lightgray:	black
Packit f574b8
menu.n:		normal:			red:		gray
Packit f574b8
menu.active:	normal:			yellow:		black
Packit f574b8
menu.sb:	normal:			brightred:	lightgray
Packit f574b8
Packit f574b8
forwbackw.arrow:reverse
Packit f574b8
hot.paste:	normal:			brightred:	gray
Packit f574b8
Packit f574b8
# Styles with classes - 
    etc.
Packit f574b8
ul.red:		underline:		brightred
Packit f574b8
ul.blue:	bold:			brightblue
Packit f574b8
li.red:		reverse:		red:		yellow
Packit f574b8
li.blue:	bold:			blue
Packit f574b8
strong.a:	bold:			black:		red
Packit f574b8
em.a:		reverse:		black:		blue
Packit f574b8
strong.b:	bold:			white:		red
Packit f574b8
em.b:		reverse:		white:		blue
Packit f574b8
strong.debug:	reverse:		green
Packit f574b8
font.letter:	normal:			white:		blue
Packit f574b8
input.submit:	normal:			cyan
Packit f574b8
tr.baone:	bold:			yellow
Packit f574b8
tr.batwo:	bold:			green
Packit f574b8
tr.bathree:	bold:			red
Packit f574b8
#
Packit f574b8
# Special handling for link.
Packit f574b8
link:		normal:			white
Packit f574b8
link.green:	bold:			brightgreen
Packit f574b8
link.red:	bold:			black:		red
Packit f574b8
link.blue:	bold:			white:		blue
Packit f574b8
link.toc:	bold:			black:		white
Packit f574b8
# Special cases for link - the rel or title is appended after the class.
Packit f574b8
# <link rel=next class=red href="1">
Packit f574b8
link.red.next:	bold:			red
Packit f574b8
link.red.prev:	bold:			yellow:		red
Packit f574b8
link.blue.prev:	bold:			yellow:		blue
Packit f574b8
link.blue.next:	bold:			blue
Packit f574b8
link.green.toc:	bold:			white:		green
Packit f574b8
#
Packit f574b8
# Define styles that will be used when syntax highlighting is requested
Packit f574b8
# (commandline option -prettysrc). 
Packit f574b8
span.htmlsrc_comment:normal:		white
Packit f574b8
span.htmlsrc_tag:normal:		white
Packit f574b8
#If you don't like that the tag name and attribute name are displayed 
Packit f574b8
#in different colors, comment the following line. 
Packit f574b8
span.htmlsrc_attrib:normal:		cyan
Packit f574b8
span.htmlsrc_attrval:normal:		magenta
Packit f574b8
span.htmlsrc_abracket:normal:		white
Packit f574b8
span.htmlsrc_entity:normal:		white
Packit f574b8
##span.htmlsrc_href:
Packit f574b8
##span.htmlsrc_entire:
Packit f574b8
span.htmlsrc_badseq:normal:		red
Packit f574b8
span.htmlsrc_badtag:normal:		red
Packit f574b8
span.htmlsrc_badattr:normal:		red
Packit f574b8
span.htmlsrc_sgmlspecial:normal:	yellow