Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
59746720
Commit
59746720
authored
Jan 23, 2006
by
Juri Linkov
Browse files
(link, link-visited): New faces based on default values
of `info-xref' and `info-xref-visited'.
parent
1acadcfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
lisp/faces.el
lisp/faces.el
+22
-0
No files found.
lisp/faces.el
View file @
59746720
...
...
@@ -1917,6 +1917,28 @@ created."
:group
'basic-faces
:version
"22.1"
)
(
defface
link
'
((((
class
color
)
(
min-colors
88
)
(
background
light
))
:foreground
"blue1"
:underline
t
)
(((
class
color
)
(
background
light
))
:foreground
"blue"
:underline
t
)
(((
class
color
)
(
min-colors
88
)
(
background
dark
))
:foreground
"cyan1"
:underline
t
)
(((
class
color
)
(
background
dark
))
:foreground
"cyan"
:underline
t
)
(
t
:inherit
underline
))
"Basic face for unvisited links."
:group
'basic-faces
:version
"22.1"
)
(
defface
link-visited
'
((
default
:inherit
link
)
(((
class
color
)
(
background
light
))
:foreground
"magenta4"
)
(((
class
color
)
(
background
dark
))
:foreground
"violet"
))
"Basic face for visited links."
:group
'basic-faces
:version
"22.1"
)
(
defface
highlight
'
((((
class
color
)
(
min-colors
88
)
(
background
light
))
:background
"darkseagreen2"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment