diff --git a/app/components/ActionsBar/index.tsx b/app/components/ActionsBar/index.tsx index c121e1915..045459c4c 100644 --- a/app/components/ActionsBar/index.tsx +++ b/app/components/ActionsBar/index.tsx @@ -81,8 +81,8 @@ export default function ActionsBar(props: ActionsBarProps) { }%] flex flex-col items-center justify-center gap-0.5 ${ selected === action.id - ? "text-blue-700" - : "text-gray-400" + ? "text-text-sidebar-tab-mobile-active" + : "text-text-sidebar-tab-mobile-inactive" } `} onClick={handlerClick(action)} @@ -99,7 +99,9 @@ export default function ActionsBar(props: ActionsBarProps) {
diff --git a/app/components/Btn/index.tsx b/app/components/Btn/index.tsx index 3c7d9d68a..6be9883f1 100644 --- a/app/components/Btn/index.tsx +++ b/app/components/Btn/index.tsx @@ -31,24 +31,22 @@ export default function Btn(props: { switch (type) { case "primary": - btnClassName = `${disabled ? "bg-blue-300" : "bg-blue-600"} text-white`; + btnClassName = `${ + disabled ? "bg-primary-btn-disabled" : "bg-primary-btn shadow-btn" + } text-text-btn-primary `; break; case "danger": - btnClassName = `${ - disabled ? "bg-blue-300" : "bg-blue-600" - } text-text-danger`; + btnClassName = `bg-danger-btn text-text-btn-danger`; break; default: - btnClassName = `${ - disabled ? "bg-gray-100" : "bg-gray-300" - } text-gray-500`; + btnClassName = `bg-default-btn text-text-btn-default`; } return (