Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ public function getDefaultChart(Request $request, $process)
'label' => __('Default chart'),
'data' => [$countCompleted, $countInProgress],
'backgroundColor' => [
'CLOSED' => '#62B2FD', // Color for 'Completed'
'ACTIVE' => '#9BDFC4', // Color for 'In Progress'
'CLOSED' => '#F9A8D4', // Color for 'Completed'
'ACTIVE' => '#4F46E5', // Color for 'In Progress'
],
],
],
Expand Down
4 changes: 2 additions & 2 deletions resources/js/processes-catalogue/components/BaseChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ export default {
margin-top: 16px;
padding: 16px 0;
border-radius: 16px;
border: 0.883px solid rgba(205, 221, 238, 0.50);
background: linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 100%), #57D490;
border: 0.88px solid #CDDDEE;
background: white;
display: flex;
justify-content: center;
align-items: center;
Expand Down