From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60190) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jKVNz-0006Ax-Hq for guix-patches@gnu.org; Fri, 03 Apr 2020 19:06:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jKVNy-0000UN-9D for guix-patches@gnu.org; Fri, 03 Apr 2020 19:06:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:59992) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jKVNy-0000UA-6G for guix-patches@gnu.org; Fri, 03 Apr 2020 19:06:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jKVNy-0007Xb-1A for guix-patches@gnu.org; Fri, 03 Apr 2020 19:06:02 -0400 Subject: [bug#40402] [PATCH 1/3] gnu: Add emacs-modus-vivendi-theme. Resent-Message-ID: From: Dimakis Dimakakos Date: Sat, 4 Apr 2020 02:05:36 +0300 Message-Id: <20200403230538.9032-2-me@bendersteed.tech> In-Reply-To: <20200403230538.9032-1-me@bendersteed.tech> References: <20200403230538.9032-1-me@bendersteed.tech> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40402@debbugs.gnu.org Cc: Dimakakos Dimos From: Dimakakos Dimos * gnu/packages/emacs-xyz.scm (emacs-modus-vivendi-theme): New variable. --- gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c0ece8b94e..c28ab8ef49 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20690,6 +20690,31 @@ is cast on a light backdrop (Modus Operandi) and another where light text is displayed against a dark background (Modus Vivendi).") (license license:gpl3+))) +(define-public emacs-modus-vivendi-theme + (package + (name "emacs-modus-vivendi-theme") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://elpa.gnu.org/packages/modus-vivendi-theme-" + version + ".el")) + (sha256 + (base32 + "1w4vrg39dghghkvll3h4kmzykc3zpp6pbychb39gcc13z2b06v8g")))) + (build-system emacs-build-system) + (home-page + "https://gitlab.com/protesilaos/modus-themes") + (synopsis "Accessible dark theme (WCAG AAA)") + (description + "Modus vivendi is the dark version of the modus accessible +themes for GNU Emacs. The contrast ratio between foreground and background +values should always be >= 7:1, which conforms with the WCAG AAA accessibility +standard. This is the highest standard of its kind.") + (license license:gpl3+))) + (define-public emacs-punpun-theme (let ((commit "2f78125609277b2478abdebd8f9d5ee10a823b65") (revision "0")) -- 2.26.0