From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: augukarl@yahoo.se Newsgroups: gmane.emacs.help Subject: Re: Font lock, retrieving values of standard colors Date: 13 Feb 2007 02:31:30 -0800 Organization: http://groups.google.com Message-ID: <1171362690.354462.106170@s48g2000cws.googlegroups.com> References: <1171356797.821912.38650@a75g2000cwd.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1171363307 23993 80.91.229.12 (13 Feb 2007 10:41:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 13 Feb 2007 10:41:47 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Feb 13 11:41:36 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HGv6N-0006Rc-F1 for geh-help-gnu-emacs@m.gmane.org; Tue, 13 Feb 2007 11:41:35 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HGv6N-0002d6-1N for geh-help-gnu-emacs@m.gmane.org; Tue, 13 Feb 2007 05:41:35 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!s48g2000cws.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 15 Original-NNTP-Posting-Host: 193.111.107.249 Original-X-Trace: posting.google.com 1171362696 15785 127.0.0.1 (13 Feb 2007 10:31:36 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Tue, 13 Feb 2007 10:31:36 +0000 (UTC) In-Reply-To: User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; sv-SE; rv:1.8.0.9) Gecko/20070126 Ubuntu/dapper-security Firefox/1.5.0.9,gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 sharon.nordnet.se:3128 (squid/2.5.STABLE6) Complaints-To: groups-abuse@google.com Injection-Info: s48g2000cws.googlegroups.com; posting-host=193.111.107.249; posting-account=lFYKQQ0AAABTiPyPF35sjusGiOMrOa1o Original-Xref: shelby.stanford.edu gnu.emacs.help:145552 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:41156 Archived-At: On 13 Feb, 10:56, "Herbert Euler" wrote: > >Does anyone know how to retrieve the (hex) values of the colors in the > >standard color theme with Emacs, i.e. what's the color code for font- > >lock-string-face, font-lock-variable-name-face etc. > > ELISP> (face-attribute 'font-lock-string-face :foreground) > "red" > ELISP> (color-values "red") > (65535 0 0) Excellent, thanks. August