From d0301586c21a88d93aff06e3ce2e33ca127a2902 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Fri, 14 Aug 2026 12:04:59 +0200 Subject: [PATCH] Add colors to `fastfetch` --- .config/fastfetch/config.jsonc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc index 9a8b8c4..ee81a9e 100644 --- a/.config/fastfetch/config.jsonc +++ b/.config/fastfetch/config.jsonc @@ -1,12 +1,20 @@ // Config for `fastfetch` // // See: https://github.com/fastfetch-cli/fastfetch +// +// Colors are 24-bit ANSI codes ("38;2;R;G;B") +// following the teal palette documented +// in ~/.config/gnome-settings/README.md { "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", "logo": { "type": "small", + "color": { + "1": "38;2;33;144;164", // Stop 5 + "2": "38;2;74;164;182" // Stop 4 + }, "padding": { "top": 1, "right": 4 @@ -15,6 +23,11 @@ "display": { "separator": " ", + "color": { + "keys": "38;2;33;144;164", // Stop 5 + "title": "38;2;222;237;241", // Stop 1 + "separator": "38;2;10;98;113" // Stop 9 + }, "key": { "width": 12 }