From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Brendan Miller Newsgroups: gmane.emacs.help Subject: changing tabbar font color... Date: Mon, 22 Mar 2010 16:04:35 -0700 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1269299110 19130 80.91.229.12 (22 Mar 2010 23:05:10 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 22 Mar 2010 23:05:10 +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 Mar 23 00:05:06 2010 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.69) (envelope-from ) id 1Ntqg9-00067s-CV for geh-help-gnu-emacs@m.gmane.org; Tue, 23 Mar 2010 00:05:01 +0100 Original-Received: from localhost ([127.0.0.1]:42176 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ntqg8-0006NJ-Vm for geh-help-gnu-emacs@m.gmane.org; Mon, 22 Mar 2010 19:05:01 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ntqfn-0006ND-2g for help-gnu-emacs@gnu.org; Mon, 22 Mar 2010 19:04:39 -0400 Original-Received: from [140.186.70.92] (port=45408 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ntqfl-0006Mj-Vm for help-gnu-emacs@gnu.org; Mon, 22 Mar 2010 19:04:38 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Ntqfk-0004KH-Kq for help-gnu-emacs@gnu.org; Mon, 22 Mar 2010 19:04:37 -0400 Original-Received: from mail-vw0-f41.google.com ([209.85.212.41]:45091) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ntqfk-0004K2-Gg for help-gnu-emacs@gnu.org; Mon, 22 Mar 2010 19:04:36 -0400 Original-Received: by vws20 with SMTP id 20so2161319vws.0 for ; Mon, 22 Mar 2010 16:04:35 -0700 (PDT) Original-Received: by 10.220.107.71 with SMTP id a7mr3694282vcp.231.1269299075556; Mon, 22 Mar 2010 16:04:35 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) 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:72453 Archived-At: I have tabbar, but the gray on gray colors are a little hard to see, so I wanted to customise the font color... I got some example code from google to start out from, but it generates this error: error: Invalid face, tabbar-default-face The relevant section of my .emacs looks like this: ;; tabbar (require 'tabbar) (tabbar-mode) (global-set-key [(s-right)] 'tabbar-forward) (global-set-key [(s-left)] 'tabbar-backward) ;; example tabbar coloring code... (set-face-attribute 'tabbar-default-face nil :background "gray60") (set-face-attribute 'tabbar-unselected-face nil :background "gray85" :foreground "gray30" :box nil) (set-face-attribute 'tabbar-selected-face nil :background "#f2f2f6" :foreground "black" :box nil) (set-face-attribute 'tabbar-button-face nil :box '(:line-width 1 :color "gray72" :style released-button)) (set-face-attribute 'tabbar-separator-face nil :height 0.7)