all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ismael Valladolid Torres <ISMAEVAL@terra.es>
Subject: Re: Background colour customization
Date: Mon, 24 Jan 2005 20:23:13 +0100	[thread overview]
Message-ID: <20050124192313.GB2296@buddha> (raw)
In-Reply-To: <IAU1VR$831DB0429317147F7D28D9B64F39DC26@libero.it>

romeomedina@libero.it escribe:
> Recently I downloaded and installed Emacs CVS,
> and it came up all white, whereas I like that dark smart green
> with which Emacs opens up, i.e.,
> from Mandrake default installation.
> Can anyone suggest how to customize that?
> 'M-x list-display-colors' didn't help:
> I couldn't find the colour I wanted over there,
> and even if I had found it I don't know how to set it by default.

For a ``Mandraky'' look I use:

(defvar current-background "DarkSlateGray")
(defvar current-cursor "Orchid")
(defvar current-foreground "Wheat")

(set-background-color current-background)
(set-cursor-color current-cursor)
(set-foreground-color current-foreground)

(set-default-font current-font)
(setq default-frame-alist
      (list
       (cons 'font current-font)
       (cons 'background-color current-background)
       (cons 'cursor-color current-cursor)
       (cons 'foreground-color current-foreground)))

(setq initial-frame-alist default-frame-alist)

Cordially, Ismael

  reply	other threads:[~2005-01-24 19:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-01-24 17:57 Background colour customization romeomedina
2005-01-24 19:23 ` Ismael Valladolid Torres [this message]
2005-01-24 19:34 ` Drew Adams
2005-02-21 17:38 ` Rodolfo Medina
     [not found] <mailman.14956.1106591227.27204.help-gnu-emacs@gnu.org>
2005-01-25  9:14 ` Mathias Dahl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20050124192313.GB2296@buddha \
    --to=ismaeval@terra.es \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.