blob: 9c5d4925f182e84743474e2e99ef77f8ba6bf2e5 (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# From: Sergey Svishchev <svs@ropnet.ru>
# Notes:
# I use this in OS/2 VIO window, and occasionally on Linux console.
# Setting the normal and default types lets us keep (almost) the same colors
# whether the terminal's default colors are white-on-black or black-on-white.
# It is not exact since the default "white" is not necessarily the same color
# as the ANSI lightgray, but is as close as we can get in a standard way.
#
# If you really want the terminal's default colors, and if lynx is built using
# ncurses' default-color support, remove these two lines:
normal: normal: lightgray: blue
default: normal: white: blue
# Normal type styles correspond to HTML tags.
#
# The next line (beginning with "em") means: use bold if mono, otherwise
# brightblue on <defaultbackground>
em: bold: brightgreen: blue
strong: bold: brightred: blue
b: bold: white: blue
i: bold: yellow: blue
alink: reverse: white: cyan
a: bold: cyan: blue
img: dim: gray: blue
status: reverse: white: green
fig: normal: gray: blue
caption: reverse: brown: blue
hr: normal: yellow: blue
blockquote: normal: brightblue: blue
#ul:normal: brown:blue
address: normal: magenta: blue
#title: normal:magenta:blue
tt: dim: gray: blue
h1: bold: yellow: blue
label: normal: magenta: blue
value: normal: green: blue
q: normal: yellow: magenta
small: dim: gray: blue
big: bold: yellow: blue
sup: bold: yellow: blue
sub: dim: gray: blue
# glitch fixes
area: normal: lightgray: blue
body: normal: lightgray: blue
br: normal: lightgray: blue
center: normal: lightgray: blue
center.header: normal: lightgray: blue
div: normal: lightgray: blue
font: normal: lightgray: blue
font.letter: normal: lightgray: blue
h2: normal: lightgray: blue
h3: normal: lightgray: blue
h4: normal: lightgray: blue
h5: normal: lightgray: blue
h6: normal: lightgray: blue
head: normal: lightgray: blue
link: normal: lightgray: blue
map: normal: lightgray: blue
meta: normal: lightgray: blue
p: normal: lightgray: blue
table: normal: lightgray: blue
td: normal: lightgray: blue
tr: normal: lightgray: blue
title: normal: lightgray: blue
form: normal: lightgray: blue
input: normal: lightgray: blue
input.submit: normal: cyan: blue
select: normal: lightgray: blue
option: normal: lightgray: blue
pre: normal: lightgray: blue
dd: normal: lightgray: blue
dt: normal: lightgray: blue
ul: normal: lightgray: blue
li: normal: lightgray: blue
base: normal: lightgray: blue
iframe: normal: lightgray: blue
cite: normal: yellow: blue
span.htmlsrc_comment:normal: green: blue
span.htmlsrc_tag:normal: brightgreen: blue
span.htmlsrc_attrib:normal: brightcyan: blue
span.htmlsrc_attrval:normal: white: blue
span.htmlsrc_abracket:normal: brightgreen: blue
span.htmlsrc_entity:normal: white: blue
##span.htmlsrc_href:
##span.htmlsrc_entire:
span.htmlsrc_badseq:normal: red: blue
span.htmlsrc_badtag:normal: red: blue
span.htmlsrc_badattr:normal: red: blue
span.htmlsrc_sgmlspecial:normal: yellow: blue
|