From 81f2ff915cc7d4192710a26ce7f701984edc4232 Mon Sep 17 00:00:00 2001 From: alejandrobailo Date: Fri, 20 Feb 2026 17:08:45 +0100 Subject: [PATCH] style(ui): update checkbox checked state to tertiary color --- ui/components/shadcn/checkbox/checkbox.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/components/shadcn/checkbox/checkbox.tsx b/ui/components/shadcn/checkbox/checkbox.tsx index 930b70a236..110cf77ed1 100644 --- a/ui/components/shadcn/checkbox/checkbox.tsx +++ b/ui/components/shadcn/checkbox/checkbox.tsx @@ -46,9 +46,9 @@ function Checkbox({ // Default state "bg-bg-input-primary border-border-input-primary shadow-[0_1px_2px_0_rgba(0,0,0,0.1)]", // Checked state - "data-[state=checked]:bg-button-primary data-[state=checked]:border-button-primary data-[state=checked]:text-white", + "data-[state=checked]:bg-button-tertiary-active data-[state=checked]:border-button-tertiary-active data-[state=checked]:text-white", // Indeterminate state - "data-[state=indeterminate]:bg-button-primary data-[state=indeterminate]:border-button-primary data-[state=indeterminate]:text-white", + "data-[state=indeterminate]:bg-button-tertiary-active data-[state=indeterminate]:border-button-tertiary-active data-[state=indeterminate]:text-white", // Focus state "focus-visible:border-border-input-primary-press focus-visible:ring-border-input-primary-press/50 focus-visible:ring-2", // Disabled state