From b0be474271755ec004120ae45ef739da5ecb56f2 Mon Sep 17 00:00:00 2001 From: 89882 Date: Wed, 21 Feb 2024 18:41:01 +0900 Subject: [PATCH] chore: change color naming --- app/ui/view/atom/button/button.tsx | 4 ++-- app/ui/view/molecule/list/list-root.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/ui/view/atom/button/button.tsx b/app/ui/view/atom/button/button.tsx index 32a6adce..79d69d37 100644 --- a/app/ui/view/atom/button/button.tsx +++ b/app/ui/view/atom/button/button.tsx @@ -11,9 +11,9 @@ export const ButtonVariants = cva(`flex justify-center items-center`, { variants: { variant: { primary: 'bg-primary rounded-[100px] text-white border-0 hover:bg-primary-hover', - secondary: 'bg-white rounded-[100px] border-solid border-[1px] border-gray hover:bg-white-hover', + secondary: 'bg-white rounded-[100px] border-solid border-[1px] border-gray-6 hover:bg-white-hover', text: 'font-medium text-slate-400 text-sm hover:text-slate-600', - delete: 'py-2 px-3.5 bg-[#35353559] rounded-[7px] text-white leading-5 font-medium text-[18px]', + delete: 'py-2 px-3.5 bg-gray-5 rounded-[7px] text-white leading-5 font-medium text-[18px]', }, size: { default: '', diff --git a/app/ui/view/molecule/list/list-root.tsx b/app/ui/view/molecule/list/list-root.tsx index b4b7b737..b8f33e93 100644 --- a/app/ui/view/molecule/list/list-root.tsx +++ b/app/ui/view/molecule/list/list-root.tsx @@ -5,5 +5,5 @@ type ListRootProps = { }; export function ListRoot({ children }: ListRootProps) { - return
{children}
; + return
{children}
; }