mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
add Terminal.app theme
This commit is contained in:
@@ -11,5 +11,6 @@ with import ../theme.nix;
|
||||
extraConfig = {
|
||||
perl-ext-common = "default,clipboard,url-select,keyboard-select";
|
||||
fading = 50;
|
||||
urgentOnBell = true;
|
||||
};
|
||||
}
|
||||
|
||||
23
theme.nix
23
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"; };
|
||||
|
||||
Reference in New Issue
Block a user