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