From bbbc386f26869dbc7d068d4d5c942c5064aa321b Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 1 Feb 2025 15:53:25 +0200 Subject: [PATCH] change links color --- .../window/tab/item/page/content/text/gemini/reader.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/browser/window/tab/item/page/content/text/gemini/reader.rs b/src/app/browser/window/tab/item/page/content/text/gemini/reader.rs index cdf81817..4a604605 100644 --- a/src/app/browser/window/tab/item/page/content/text/gemini/reader.rs +++ b/src/app/browser/window/tab/item/page/content/text/gemini/reader.rs @@ -65,7 +65,10 @@ impl Reader { // Init colors // @TODO use accent colors in adw 1.6 / ubuntu 24.10+ - let link_color = (RGBA::new(0.2, 0.5, 0.9, 1.0), RGBA::new(0.2, 0.5, 0.9, 0.9)); + let link_color = ( + RGBA::new(0.208, 0.518, 0.894, 1.0), + RGBA::new(0.208, 0.518, 0.894, 0.9), + ); // Init syntect highlight features let syntax = Syntax::new();