From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Volker Wysk Newsgroups: gmane.emacs.help Subject: Changing the colors of the initial frame Date: Mon, 04 May 2015 19:15:54 +0200 Message-ID: <3353335.iAuQ8r4myJ@debian> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit X-Trace: ger.gmane.org 1430760063 29205 80.91.229.3 (4 May 2015 17:21:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 4 May 2015 17:21:03 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon May 04 19:20:55 2015 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 1YpK34-0000Oe-TI for geh-help-gnu-emacs@m.gmane.org; Mon, 04 May 2015 19:20:55 +0200 Original-Received: from localhost ([::1]:35292 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YpK34-0003Qo-5N for geh-help-gnu-emacs@m.gmane.org; Mon, 04 May 2015 13:20:54 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55616) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YpJyr-00020j-P9 for help-gnu-emacs@gnu.org; Mon, 04 May 2015 13:16:34 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YpJyo-0003wM-CE for help-gnu-emacs@gnu.org; Mon, 04 May 2015 13:16:33 -0400 Original-Received: from wf164.netcup.net ([46.38.241.100]:40779) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YpJyo-0003wD-61 for help-gnu-emacs@gnu.org; Mon, 04 May 2015 13:16:30 -0400 Original-Received: from debian.localnet (x55b529a9.dyn.telefonica.de [85.181.41.169]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by wf164.netcup.net (Postfix) with ESMTPSA id 90C6A222A79 for ; Mon, 4 May 2015 19:16:29 +0200 (CEST) User-Agent: KMail/4.14.2 (Linux/3.16.0-4-amd64; KDE/4.14.2; x86_64; ; ) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 46.38.241.100 X-Mailman-Approved-At: Mon, 04 May 2015 13:20:35 -0400 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:104186 Archived-At: Hi! I have this in my .emacs: (setq default-frame-alist '( (height . 55) (width . 190) (font . "10x20") (vertical-scroll-bars . t) (horizontal-scroll-bars . nil) (foreground-color . "#00FF30") (background-color . "black") (cursor-color . "white") (cursor-type . box) )) However, this does not get applied to the initial frame. The background is white. When creating a new frame (make-frame), the settings take effect. How do I configure the initial frame? I also have this in .emacs: (set-face-foreground 'mode-line "white") (set-face-background 'mode-line "black") This doesn't seem to have any effect. I'm using Emacs-24.4.1. When i was using version 23, it worked. After upgrading, the described problem occured. Thanks for any help, Volker