File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/components/task-detail Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,13 @@ const closeModal = () => {
7979}
8080
8181const textColor = (taskStatus : Status ) => {
82- return currentStatus .value === taskStatus ? ' text-white' : ` text-gray-1 `
82+ return currentStatus .value === taskStatus ? ' text-white' : ` text-zinc-400 `
8383}
8484
8585const bgColor = (taskStatus : Status ) => {
8686 return currentStatus .value === taskStatus
8787 ? ` bg-${statusAsColor (taskStatus )}-1 `
88- : ` bg-gray-2 ${isProcessor ? ' hover:bg-background-1 ' : ' ' } `
88+ : ` bg-zinc-100 ${isProcessor ? ' hover:bg-zinc-200 ' : ' ' } `
8989}
9090
9191const rejectRequest = async () => {
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ export default {
7373 2 : '#F5F3FF'
7474 } ,
7575 gray : {
76- 1 : '#A1A1AA ' ,
77- 2 : '#F4F4F5 '
76+ 1 : '#52525B ' ,
77+ 2 : '#E4E4E7 '
7878 }
7979 }
8080 }
You can’t perform that action at this time.
0 commit comments