From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Theodor Thornhill Newsgroups: gmane.emacs.devel Subject: Re: solarized Date: Tue, 15 Sep 2020 15:39:52 +0200 Message-ID: <986EE32C-55D8-4A39-B556-872A5F49448E@thornhill.no> References: <87mu1ra1ej.fsf@protesilaos.com> <87imcf9wfp.fsf@protesilaos.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="40306"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Richard Stallman , Emacs developers To: emacs-devel@gnu.org, Protesilaos Stavrou , Yuri Khan Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Sep 15 15:44:42 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kIBGE-000ANJ-DY for ged-emacs-devel@m.gmane-mx.org; Tue, 15 Sep 2020 15:44:42 +0200 Original-Received: from localhost ([::1]:46916 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kIBGD-0002IL-CP for ged-emacs-devel@m.gmane-mx.org; Tue, 15 Sep 2020 09:44:41 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:44456) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kIBBo-0006Lk-FD for emacs-devel@gnu.org; Tue, 15 Sep 2020 09:40:09 -0400 Original-Received: from out0.migadu.com ([94.23.1.103]:35954) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kIBBk-0003eJ-9L; Tue, 15 Sep 2020 09:40:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thornhill.no; s=key1; t=1600177194; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4ReSSlVG8MTMp1nyJnKFqPACAbilrilxO0cJwCF33PU=; b=jkYQ+ma1ekGKYTw7CwfWt9qQNfz8yFi9rdJ5K2QrxNQ7L2hgoqV9gFDkwYftOFUSWRXawu lM/uSWJUPe1328Jui0TKSeX+wRAoPVp72i0PMjMwlN/TDirJz3pr4VizzYM6YxVNo4px5e QaqKufoVpcnjqBY9RDjE8LEVqmEtCIJAJlDrJqJHtsg7zgwVm/XcqAU5DCPNDaKpAP+uJY 7NeezjXzy/xnMvTyS2MTHG6RJGjKH/NbBHAwX9YmxNUNyDIUTXexkmMwPe75LYkZA+/qZf nrbgIbyU4VeiHc0Ye0+sgj5Hwm4VnncfFIfBf/tagetLQ4ZyoJyeqpmhWiyCZw== X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. In-Reply-To: <87imcf9wfp.fsf@protesilaos.com> Received-SPF: pass client-ip=94.23.1.103; envelope-from=theo@thornhill.no; helo=out0.migadu.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/15 09:39:54 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:255741 Archived-At: On September 15, 2020 12:16:42 PM GMT+02:00, Protesilaos Stavrou wrote: >The 16-colour palette that has to work on both light and dark >backgrounds is a constraint that Emacs' defface can circumvent=2E An >excerpt from 'M-x find-library faces': > >(defface link > '((((class color) (min-colors 88) (background light)) > :foreground "RoyalBlue3" :underline t) > (((class color) (background light)) > :foreground "blue" :underline t) > (((class color) (min-colors 88) (background dark)) > :foreground "cyan1" :underline t) > (((class color) (background dark)) > :foreground "cyan" :underline t) > (t :inherit underline)) > "Basic face for unvisited links=2E" > :group 'basic-faces > :version "22=2E1") > >If one really wants to keep it to 16 colours, then maintain two sets of >them=2E One for dark, another for light=2E And keep accessibility in mi= nd=2E > > Could it be an idea to generalize the modus themes? They seem very compreh= ensive Theodor Thornhill