]> git.eshelyaron.com Git - emacs.git/commitdiff
Better gomoku X colour with bright background
authorMattias Engdegård <mattiase@acm.org>
Tue, 12 Jul 2022 09:08:05 +0000 (11:08 +0200)
committerMattias Engdegård <mattiase@acm.org>
Tue, 12 Jul 2022 09:44:10 +0000 (11:44 +0200)
* lisp/play/gomoku.el (gomoku-X): Use blue rather than green for
crosses on bright background for better legibility.
(Red for naughts could be adjusted but seems just about bearable.)

lisp/play/gomoku.el

index f8822c30db1efa2c9c1d0acae6d4674ad3ef4683..fee242be9813fa1316ce4460592f227d5bb45873 100644 (file)
@@ -161,11 +161,12 @@ SHOULD be at least 2 (MUST BE at least 1).")
   "For making font-lock use the winner's face for the line.")
 
 (defface gomoku-O
-    '((((class color)) (:foreground "red" :weight bold)))
+  '((((class color)) :foreground "red" :weight bold))
   "Face to use for Emacs's O.")
 
 (defface gomoku-X
-    '((((class color)) (:foreground "green" :weight bold)))
+  '((((background light)) :foreground "blue" :weight bold)
+    (((class color)) :foreground "green" :weight bold))
   "Face to use for your X.")
 
 (defvar gomoku-font-lock-keywords