(link, link-visited): New faces based on default values
of `info-xref' and `info-xref-visited'.
This commit is contained in:
parent
1acadcfe7f
commit
5974672033
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue