From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: evan Newsgroups: gmane.emacs.help Subject: Re: Faces inheriting colors from gtk theme Date: Thu, 8 Nov 2012 13:26:41 -0800 (PST) Message-ID: <9923f238-3512-43ee-b015-e6551dd0e31f@googlegroups.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1352410215 9391 80.91.229.3 (8 Nov 2012 21:30:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 8 Nov 2012 21:30:15 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 08 22:30:25 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TWZg6-0002gI-OC for geh-help-gnu-emacs@m.gmane.org; Thu, 08 Nov 2012 22:30:22 +0100 Original-Received: from localhost ([::1]:57138 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWZfx-0003Lw-9R for geh-help-gnu-emacs@m.gmane.org; Thu, 08 Nov 2012 16:30:13 -0500 Original-Received: by 10.224.111.140 with SMTP id s12mr5573633qap.5.1352410001380; Thu, 08 Nov 2012 13:26:41 -0800 (PST) Original-Received: by 10.52.66.235 with SMTP id i11mr2089694vdt.7.1352410001355; Thu, 08 Nov 2012 13:26:41 -0800 (PST) Original-Path: usenet.stanford.edu!c7no12566547qap.0!news-out.google.com!gf5ni18188417qab.0!nntp.google.com!c7no12566543qap.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=146.90.35.232; posting-account=cMjuxAoAAAB-6i-xpTpQzwpy2_ugQ9Ne Original-NNTP-Posting-Host: 146.90.35.232 User-Agent: G2/1.0 Injection-Date: Thu, 08 Nov 2012 21:26:41 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:195269 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:87595 Archived-At: On an opposite note... Is it possible to disable the use of gtk colors for region? On Saturday, 30 June 2012 20:35:25 UTC+1, Jeremy Nickurak wrote: > I've read and observed that emacs24 uses standard gtk colors for the =A0"= region" face. >=20 >=20 > Is it also supposed to do that for other faces? Or is there a way to get = that behavior? >=20 >=20 >=20 > In particular, it would seem natural to define faces as follows: >=20 >=20 >=20 > (cursor ((t (:foreground "theme_selected_fg_color_" :background "theme_se= lected_bg_color_")))) >=20 > (mouse ((t (:foreground "theme_selected_fg_color_" :background "theme_sel= ected_bg_color_")))) > (fringe ((t (:foreground "theme_fg_color_" :background "theme_bg_color_")= ))) >=20 > (border ((t (:foreground "theme_fg_color_" :background "theme_bg_color_")= ))) > (mode-line ((t (:foreground "theme_fg_color_" :background "theme_bg_color= _" :box (:line-width -1 :style released-button))))) >=20 > (mode-line-buffer-id ((t (:foreground "theme_fg_color_" :background "them= e_bg_color_")))) > (mode-line-inactive ((t (:foreground "theme_fg_color_" :background "theme= _bg_color_")))) >=20 > (minibuffer-prompt ((t (:foreground "theme_fg_color_" :background "theme_= base_color_")))) > (region ((t (:foreground "theme_fg_color_" :background "theme_selected_bg= _color_")))) >=20 > (secondary-selection ((t (:foreground "theme_fg_color_" :background "them= e_selected_bg_color_")))) > (tooltip ((t (:background "theme_tooltip_bg_color_" :foreground "theme_to= oltip_fg_color_")))) >=20 > (default ((t (:foreground "theme_fg_color_" :background "theme_base_color= _"))))) >=20 >=20 > ... where the theme_X_colors were derived from the appropriate gtk color = scheme property.