Skip to content

Commit 939930d

Browse files
committed
💄 [design] : 요청 색상 변경
1 parent 4825b17 commit 939930d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/task-detail/TaskStatusList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ const closeModal = () => {
7979
}
8080
8181
const 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
8585
const 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
9191
const rejectRequest = async () => {

tailwind.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)