diff options
author | tv <tv@krebsco.de> | 2024-03-18 19:14:11 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2024-03-18 19:14:11 +0100 |
commit | 344cf35b7fe725a7e17a00a33549d9d1fea78945 (patch) | |
tree | 341954f6ad53a0d0fe81e43219850af8c87caff8 | |
parent | 51e7abe37677e3993bbdd8d362f7e214d9b15ed4 (diff) |
alacritty: brighten primary colors and shade bold
-rw-r--r-- | pkgs/simple/alacritty-tv.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/simple/alacritty-tv.nix b/pkgs/simple/alacritty-tv.nix index cb8f960..dd18b42 100644 --- a/pkgs/simple/alacritty-tv.nix +++ b/pkgs/simple/alacritty-tv.nix @@ -14,8 +14,8 @@ let bell.duration = 50; bell.color = "#ff00ff"; colors.cursor.cursor = "#f042b0"; - colors.primary.background = "#202020"; - colors.primary.foreground = "#d0d7d0"; + colors.primary.background = "#202220"; + colors.primary.foreground = "#f0fff0"; colors.normal.black = "#000000"; colors.normal.red = "#cd0000"; colors.normal.green = "#00cd00"; @@ -32,7 +32,7 @@ let colors.bright.magenta = "#fb53fb"; colors.bright.cyan = "#72fbfb"; colors.bright.white = "#fbfbfb"; - draw_bold_text_with_bright_colors = true; + draw_bold_text_with_bright_colors = false; hints.enabled = [ { regex = "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\\u0000-\\u001F\\u007F-\\u009F<>\"\\s{-}\\^⟨⟩`]+"; |