From 5fa78e451fe98ca5a434e560a6b01f54772af6d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Wed, 2 Jan 2019 02:20:32 +0100 Subject: [PATCH] add Terminal.app theme --- dot/urxvt.nix | 1 + theme.nix | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dot/urxvt.nix b/dot/urxvt.nix index 06a77f2..6417a66 100644 --- a/dot/urxvt.nix +++ b/dot/urxvt.nix @@ -11,5 +11,6 @@ with import ../theme.nix; extraConfig = { perl-ext-common = "default,clipboard,url-select,keyboard-select"; fading = 50; + urgentOnBell = true; }; } diff --git a/theme.nix b/theme.nix index 85c1693..f7c62da 100644 --- a/theme.nix +++ b/theme.nix @@ -1,4 +1,11 @@ let + flip = scheme: scheme // { + background = scheme.foreground; + foreground = scheme.background; + fadeColor = background; + pointerColorForeground = scheme.pointerColorBackground; + pointerColorBackground = scheme.pointerColorForeground; + }; antares = rec { black = { light = "#151515"; dark = "#000000"; }; red = { light = "#de575c"; dark = "#de575c"; }; @@ -11,6 +18,22 @@ let background = black.dark; foreground = white.dark; }; + macOS = rec { + black = { light = "#818383"; dark = "#000000"; }; + red = { light = "#fc391f"; dark = "#c23621"; }; + yellow = { light = "#eaec23"; dark = "#adad27"; }; + green = { light = "#31e722"; dark = "#25bc24"; }; + blue = { light = "#5833ff"; dark = "#492ee1"; }; + magenta = { light = "#f935f8"; dark = "#d338d3"; }; + cyan = { light = "#14f0f0"; dark = "#33bbc8"; }; + white = { light = "e9ebeb#"; dark = "#cbcccd"; }; + background = black.dark; + foreground = white.dark; + fadeColor = black.dark; + cursorColor = green.light; + pointerColorForeground = green.light; + pointerColorBackground = white.dark; + }; solarizedDark = rec { black = { dark = "#073642"; light = "#002b36"; }; red = { dark = "#dc322f"; light = "#cb4b16"; };