From 53a919a23a3e56c78ad7d2bbe14967837b44120f Mon Sep 17 00:00:00 2001 From: craciu25yt <48807342+craciu25yt@users.noreply.github.com> Date: Sun, 26 Apr 2026 15:16:58 +0200 Subject: [PATCH 1/3] Fixes codeblocks color highlights --- styles/claude/catppuccin.user.less | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/styles/claude/catppuccin.user.less b/styles/claude/catppuccin.user.less index 4d2cee7de0..f52ac4c93b 100644 --- a/styles/claude/catppuccin.user.less +++ b/styles/claude/catppuccin.user.less @@ -102,33 +102,33 @@ color: @text !important; } - /* Green */ - span.token[style="color: rgb(152, 195, 121);"] { + /* Green - strings */ + span.token[style="color: rgb(155, 233, 99);"] { color: @green !important; } - /* Yellow */ - span.token[style="color: rgb(209, 154, 102);"] { + /* Yellow - types */ + span.token[style="color: rgb(251, 173, 96);"] { color: @yellow !important; } - /* Blue */ - span.token[style="color: rgb(97, 175, 239);"] { + /* Blue - functions */ + span.token[style="color: rgb(112, 184, 255);"] { color: @blue !important; } - /* Red */ - span.token[style="color: rgb(224, 108, 117);"] { - color: @red !important; + /* Cyan - constants / nunmbers */ + span.token[style="color: rgb(94, 237, 237);"] { + color: @sky !important; } - /* Magenta */ - span.token[style="color: rgb(198, 120, 221);"] { + /* Magenta - built in functions / keywords */ + span.token[style="color: rgb(204, 123, 244);"] { color: @mauve !important; } - /* Gray */ - span.token[style="color: rgb(171, 178, 191);"] { + /* Gray - comments */ + span.token[style="color: rgb(129, 136, 152);"] { color: @overlay2 !important; } } From 4e2c3fc1cd8b008722cef17612d819b9ce97c58b Mon Sep 17 00:00:00 2001 From: craciu25yt <48807342+craciu25yt@users.noreply.github.com> Date: Sun, 26 Apr 2026 15:34:10 +0200 Subject: [PATCH 2/3] fixes border radius --- styles/claude/catppuccin.user.less | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/styles/claude/catppuccin.user.less b/styles/claude/catppuccin.user.less index f52ac4c93b..dba62b37ab 100644 --- a/styles/claude/catppuccin.user.less +++ b/styles/claude/catppuccin.user.less @@ -91,10 +91,17 @@ nav.\!bg-bg-200 { background: @mantle !important; } + /* Target the specific element with all those classes */ + .text-text-500.font-small.p-3\.5.pb-0 { + background-color: @crust !important; + /* Optional: Add padding or border-radius if the bg looks cramped */ + border-radius: 8px 8px 0px 0px !important; + } /* Code blocks */ .code-block__code { background: @crust !important; + border-radius: 0px 0px 8px 8px !important; code { /* Default color */ From 990aa0f3e595f0b85c5da3770955e139631cc2b8 Mon Sep 17 00:00:00 2001 From: craciu25yt <48807342+craciu25yt@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:38:51 +0200 Subject: [PATCH 3/3] Update styles/claude/catppuccin.user.less Co-authored-by: uncenter --- styles/claude/catppuccin.user.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/claude/catppuccin.user.less b/styles/claude/catppuccin.user.less index dba62b37ab..2e34168afe 100644 --- a/styles/claude/catppuccin.user.less +++ b/styles/claude/catppuccin.user.less @@ -126,7 +126,7 @@ /* Cyan - constants / nunmbers */ span.token[style="color: rgb(94, 237, 237);"] { - color: @sky !important; + color: @peach !important; } /* Magenta - built in functions / keywords */