comparison lisp/faces.el @ 68341:acccd9689759

(link, link-visited): New faces based on default values of `info-xref' and `info-xref-visited'.
author Juri Linkov <juri@jurta.org>
date Mon, 23 Jan 2006 01:16:57 +0000
parents 7943b5aaa49d
children 3bd95f4f2941 9b150bc96d33 5b7d410e31f9
comparison
equal deleted inserted replaced
68340:5325b795290b 68341:acccd9689759
1915 :foreground "yellow")) 1915 :foreground "yellow"))
1916 "Basic face for shadowed text." 1916 "Basic face for shadowed text."
1917 :group 'basic-faces 1917 :group 'basic-faces
1918 :version "22.1") 1918 :version "22.1")
1919 1919
1920 (defface link
1921 '((((class color) (min-colors 88) (background light))
1922 :foreground "blue1" :underline t)
1923 (((class color) (background light))
1924 :foreground "blue" :underline t)
1925 (((class color) (min-colors 88) (background dark))
1926 :foreground "cyan1" :underline t)
1927 (((class color) (background dark))
1928 :foreground "cyan" :underline t)
1929 (t :inherit underline))
1930 "Basic face for unvisited links."
1931 :group 'basic-faces
1932 :version "22.1")
1933
1934 (defface link-visited
1935 '((default :inherit link)
1936 (((class color) (background light)) :foreground "magenta4")
1937 (((class color) (background dark)) :foreground "violet"))
1938 "Basic face for visited links."
1939 :group 'basic-faces
1940 :version "22.1")
1941
1920 (defface highlight 1942 (defface highlight
1921 '((((class color) (min-colors 88) (background light)) 1943 '((((class color) (min-colors 88) (background light))
1922 :background "darkseagreen2") 1944 :background "darkseagreen2")
1923 (((class color) (min-colors 88) (background dark)) 1945 (((class color) (min-colors 88) (background dark))
1924 :background "darkolivegreen") 1946 :background "darkolivegreen")