emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/faces.el


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/faces.el
Date: Mon, 23 Jan 2006 01:16:57 +0000

Index: emacs/lisp/faces.el
diff -u emacs/lisp/faces.el:1.346 emacs/lisp/faces.el:1.347
--- emacs/lisp/faces.el:1.346   Mon Jan 16 23:45:34 2006
+++ emacs/lisp/faces.el Mon Jan 23 01:16:57 2006
@@ -1917,6 +1917,28 @@
   :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")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]