From c91e1f4476af6c3526f3ba189c70d38574814757 Mon Sep 17 00:00:00 2001 From: soya_daizu Date: Tue, 25 Jul 2023 04:48:24 +0900 Subject: [PATCH] fix(proton): ring and active color (#134) * feat(proton): add focus ring color * fix(proton): reduce use of accent color --- styles/proton/catppuccin.user.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/styles/proton/catppuccin.user.css b/styles/proton/catppuccin.user.css index 03ab130..76e18a2 100644 --- a/styles/proton/catppuccin.user.css +++ b/styles/proton/catppuccin.user.css @@ -219,14 +219,16 @@ --field-disabled: @overlay0; --field-focus: @accent-Color; --field-highlight: fadeout(@accent-Color, 30%); + --focus-outline: @accent-Color; + --focus-ring: fadeout(@accent-Color, 60%); --border-norm: @overlay0; --border-weak: @overlay1; --background-norm: @base; --background-weak: @mantle; --background-strong: @crust; --interaction-default: transparent; - --interaction-default-hover: fadeout(@accent-Color, 30%); - --interaction-default-active: fadeout(@accent-Color, 40%); + --interaction-default-hover: fadeout(@overlay1, 80%); + --interaction-default-active: fadeout(@overlay1, 60%); --shadow-norm-opacity: 0.5; --shadow-lifted-opacity: 0.75; --backdrop-norm: fadeout(@crust, 50%);