Mercurial > emacs
annotate lisp/term/w32-win.el @ 60638:338b5a42b1f4
(DARWIN): Don't define.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Wed, 16 Mar 2005 08:10:12 +0000 |
parents | a53730244ba3 |
children | 5d9760bd65eb befae6bafecb |
rev | line source |
---|---|
38431
853c3674f20a
Fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38241
diff
changeset
|
1 ;;; w32-win.el --- parse switches controlling interface with W32 window system |
14170
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
2 |
59704 | 3 ;; Copyright (C) 1993, 1994, 2003, 2004, 2005 Free Software Foundation, Inc. |
13434 | 4 |
5 ;; Author: Kevin Gallo | |
6 ;; Keywords: terminals | |
7 | |
14170
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
9 |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
13 ;; any later version. |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
14 |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
18 ;; GNU General Public License for more details. |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
19 |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
13831
diff
changeset
|
23 ;; Boston, MA 02111-1307, USA. |
13434 | 24 |
25 ;;; Commentary: | |
26 | |
16889
8de32e992e4d
Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16596
diff
changeset
|
27 ;; w32-win.el: this file is loaded from ../lisp/startup.el when it recognizes |
8de32e992e4d
Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16596
diff
changeset
|
28 ;; that W32 windows are to be used. Command line switches are parsed and those |
8de32e992e4d
Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16596
diff
changeset
|
29 ;; pertaining to W32 are processed and removed from the command line. The |
8de32e992e4d
Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16596
diff
changeset
|
30 ;; W32 display is opened and hooks are set for popping up the initial window. |
13434 | 31 |
32 ;; startup.el will then examine startup files, and eventually call the hooks | |
33 ;; which create the first window (s). | |
34 | |
35 ;;; Code: | |
36 | |
37 | |
38 ;; These are the standard X switches from the Xt Initialize.c file of | |
39 ;; Release 4. | |
40 | |
41 ;; Command line Resource Manager string | |
42 | |
43 ;; +rv *reverseVideo | |
44 ;; +synchronous *synchronous | |
45 ;; -background *background | |
46 ;; -bd *borderColor | |
47 ;; -bg *background | |
48 ;; -bordercolor *borderColor | |
49 ;; -borderwidth .borderWidth | |
50 ;; -bw .borderWidth | |
51 ;; -display .display | |
52 ;; -fg *foreground | |
53 ;; -fn *font | |
54 ;; -font *font | |
55 ;; -foreground *foreground | |
56 ;; -geometry .geometry | |
57 ;; -i .iconType | |
58 ;; -itype .iconType | |
59 ;; -iconic .iconic | |
60 ;; -name .name | |
61 ;; -reverse *reverseVideo | |
62 ;; -rv *reverseVideo | |
63 ;; -selectionTimeout .selectionTimeout | |
64 ;; -synchronous *synchronous | |
65 ;; -xrm | |
66 | |
67 ;; An alist of X options and the function which handles them. See | |
68 ;; ../startup.el. | |
69 | |
16889
8de32e992e4d
Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16596
diff
changeset
|
70 (if (not (eq window-system 'w32)) |
8de32e992e4d
Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16596
diff
changeset
|
71 (error "%s: Loading w32-win.el but not compiled for w32" (invocation-name))) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49290
diff
changeset
|
72 |
13434 | 73 (require 'frame) |
74 (require 'mouse) | |
75 (require 'scroll-bar) | |
76 (require 'faces) | |
77 (require 'select) | |
78 (require 'menu-bar) | |
55288
e304cb532417
(w32-drag-n-drop): Use x-dnd.el functions.
Jason Rumney <jasonr@gnu.org>
parents:
52401
diff
changeset
|
79 (require 'x-dnd) |
55467 | 80 (require 'code-pages) |
81 | |
42812
c9282c43bb5a
Add comments to avoid future deletion of conditionals that seem
Jason Rumney <jasonr@gnu.org>
parents:
42810
diff
changeset
|
82 ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles |
42810
e0a03741d896
Only require fontset when new-fontset is bound.
Jason Rumney <jasonr@gnu.org>
parents:
42542
diff
changeset
|
83 (if (fboundp 'new-fontset) |
e0a03741d896
Only require fontset when new-fontset is bound.
Jason Rumney <jasonr@gnu.org>
parents:
42542
diff
changeset
|
84 (require 'fontset)) |
15136
6a1b4fcbb216
(win32-handle-scroll-bar-event): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15048
diff
changeset
|
85 |
42542
691ca802270d
Require fontset unconditionally.
Jason Rumney <jasonr@gnu.org>
parents:
42286
diff
changeset
|
86 ;; The following definition is used for debugging scroll bar events. |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15265
diff
changeset
|
87 ;(defun w32-handle-scroll-bar-event (event) (interactive "e") (princ event)) |
15136
6a1b4fcbb216
(win32-handle-scroll-bar-event): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15048
diff
changeset
|
88 |
45125 | 89 ;; Handle mouse-wheel events with mwheel. |
51386
c750333d879e
No need to bind wheel events specially.
Jason Rumney <jasonr@gnu.org>
parents:
51183
diff
changeset
|
90 (mouse-wheel-mode 1) |
19691
a96c6fa10e92
(w32-handle-scroll-bar-event): On up and
Geoff Voelker <voelker@cs.washington.edu>
parents:
19167
diff
changeset
|
91 |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
92 (defun w32-drag-n-drop-debug (event) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
93 "Print the drag-n-drop EVENT in a readable form." |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
94 (interactive "e") |
21883
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
95 (princ event)) |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
96 |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
97 (defun w32-drag-n-drop (event) |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
98 "Edit the files listed in the drag-n-drop EVENT. |
21883
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
99 Switch to a buffer editing the last file dropped." |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
100 (interactive "e") |
24664
ce51d492b1ab
(w32-drag-n-drop): Select file in window where
Andrew Innes <andrewi@gnu.org>
parents:
24246
diff
changeset
|
101 (save-excursion |
26573
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
102 ;; Make sure the drop target has positive co-ords |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
103 ;; before setting the selected frame - otherwise it |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
104 ;; won't work. <skx@tardis.ed.ac.uk> |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
105 (let* ((window (posn-window (event-start event))) |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
106 (coords (posn-x-y (event-start event))) |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
107 (x (car coords)) |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
108 (y (cdr coords))) |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
109 (if (and (> x 0) (> y 0)) |
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
110 (set-frame-selected-window nil window)) |
55288
e304cb532417
(w32-drag-n-drop): Use x-dnd.el functions.
Jason Rumney <jasonr@gnu.org>
parents:
52401
diff
changeset
|
111 (mapcar (lambda (file-name) |
e304cb532417
(w32-drag-n-drop): Use x-dnd.el functions.
Jason Rumney <jasonr@gnu.org>
parents:
52401
diff
changeset
|
112 (x-dnd-handle-one-url window 'private |
e304cb532417
(w32-drag-n-drop): Use x-dnd.el functions.
Jason Rumney <jasonr@gnu.org>
parents:
52401
diff
changeset
|
113 (concat "file:" file-name))) |
e304cb532417
(w32-drag-n-drop): Use x-dnd.el functions.
Jason Rumney <jasonr@gnu.org>
parents:
52401
diff
changeset
|
114 (car (cdr (cdr event))))) |
26573
e219195abf40
(w32-drag-n-drop): Load files in current window, if
Gerd Moellmann <gerd@gnu.org>
parents:
24964
diff
changeset
|
115 (raise-frame))) |
21883
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
116 |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
117 (defun w32-drag-n-drop-other-frame (event) |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
118 "Edit the files listed in the drag-n-drop EVENT, in other frames. |
21883
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
119 May create new frames, or reuse existing ones. The frame editing |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
120 the last file dropped is selected." |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
121 (interactive "e") |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
122 (mapcar 'find-file-other-frame (car (cdr (cdr event))))) |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
123 |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
124 ;; Bind the drag-n-drop event. |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
125 (global-set-key [drag-n-drop] 'w32-drag-n-drop) |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
126 (global-set-key [C-drag-n-drop] 'w32-drag-n-drop-other-frame) |
93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
Richard M. Stallman <rms@gnu.org>
parents:
19691
diff
changeset
|
127 |
23675
8dcfae475b98
([language-change]): For now ignore
Geoff Voelker <voelker@cs.washington.edu>
parents:
23636
diff
changeset
|
128 ;; Keyboard layout/language change events |
8dcfae475b98
([language-change]): For now ignore
Geoff Voelker <voelker@cs.washington.edu>
parents:
23636
diff
changeset
|
129 ;; For now ignore language-change events; in the future |
8dcfae475b98
([language-change]): For now ignore
Geoff Voelker <voelker@cs.washington.edu>
parents:
23636
diff
changeset
|
130 ;; we should switch the Emacs Input Method to match the |
8dcfae475b98
([language-change]): For now ignore
Geoff Voelker <voelker@cs.washington.edu>
parents:
23636
diff
changeset
|
131 ;; new layout/language selected by the user. |
8dcfae475b98
([language-change]): For now ignore
Geoff Voelker <voelker@cs.washington.edu>
parents:
23636
diff
changeset
|
132 (global-set-key [language-change] 'ignore) |
8dcfae475b98
([language-change]): For now ignore
Geoff Voelker <voelker@cs.washington.edu>
parents:
23636
diff
changeset
|
133 |
13434 | 134 (defvar x-invocation-args) |
135 | |
136 (defvar x-command-line-resources nil) | |
137 | |
138 (defun x-handle-switch (switch) | |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
139 "Handle SWITCH of the form \"-switch value\" or \"-switch\"." |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
140 (let ((aelt (assoc switch command-line-x-option-alist))) |
13434 | 141 (if aelt |
59704 | 142 (push (cons (nth 3 aelt) (or (nth 4 aelt) (pop x-invocation-args))) |
143 default-frame-alist)))) | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
144 |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
145 (defun x-handle-numeric-switch (switch) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
146 "Handle SWITCH of the form \"-switch n\"." |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
147 (let ((aelt (assoc switch command-line-x-option-alist))) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
148 (if aelt |
59704 | 149 (push (cons (nth 3 aelt) (string-to-int (pop x-invocation-args))) |
150 default-frame-alist)))) | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
151 |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
152 ;; Handle options that apply to initial frame only |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
153 (defun x-handle-initial-switch (switch) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
154 (let ((aelt (assoc switch command-line-x-option-alist))) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
155 (if aelt |
59704 | 156 (push (cons (nth 3 aelt) (or (nth 4 aelt) (pop x-invocation-args))) |
157 initial-frame-alist)))) | |
13434 | 158 |
159 (defun x-handle-iconic (switch) | |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
160 "Make \"-iconic\" SWITCH apply only to the initial frame." |
59704 | 161 (push '(visibility . icon) initial-frame-alist)) |
13434 | 162 |
163 (defun x-handle-xrm-switch (switch) | |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
164 "Handle the \"-xrm\" SWITCH." |
13434 | 165 (or (consp x-invocation-args) |
166 (error "%s: missing argument to `%s' option" (invocation-name) switch)) | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
167 (setq x-command-line-resources |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
168 (if (null x-command-line-resources) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
169 (car x-invocation-args) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
170 (concat x-command-line-resources "\n" (car x-invocation-args)))) |
13434 | 171 (setq x-invocation-args (cdr x-invocation-args))) |
172 | |
173 (defun x-handle-geometry (switch) | |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
174 "Handle the \"-geometry\" SWITCH." |
42286
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
175 (let* ((geo (x-parse-geometry (car x-invocation-args))) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
176 (left (assq 'left geo)) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
177 (top (assq 'top geo)) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
178 (height (assq 'height geo)) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
179 (width (assq 'width geo))) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
180 (if (or height width) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
181 (setq default-frame-alist |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
182 (append default-frame-alist |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
183 '((user-size . t)) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
184 (if height (list height)) |
50028
601653a63afc
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
Juanma Barranquero <lekktu@gmail.com>
parents:
49882
diff
changeset
|
185 (if width (list width))) |
601653a63afc
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
Juanma Barranquero <lekktu@gmail.com>
parents:
49882
diff
changeset
|
186 initial-frame-alist |
601653a63afc
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
Juanma Barranquero <lekktu@gmail.com>
parents:
49882
diff
changeset
|
187 (append initial-frame-alist |
601653a63afc
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
Juanma Barranquero <lekktu@gmail.com>
parents:
49882
diff
changeset
|
188 '((user-size . t)) |
601653a63afc
(x-handle-geometry): Put sizes on `initial-frame-alist' too.
Juanma Barranquero <lekktu@gmail.com>
parents:
49882
diff
changeset
|
189 (if height (list height)) |
42286
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
190 (if width (list width))))) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
191 (if (or left top) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
192 (setq initial-frame-alist |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
193 (append initial-frame-alist |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
194 '((user-position . t)) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
195 (if left (list left)) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
196 (if top (list top))))) |
ce0c926022b3
(x-handle-geometry): Put height and width on default-frame-alist,
Richard M. Stallman <rms@gnu.org>
parents:
40151
diff
changeset
|
197 (setq x-invocation-args (cdr x-invocation-args)))) |
13434 | 198 |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
199 (defun x-handle-name-switch (switch) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
200 "Handle a \"-name\" SWITCH." |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
201 ;; Handle the -name option. Set the variable x-resource-name |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
202 ;; to the option's operand; set the name of the initial frame, too. |
13434 | 203 (or (consp x-invocation-args) |
204 (error "%s: missing argument to `%s' option" (invocation-name) switch)) | |
59704 | 205 (setq x-resource-name (pop x-invocation-args)) |
206 (push (cons 'name x-resource-name) initial-frame-alist)) | |
13434 | 207 |
208 (defvar x-display-name nil | |
209 "The display name specifying server and frame.") | |
210 | |
211 (defun x-handle-display (switch) | |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
212 "Handle the \"-display\" SWITCH." |
59704 | 213 (setq x-display-name (pop x-invocation-args))) |
13434 | 214 |
215 (defun x-handle-args (args) | |
216 "Process the X-related command line options in ARGS. | |
217 This is done before the user's startup file is loaded. They are copied to | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
218 `x-invocation args' from which the X-related things are extracted, first |
13434 | 219 the switch (e.g., \"-fg\") in the following code, and possible values |
220 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch). | |
221 This returns ARGS with the arguments that have been processed removed." | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
222 ;; We use ARGS to accumulate the args that we don't handle here, to return. |
13434 | 223 (setq x-invocation-args args |
224 args nil) | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
225 (while (and x-invocation-args |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
226 (not (equal (car x-invocation-args) "--"))) |
13434 | 227 (let* ((this-switch (car x-invocation-args)) |
228 (orig-this-switch this-switch) | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
229 completion argval aelt handler) |
13434 | 230 (setq x-invocation-args (cdr x-invocation-args)) |
231 ;; Check for long options with attached arguments | |
232 ;; and separate out the attached option argument into argval. | |
233 (if (string-match "^--[^=]*=" this-switch) | |
234 (setq argval (substring this-switch (match-end 0)) | |
235 this-switch (substring this-switch 0 (1- (match-end 0))))) | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
236 ;; Complete names of long options. |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
237 (if (string-match "^--" this-switch) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
238 (progn |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
239 (setq completion (try-completion this-switch command-line-x-option-alist)) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
240 (if (eq completion t) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
241 ;; Exact match for long option. |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
242 nil |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
243 (if (stringp completion) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
244 (let ((elt (assoc completion command-line-x-option-alist))) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
245 ;; Check for abbreviated long option. |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
246 (or elt |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
247 (error "Option `%s' is ambiguous" this-switch)) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
248 (setq this-switch completion)))))) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
249 (setq aelt (assoc this-switch command-line-x-option-alist)) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
250 (if aelt (setq handler (nth 2 aelt))) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
251 (if handler |
13434 | 252 (if argval |
253 (let ((x-invocation-args | |
254 (cons argval x-invocation-args))) | |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
255 (funcall handler this-switch)) |
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
256 (funcall handler this-switch)) |
59704 | 257 (push orig-this-switch args)))) |
43394
bf151fa5d915
(x-option-alist, x-long-option-alist)
Jason Rumney <jasonr@gnu.org>
parents:
42848
diff
changeset
|
258 (nconc (nreverse args) x-invocation-args)) |
13434 | 259 |
260 ;; | |
261 ;; Available colors | |
262 ;; | |
263 | |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
264 (defvar x-colors '("LightGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
265 "light green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
266 "DarkRed" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
267 "dark red" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
268 "DarkMagenta" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
269 "dark magenta" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
270 "DarkCyan" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
271 "dark cyan" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
272 "DarkBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
273 "dark blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
274 "DarkGray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
275 "dark gray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
276 "DarkGrey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
277 "dark grey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
278 "grey100" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
279 "gray100" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
280 "grey99" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
281 "gray99" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
282 "grey98" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
283 "gray98" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
284 "grey97" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
285 "gray97" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
286 "grey96" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
287 "gray96" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
288 "grey95" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
289 "gray95" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
290 "grey94" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
291 "gray94" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
292 "grey93" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
293 "gray93" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
294 "grey92" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
295 "gray92" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
296 "grey91" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
297 "gray91" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
298 "grey90" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
299 "gray90" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
300 "grey89" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
301 "gray89" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
302 "grey88" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
303 "gray88" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
304 "grey87" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
305 "gray87" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
306 "grey86" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
307 "gray86" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
308 "grey85" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
309 "gray85" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
310 "grey84" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
311 "gray84" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
312 "grey83" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
313 "gray83" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
314 "grey82" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
315 "gray82" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
316 "grey81" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
317 "gray81" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
318 "grey80" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
319 "gray80" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
320 "grey79" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
321 "gray79" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
322 "grey78" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
323 "gray78" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
324 "grey77" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
325 "gray77" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
326 "grey76" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
327 "gray76" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
328 "grey75" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
329 "gray75" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
330 "grey74" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
331 "gray74" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
332 "grey73" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
333 "gray73" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
334 "grey72" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
335 "gray72" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
336 "grey71" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
337 "gray71" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
338 "grey70" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
339 "gray70" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
340 "grey69" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
341 "gray69" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
342 "grey68" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
343 "gray68" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
344 "grey67" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
345 "gray67" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
346 "grey66" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
347 "gray66" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
348 "grey65" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
349 "gray65" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
350 "grey64" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
351 "gray64" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
352 "grey63" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
353 "gray63" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
354 "grey62" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
355 "gray62" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
356 "grey61" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
357 "gray61" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
358 "grey60" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
359 "gray60" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
360 "grey59" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
361 "gray59" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
362 "grey58" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
363 "gray58" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
364 "grey57" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
365 "gray57" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
366 "grey56" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
367 "gray56" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
368 "grey55" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
369 "gray55" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
370 "grey54" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
371 "gray54" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
372 "grey53" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
373 "gray53" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
374 "grey52" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
375 "gray52" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
376 "grey51" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
377 "gray51" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
378 "grey50" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
379 "gray50" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
380 "grey49" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
381 "gray49" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
382 "grey48" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
383 "gray48" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
384 "grey47" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
385 "gray47" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
386 "grey46" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
387 "gray46" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
388 "grey45" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
389 "gray45" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
390 "grey44" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
391 "gray44" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
392 "grey43" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
393 "gray43" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
394 "grey42" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
395 "gray42" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
396 "grey41" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
397 "gray41" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
398 "grey40" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
399 "gray40" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
400 "grey39" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
401 "gray39" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
402 "grey38" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
403 "gray38" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
404 "grey37" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
405 "gray37" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
406 "grey36" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
407 "gray36" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
408 "grey35" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
409 "gray35" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
410 "grey34" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
411 "gray34" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
412 "grey33" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
413 "gray33" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
414 "grey32" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
415 "gray32" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
416 "grey31" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
417 "gray31" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
418 "grey30" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
419 "gray30" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
420 "grey29" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
421 "gray29" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
422 "grey28" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
423 "gray28" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
424 "grey27" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
425 "gray27" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
426 "grey26" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
427 "gray26" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
428 "grey25" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
429 "gray25" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
430 "grey24" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
431 "gray24" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
432 "grey23" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
433 "gray23" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
434 "grey22" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
435 "gray22" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
436 "grey21" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
437 "gray21" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
438 "grey20" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
439 "gray20" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
440 "grey19" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
441 "gray19" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
442 "grey18" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
443 "gray18" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
444 "grey17" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
445 "gray17" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
446 "grey16" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
447 "gray16" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
448 "grey15" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
449 "gray15" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
450 "grey14" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
451 "gray14" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
452 "grey13" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
453 "gray13" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
454 "grey12" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
455 "gray12" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
456 "grey11" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
457 "gray11" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
458 "grey10" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
459 "gray10" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
460 "grey9" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
461 "gray9" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
462 "grey8" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
463 "gray8" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
464 "grey7" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
465 "gray7" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
466 "grey6" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
467 "gray6" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
468 "grey5" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
469 "gray5" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
470 "grey4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
471 "gray4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
472 "grey3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
473 "gray3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
474 "grey2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
475 "gray2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
476 "grey1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
477 "gray1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
478 "grey0" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
479 "gray0" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
480 "thistle4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
481 "thistle3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
482 "thistle2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
483 "thistle1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
484 "MediumPurple4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
485 "MediumPurple3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
486 "MediumPurple2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
487 "MediumPurple1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
488 "purple4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
489 "purple3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
490 "purple2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
491 "purple1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
492 "DarkOrchid4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
493 "DarkOrchid3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
494 "DarkOrchid2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
495 "DarkOrchid1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
496 "MediumOrchid4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
497 "MediumOrchid3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
498 "MediumOrchid2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
499 "MediumOrchid1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
500 "plum4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
501 "plum3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
502 "plum2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
503 "plum1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
504 "orchid4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
505 "orchid3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
506 "orchid2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
507 "orchid1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
508 "magenta4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
509 "magenta3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
510 "magenta2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
511 "magenta1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
512 "VioletRed4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
513 "VioletRed3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
514 "VioletRed2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
515 "VioletRed1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
516 "maroon4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
517 "maroon3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
518 "maroon2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
519 "maroon1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
520 "PaleVioletRed4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
521 "PaleVioletRed3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
522 "PaleVioletRed2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
523 "PaleVioletRed1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
524 "LightPink4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
525 "LightPink3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
526 "LightPink2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
527 "LightPink1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
528 "pink4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
529 "pink3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
530 "pink2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
531 "pink1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
532 "HotPink4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
533 "HotPink3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
534 "HotPink2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
535 "HotPink1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
536 "DeepPink4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
537 "DeepPink3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
538 "DeepPink2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
539 "DeepPink1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
540 "red4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
541 "red3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
542 "red2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
543 "red1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
544 "OrangeRed4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
545 "OrangeRed3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
546 "OrangeRed2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
547 "OrangeRed1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
548 "tomato4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
549 "tomato3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
550 "tomato2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
551 "tomato1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
552 "coral4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
553 "coral3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
554 "coral2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
555 "coral1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
556 "DarkOrange4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
557 "DarkOrange3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
558 "DarkOrange2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
559 "DarkOrange1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
560 "orange4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
561 "orange3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
562 "orange2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
563 "orange1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
564 "LightSalmon4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
565 "LightSalmon3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
566 "LightSalmon2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
567 "LightSalmon1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
568 "salmon4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
569 "salmon3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
570 "salmon2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
571 "salmon1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
572 "brown4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
573 "brown3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
574 "brown2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
575 "brown1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
576 "firebrick4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
577 "firebrick3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
578 "firebrick2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
579 "firebrick1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
580 "chocolate4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
581 "chocolate3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
582 "chocolate2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
583 "chocolate1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
584 "tan4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
585 "tan3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
586 "tan2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
587 "tan1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
588 "wheat4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
589 "wheat3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
590 "wheat2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
591 "wheat1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
592 "burlywood4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
593 "burlywood3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
594 "burlywood2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
595 "burlywood1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
596 "sienna4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
597 "sienna3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
598 "sienna2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
599 "sienna1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
600 "IndianRed4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
601 "IndianRed3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
602 "IndianRed2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
603 "IndianRed1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
604 "RosyBrown4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
605 "RosyBrown3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
606 "RosyBrown2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
607 "RosyBrown1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
608 "DarkGoldenrod4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
609 "DarkGoldenrod3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
610 "DarkGoldenrod2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
611 "DarkGoldenrod1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
612 "goldenrod4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
613 "goldenrod3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
614 "goldenrod2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
615 "goldenrod1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
616 "gold4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
617 "gold3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
618 "gold2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
619 "gold1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
620 "yellow4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
621 "yellow3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
622 "yellow2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
623 "yellow1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
624 "LightYellow4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
625 "LightYellow3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
626 "LightYellow2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
627 "LightYellow1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
628 "LightGoldenrod4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
629 "LightGoldenrod3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
630 "LightGoldenrod2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
631 "LightGoldenrod1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
632 "khaki4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
633 "khaki3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
634 "khaki2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
635 "khaki1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
636 "DarkOliveGreen4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
637 "DarkOliveGreen3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
638 "DarkOliveGreen2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
639 "DarkOliveGreen1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
640 "OliveDrab4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
641 "OliveDrab3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
642 "OliveDrab2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
643 "OliveDrab1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
644 "chartreuse4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
645 "chartreuse3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
646 "chartreuse2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
647 "chartreuse1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
648 "green4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
649 "green3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
650 "green2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
651 "green1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
652 "SpringGreen4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
653 "SpringGreen3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
654 "SpringGreen2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
655 "SpringGreen1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
656 "PaleGreen4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
657 "PaleGreen3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
658 "PaleGreen2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
659 "PaleGreen1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
660 "SeaGreen4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
661 "SeaGreen3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
662 "SeaGreen2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
663 "SeaGreen1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
664 "DarkSeaGreen4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
665 "DarkSeaGreen3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
666 "DarkSeaGreen2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
667 "DarkSeaGreen1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
668 "aquamarine4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
669 "aquamarine3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
670 "aquamarine2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
671 "aquamarine1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
672 "DarkSlateGray4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
673 "DarkSlateGray3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
674 "DarkSlateGray2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
675 "DarkSlateGray1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
676 "cyan4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
677 "cyan3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
678 "cyan2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
679 "cyan1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
680 "turquoise4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
681 "turquoise3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
682 "turquoise2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
683 "turquoise1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
684 "CadetBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
685 "CadetBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
686 "CadetBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
687 "CadetBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
688 "PaleTurquoise4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
689 "PaleTurquoise3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
690 "PaleTurquoise2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
691 "PaleTurquoise1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
692 "LightCyan4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
693 "LightCyan3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
694 "LightCyan2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
695 "LightCyan1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
696 "LightBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
697 "LightBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
698 "LightBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
699 "LightBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
700 "LightSteelBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
701 "LightSteelBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
702 "LightSteelBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
703 "LightSteelBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
704 "SlateGray4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
705 "SlateGray3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
706 "SlateGray2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
707 "SlateGray1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
708 "LightSkyBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
709 "LightSkyBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
710 "LightSkyBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
711 "LightSkyBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
712 "SkyBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
713 "SkyBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
714 "SkyBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
715 "SkyBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
716 "DeepSkyBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
717 "DeepSkyBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
718 "DeepSkyBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
719 "DeepSkyBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
720 "SteelBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
721 "SteelBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
722 "SteelBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
723 "SteelBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
724 "DodgerBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
725 "DodgerBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
726 "DodgerBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
727 "DodgerBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
728 "blue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
729 "blue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
730 "blue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
731 "blue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
732 "RoyalBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
733 "RoyalBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
734 "RoyalBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
735 "RoyalBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
736 "SlateBlue4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
737 "SlateBlue3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
738 "SlateBlue2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
739 "SlateBlue1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
740 "azure4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
741 "azure3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
742 "azure2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
743 "azure1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
744 "MistyRose4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
745 "MistyRose3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
746 "MistyRose2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
747 "MistyRose1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
748 "LavenderBlush4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
749 "LavenderBlush3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
750 "LavenderBlush2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
751 "LavenderBlush1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
752 "honeydew4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
753 "honeydew3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
754 "honeydew2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
755 "honeydew1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
756 "ivory4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
757 "ivory3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
758 "ivory2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
759 "ivory1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
760 "cornsilk4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
761 "cornsilk3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
762 "cornsilk2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
763 "cornsilk1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
764 "LemonChiffon4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
765 "LemonChiffon3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
766 "LemonChiffon2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
767 "LemonChiffon1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
768 "NavajoWhite4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
769 "NavajoWhite3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
770 "NavajoWhite2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
771 "NavajoWhite1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
772 "PeachPuff4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
773 "PeachPuff3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
774 "PeachPuff2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
775 "PeachPuff1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
776 "bisque4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
777 "bisque3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
778 "bisque2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
779 "bisque1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
780 "AntiqueWhite4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
781 "AntiqueWhite3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
782 "AntiqueWhite2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
783 "AntiqueWhite1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
784 "seashell4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
785 "seashell3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
786 "seashell2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
787 "seashell1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
788 "snow4" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
789 "snow3" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
790 "snow2" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
791 "snow1" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
792 "thistle" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
793 "MediumPurple" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
794 "medium purple" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
795 "purple" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
796 "BlueViolet" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
797 "blue violet" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
798 "DarkViolet" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
799 "dark violet" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
800 "DarkOrchid" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
801 "dark orchid" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
802 "MediumOrchid" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
803 "medium orchid" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
804 "orchid" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
805 "plum" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
806 "violet" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
807 "magenta" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
808 "VioletRed" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
809 "violet red" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
810 "MediumVioletRed" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
811 "medium violet red" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
812 "maroon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
813 "PaleVioletRed" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
814 "pale violet red" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
815 "LightPink" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
816 "light pink" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
817 "pink" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
818 "DeepPink" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
819 "deep pink" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
820 "HotPink" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
821 "hot pink" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
822 "red" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
823 "OrangeRed" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
824 "orange red" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
825 "tomato" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
826 "LightCoral" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
827 "light coral" |
13434 | 828 "coral" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
829 "DarkOrange" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
830 "dark orange" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
831 "orange" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
832 "LightSalmon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
833 "light salmon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
834 "salmon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
835 "DarkSalmon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
836 "dark salmon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
837 "brown" |
13434 | 838 "firebrick" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
839 "chocolate" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
840 "tan" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
841 "SandyBrown" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
842 "sandy brown" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
843 "wheat" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
844 "beige" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
845 "burlywood" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
846 "peru" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
847 "sienna" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
848 "SaddleBrown" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
849 "saddle brown" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
850 "IndianRed" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
851 "indian red" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
852 "RosyBrown" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
853 "rosy brown" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
854 "DarkGoldenrod" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
855 "dark goldenrod" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
856 "goldenrod" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
857 "LightGoldenrod" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
858 "light goldenrod" |
13434 | 859 "gold" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
860 "yellow" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
861 "LightYellow" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
862 "light yellow" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
863 "LightGoldenrodYellow" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
864 "light goldenrod yellow" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
865 "PaleGoldenrod" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
866 "pale goldenrod" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
867 "khaki" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
868 "DarkKhaki" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
869 "dark khaki" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
870 "OliveDrab" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
871 "olive drab" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
872 "ForestGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
873 "forest green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
874 "YellowGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
875 "yellow green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
876 "LimeGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
877 "lime green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
878 "GreenYellow" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
879 "green yellow" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
880 "MediumSpringGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
881 "medium spring green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
882 "chartreuse" |
13434 | 883 "green" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
884 "LawnGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
885 "lawn green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
886 "SpringGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
887 "spring green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
888 "PaleGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
889 "pale green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
890 "LightSeaGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
891 "light sea green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
892 "MediumSeaGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
893 "medium sea green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
894 "SeaGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
895 "sea green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
896 "DarkSeaGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
897 "dark sea green" |
13434 | 898 "DarkOliveGreen" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
899 "dark olive green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
900 "DarkGreen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
901 "dark green" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
902 "aquamarine" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
903 "MediumAquamarine" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
904 "medium aquamarine" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
905 "CadetBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
906 "cadet blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
907 "LightCyan" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
908 "light cyan" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
909 "cyan" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
910 "turquoise" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
911 "MediumTurquoise" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
912 "medium turquoise" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
913 "DarkTurquoise" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
914 "dark turquoise" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
915 "PaleTurquoise" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
916 "pale turquoise" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
917 "PowderBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
918 "powder blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
919 "LightBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
920 "light blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
921 "LightSteelBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
922 "light steel blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
923 "SteelBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
924 "steel blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
925 "LightSkyBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
926 "light sky blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
927 "SkyBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
928 "sky blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
929 "DeepSkyBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
930 "deep sky blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
931 "DodgerBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
932 "dodger blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
933 "blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
934 "RoyalBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
935 "royal blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
936 "MediumBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
937 "medium blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
938 "LightSlateBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
939 "light slate blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
940 "MediumSlateBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
941 "medium slate blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
942 "SlateBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
943 "slate blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
944 "DarkSlateBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
945 "dark slate blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
946 "CornflowerBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
947 "cornflower blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
948 "NavyBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
949 "navy blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
950 "navy" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
951 "MidnightBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
952 "midnight blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
953 "LightGray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
954 "light gray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
955 "LightGrey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
956 "light grey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
957 "grey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
958 "gray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
959 "LightSlateGrey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
960 "light slate grey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
961 "LightSlateGray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
962 "light slate gray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
963 "SlateGrey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
964 "slate grey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
965 "SlateGray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
966 "slate gray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
967 "DimGrey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
968 "dim grey" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
969 "DimGray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
970 "dim gray" |
13434 | 971 "DarkSlateGrey" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
972 "dark slate grey" |
13434 | 973 "DarkSlateGray" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
974 "dark slate gray" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
975 "black" |
13434 | 976 "white" |
38241
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
977 "MistyRose" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
978 "misty rose" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
979 "LavenderBlush" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
980 "lavender blush" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
981 "lavender" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
982 "AliceBlue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
983 "alice blue" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
984 "azure" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
985 "MintCream" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
986 "mint cream" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
987 "honeydew" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
988 "seashell" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
989 "LemonChiffon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
990 "lemon chiffon" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
991 "ivory" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
992 "cornsilk" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
993 "moccasin" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
994 "NavajoWhite" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
995 "navajo white" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
996 "PeachPuff" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
997 "peach puff" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
998 "bisque" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
999 "BlanchedAlmond" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1000 "blanched almond" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1001 "PapayaWhip" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1002 "papaya whip" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1003 "AntiqueWhite" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1004 "antique white" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1005 "linen" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1006 "OldLace" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1007 "old lace" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1008 "FloralWhite" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1009 "floral white" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1010 "gainsboro" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1011 "WhiteSmoke" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1012 "white smoke" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1013 "GhostWhite" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1014 "ghost white" |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1015 "snow") |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1016 "The list of X colors from the `rgb.txt' file. |
c3737c213380
(x-colors): Add colors from the recent rgb.txt file.
Eli Zaretskii <eliz@gnu.org>
parents:
35770
diff
changeset
|
1017 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") |
13434 | 1018 |
26736
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26573
diff
changeset
|
1019 (defun xw-defined-colors (&optional frame) |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26573
diff
changeset
|
1020 "Internal function called by `defined-colors', which see." |
13434 | 1021 (or frame (setq frame (selected-frame))) |
59704 | 1022 (let ((defined-colors nil)) |
1023 (dolist (this-color (or (mapcar 'car w32-color-map) x-colors)) | |
27101
a5791b2ee668
(xw-defined-colors): Call color-supported-p,
Eli Zaretskii <eliz@gnu.org>
parents:
26736
diff
changeset
|
1024 (and (color-supported-p this-color frame t) |
59704 | 1025 (push this-color defined-colors))) |
13434 | 1026 defined-colors)) |
1027 | |
19691
a96c6fa10e92
(w32-handle-scroll-bar-event): On up and
Geoff Voelker <voelker@cs.washington.edu>
parents:
19167
diff
changeset
|
1028 |
13434 | 1029 ;;;; Function keys |
1030 | |
19691
a96c6fa10e92
(w32-handle-scroll-bar-event): On up and
Geoff Voelker <voelker@cs.washington.edu>
parents:
19167
diff
changeset
|
1031 ;;; make f10 activate the real menubar rather than the mini-buffer menu |
a96c6fa10e92
(w32-handle-scroll-bar-event): On up and
Geoff Voelker <voelker@cs.washington.edu>
parents:
19167
diff
changeset
|
1032 ;;; navigation feature. |
a96c6fa10e92
(w32-handle-scroll-bar-event): On up and
Geoff Voelker <voelker@cs.washington.edu>
parents:
19167
diff
changeset
|
1033 (global-set-key [f10] (lambda () |
a96c6fa10e92
(w32-handle-scroll-bar-event): On up and
Geoff Voelker <voelker@cs.washington.edu>
parents:
19167
diff
changeset
|
1034 (interactive) (w32-send-sys-command ?\xf100))) |
a96c6fa10e92
(w32-handle-scroll-bar-event): On up and
Geoff Voelker <voelker@cs.washington.edu>
parents:
19167
diff
changeset
|
1035 |
13434 | 1036 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame |
1037 global-map) | |
1038 | |
1039 | |
1040 ;;; Do the actual Windows setup here; the above code just defines | |
1041 ;;; functions and variables that we use now. | |
1042 | |
1043 (setq command-line-args (x-handle-args command-line-args)) | |
1044 | |
1045 ;;; Make sure we have a valid resource name. | |
1046 (or (stringp x-resource-name) | |
59704 | 1047 (setq x-resource-name |
1048 ;; Change any . or * characters in x-resource-name to hyphens, | |
1049 ;; so as not to choke when we use it in X resource queries. | |
1050 (replace-regexp-in-string "[.*]" "-" (invocation-name)))) | |
13434 | 1051 |
1052 ;; For the benefit of older Emacses (19.27 and earlier) that are sharing | |
1053 ;; the same lisp directory, don't pass the third argument unless we seem | |
1054 ;; to have the multi-display support. | |
1055 (if (fboundp 'x-close-connection) | |
1056 (x-open-connection "" | |
1057 x-command-line-resources | |
1058 ;; Exit Emacs with fatal error if this fails. | |
1059 t) | |
1060 (x-open-connection "" | |
1061 x-command-line-resources)) | |
1062 | |
1063 (setq frame-creation-function 'x-create-frame-with-faces) | |
1064 | |
1065 (setq x-cut-buffer-max (min (- (/ (x-server-max-request-size) 2) 100) | |
1066 x-cut-buffer-max)) | |
1067 | |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15265
diff
changeset
|
1068 ;; W32 expects the menu bar cut and paste commands to use the clipboard. |
13434 | 1069 ;; This has ,? to match both on Sunos and on Solaris. |
1070 (menu-bar-enable-clipboard) | |
1071 | |
23636
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1072 ;; W32 systems have different fonts than commonly found on X, so |
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1073 ;; we define our own standard fontset here. |
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1074 (defvar w32-standard-fontset-spec |
24212
36652d90b38f
(w32-standard-fontset-spec): Remove wildcard
Geoff Voelker <voelker@cs.washington.edu>
parents:
24142
diff
changeset
|
1075 "-*-Courier New-normal-r-*-*-13-*-*-*-c-*-fontset-standard" |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1076 "String of fontset spec of the standard fontset. |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1077 This defines a fontset consisting of the Courier New variations for |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1078 European languages which are distributed with Windows as |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1079 \"Multilanguage Support\". |
23636
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1080 |
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1081 See the documentation of `create-fontset-from-fontset-spec for the format.") |
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1082 |
42812
c9282c43bb5a
Add comments to avoid future deletion of conditionals that seem
Jason Rumney <jasonr@gnu.org>
parents:
42810
diff
changeset
|
1083 ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1084 (if (fboundp 'new-fontset) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1085 (progn |
49290
eb2efd226974
Call setup-default-fontset.
Kenichi Handa <handa@m17n.org>
parents:
45786
diff
changeset
|
1086 ;; Setup the default fontset. |
eb2efd226974
Call setup-default-fontset.
Kenichi Handa <handa@m17n.org>
parents:
45786
diff
changeset
|
1087 (setup-default-fontset) |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1088 ;; Create the standard fontset. |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1089 (create-fontset-from-fontset-spec w32-standard-fontset-spec t) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1090 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1,...). |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1091 (create-fontset-from-x-resource) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1092 ;; Try to create a fontset from a font specification which comes |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1093 ;; from initial-frame-alist, default-frame-alist, or X resource. |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1094 ;; A font specification in command line argument (i.e. -fn XXXX) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1095 ;; should be already in default-frame-alist as a `font' |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1096 ;; parameter. However, any font specifications in site-start |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1097 ;; library, user's init file (.emacs), and default.el are not |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1098 ;; yet handled here. |
23636
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1099 |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1100 (let ((font (or (cdr (assq 'font initial-frame-alist)) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1101 (cdr (assq 'font default-frame-alist)) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1102 (x-get-resource "font" "Font"))) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1103 xlfd-fields resolved-name) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1104 (if (and font |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1105 (not (query-fontset font)) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1106 (setq resolved-name (x-resolve-font-name font)) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1107 (setq xlfd-fields (x-decompose-font-name font))) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1108 (if (string= "fontset" |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1109 (aref xlfd-fields xlfd-regexp-registry-subnum)) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1110 (new-fontset font |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1111 (x-complement-fontset-spec xlfd-fields nil)) |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1112 ;; Create a fontset from FONT. The fontset name is |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1113 ;; generated from FONT. |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1114 (create-fontset-from-ascii-font font |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1115 resolved-name "startup")))))) |
23636
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1116 |
13434 | 1117 ;; Apply a geometry resource to the initial frame. Put it at the end |
1118 ;; of the alist, so that anything specified on the command line takes | |
1119 ;; precedence. | |
1120 (let* ((res-geometry (x-get-resource "geometry" "Geometry")) | |
1121 parsed) | |
1122 (if res-geometry | |
1123 (progn | |
1124 (setq parsed (x-parse-geometry res-geometry)) | |
1125 ;; If the resource specifies a position, | |
1126 ;; call the position and size "user-specified". | |
1127 (if (or (assq 'top parsed) (assq 'left parsed)) | |
1128 (setq parsed (cons '(user-position . t) | |
1129 (cons '(user-size . t) parsed)))) | |
1130 ;; All geometry parms apply to the initial frame. | |
1131 (setq initial-frame-alist (append initial-frame-alist parsed)) | |
1132 ;; The size parms apply to all frames. | |
1133 (if (assq 'height parsed) | |
59704 | 1134 (push (cons 'height (cdr (assq 'height parsed))) |
1135 default-frame-alist)) | |
13434 | 1136 (if (assq 'width parsed) |
59704 | 1137 (push (cons 'width (cdr (assq 'width parsed))) |
1138 default-frame-alist))))) | |
13434 | 1139 |
1140 ;; Check the reverseVideo resource. | |
1141 (let ((case-fold-search t)) | |
1142 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo"))) | |
59704 | 1143 (if (and rv (string-match "^\\(true\\|yes\\|on\\)$" rv)) |
1144 (push '(reverse . t) default-frame-alist)))) | |
13434 | 1145 |
1146 (defun x-win-suspend-error () | |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1147 "Report an error when a suspend is attempted." |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1148 (error "Suspending an Emacs running under W32 makes no sense")) |
13434 | 1149 (add-hook 'suspend-hook 'x-win-suspend-error) |
1150 | |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15265
diff
changeset
|
1151 ;;; Turn off window-splitting optimization; w32 is usually fast enough |
13434 | 1152 ;;; that this is only annoying. |
1153 (setq split-window-keep-point t) | |
1154 | |
1155 ;; Don't show the frame name; that's redundant. | |
19167
337f5643498e
Set mode-line-frame-identification
Geoff Voelker <voelker@cs.washington.edu>
parents:
16889
diff
changeset
|
1156 (setq-default mode-line-frame-identification " ") |
13434 | 1157 |
1158 ;;; Set to a system sound if you want a fancy bell. | |
1159 (set-message-beep 'ok) | |
1160 | |
16588
481b7874a1e9
Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents:
15265
diff
changeset
|
1161 ;; Remap some functions to call w32 common dialogs |
13434 | 1162 |
1163 (defun internal-face-interactive (what &optional bool) | |
1164 (let* ((fn (intern (concat "face-" what))) | |
27832
866f7a6b82b3
(internal-face-interactive): Update prompt for new read-face-name.
Dave Love <fx@gnu.org>
parents:
27623
diff
changeset
|
1165 (prompt (concat "Set " what " of face ")) |
866f7a6b82b3
(internal-face-interactive): Update prompt for new read-face-name.
Dave Love <fx@gnu.org>
parents:
27623
diff
changeset
|
1166 (face (read-face-name prompt)) |
13434 | 1167 (default (if (fboundp fn) |
1168 (or (funcall fn face (selected-frame)) | |
1169 (funcall fn 'default (selected-frame))))) | |
1170 (fn-win (intern (concat (symbol-name window-system) "-select-" what))) | |
22539
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1171 value) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1172 (setq value |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1173 (cond ((fboundp fn-win) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1174 (funcall fn-win)) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1175 ((eq bool 'color) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1176 (completing-read (concat prompt " " (symbol-name face) " to: ") |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1177 (mapcar (function (lambda (color) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1178 (cons color color))) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1179 x-colors) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1180 nil nil nil nil default)) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1181 (bool |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1182 (y-or-n-p (concat "Should face " (symbol-name face) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1183 " be " bool "? "))) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1184 (t |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1185 (read-string (concat prompt " " (symbol-name face) " to: ") |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1186 nil nil default)))) |
45ccce07729d
(internal-face-interactive): Handle case where BOOL is `color'.
Andrew Innes <andrewi@gnu.org>
parents:
21883
diff
changeset
|
1187 (list face (if (equal value "") nil value)))) |
13434 | 1188 |
24686
f2ecc3b6a45f
Change the x-charset-registry property for the
Andrew Innes <andrewi@gnu.org>
parents:
24683
diff
changeset
|
1189 ;;; Enable Japanese fonts on Windows to be used by default. |
49882
3b81891b7703
Call set-fontset-font with NAME nil.
Kenichi Handa <handa@m17n.org>
parents:
49599
diff
changeset
|
1190 (set-fontset-font nil (make-char 'katakana-jisx0201) '("*" . "JISX0208-SJIS")) |
3b81891b7703
Call set-fontset-font with NAME nil.
Kenichi Handa <handa@m17n.org>
parents:
49599
diff
changeset
|
1191 (set-fontset-font nil (make-char 'latin-jisx0201) '("*" . "JISX0208-SJIS")) |
3b81891b7703
Call set-fontset-font with NAME nil.
Kenichi Handa <handa@m17n.org>
parents:
49599
diff
changeset
|
1192 (set-fontset-font nil (make-char 'japanese-jisx0208) '("*" . "JISX0208-SJIS")) |
3b81891b7703
Call set-fontset-font with NAME nil.
Kenichi Handa <handa@m17n.org>
parents:
49599
diff
changeset
|
1193 (set-fontset-font nil (make-char 'japanese-jisx0208-1978) '("*" . "JISX0208-SJIS")) |
24686
f2ecc3b6a45f
Change the x-charset-registry property for the
Andrew Innes <andrewi@gnu.org>
parents:
24683
diff
changeset
|
1194 |
13434 | 1195 (defun mouse-set-font (&rest fonts) |
29322
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1196 "Select a font. |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1197 If `w32-use-w32-font-dialog' is non-nil (the default), use the Windows |
16e1a87707b5
Doc changes to reduce diffs with x-win.el.
Jason Rumney <jasonr@gnu.org>
parents:
27887
diff
changeset
|
1198 font dialog to get the matching FONTS. Otherwise use a pop-up menu |
35770 | 1199 \(like Emacs on other platforms) initialized with the fonts in |
27887
a9f19a6bfb69
(mouse-set-font): Do not build fontset from chosen font.
Jason Rumney <jasonr@gnu.org>
parents:
27832
diff
changeset
|
1200 `w32-fixed-font-alist'." |
23560
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1201 (interactive |
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1202 (if w32-use-w32-font-dialog |
42848
4313f287da4d
Move user variables to w32-vars.el and make them defcustoms.
Jason Rumney <jasonr@gnu.org>
parents:
42812
diff
changeset
|
1203 (let ((chosen-font (w32-select-font (selected-frame) |
4313f287da4d
Move user variables to w32-vars.el and make them defcustoms.
Jason Rumney <jasonr@gnu.org>
parents:
42812
diff
changeset
|
1204 w32-list-proportional-fonts))) |
24964
22d526660026
(mouse-set-font): If user uses w32 dialog but
Karl Heuer <kwzh@gnu.org>
parents:
24686
diff
changeset
|
1205 (and chosen-font (list chosen-font))) |
23560
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1206 (x-popup-menu |
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1207 last-nonmenu-event |
59704 | 1208 ;; Append list of fontsets currently defined. |
42812
c9282c43bb5a
Add comments to avoid future deletion of conditionals that seem
Jason Rumney <jasonr@gnu.org>
parents:
42810
diff
changeset
|
1209 ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles |
23636
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1210 (if (fboundp 'new-fontset) |
3246160c5469
(x-get-selection-value): Alias to
Geoff Voelker <voelker@cs.washington.edu>
parents:
23625
diff
changeset
|
1211 (append w32-fixed-font-alist (list (generate-fontset-menu))))))) |
23560
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1212 (if fonts |
27887
a9f19a6bfb69
(mouse-set-font): Do not build fontset from chosen font.
Jason Rumney <jasonr@gnu.org>
parents:
27832
diff
changeset
|
1213 (let (font) |
23560
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1214 (while fonts |
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1215 (condition-case nil |
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1216 (progn |
24212
36652d90b38f
(w32-standard-fontset-spec): Remove wildcard
Geoff Voelker <voelker@cs.washington.edu>
parents:
24142
diff
changeset
|
1217 (setq font (car fonts)) |
27887
a9f19a6bfb69
(mouse-set-font): Do not build fontset from chosen font.
Jason Rumney <jasonr@gnu.org>
parents:
27832
diff
changeset
|
1218 (set-default-font font) |
24212
36652d90b38f
(w32-standard-fontset-spec): Remove wildcard
Geoff Voelker <voelker@cs.washington.edu>
parents:
24142
diff
changeset
|
1219 (setq fonts nil)) |
36652d90b38f
(w32-standard-fontset-spec): Remove wildcard
Geoff Voelker <voelker@cs.washington.edu>
parents:
24142
diff
changeset
|
1220 (error (setq fonts (cdr fonts))))) |
23560
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1221 (if (null font) |
6414b7085648
(w32-use-w32-font-dialog, w32-fixed-font-alist):
Geoff Voelker <voelker@cs.washington.edu>
parents:
22539
diff
changeset
|
1222 (error "Font not found"))))) |
13434 | 1223 |
56107
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1224 ;;; Set default known names for image libraries |
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1225 (setq image-library-alist |
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1226 '((xpm "libXpm-nox4.dll" "libxpm.dll") |
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1227 (png "libpng13d.dll" "libpng13.dll" "libpng12d.dll" "libpng12.dll" "libpng.dll") |
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1228 (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll") |
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1229 (tiff "libtiff3.dll" "libtiff.dll") |
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1230 (gif "libungif.dll"))) |
a5bfa1a26af3
(image-library-alist): Initialize to a known set of probable library names.
Juanma Barranquero <lekktu@gmail.com>
parents:
55467
diff
changeset
|
1231 |
59704 | 1232 ;; arch-tag: 69fb1701-28c2-4890-b351-3d1fe4b4f166 |
16889
8de32e992e4d
Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16596
diff
changeset
|
1233 ;;; w32-win.el ends here |