From 7794be599307489c52b9fccad85dc13f43caaf4d Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Tue, 10 Sep 2024 19:06:20 +0530 Subject: [PATCH] Some colors from theme --- web/apps/photos/src/components/SearchBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/apps/photos/src/components/SearchBar.tsx b/web/apps/photos/src/components/SearchBar.tsx index cfe98cfb60..cec8593f56 100644 --- a/web/apps/photos/src/components/SearchBar.tsx +++ b/web/apps/photos/src/components/SearchBar.tsx @@ -306,10 +306,10 @@ const SelectStyles: StylesConfig = { control: (style, { isFocused }) => ({ ...style, backgroundColor: "rgba(255, 255, 255, 0.1)", - borderColor: isFocused ? "#1dba54" : "transparent", + borderColor: isFocused ? "#1DB954" : "transparent", boxShadow: "none", ":hover": { - borderColor: "#1dba54", + borderColor: "#01DE4D", cursor: "text", }, }),