Skip to content

Commit 8cee938

Browse files
committed
Enhance pie chart color palette in BreakdownComponent for better visual distinction
1 parent 4adadae commit 8cee938

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/components/BreakdownComponent.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,12 @@ export default defineComponent({
169169
};
170170
171171
const pieChartColors = ref([
172-
'#4B0082', '#41B883', '#483D8B', '#87CEFA',
173-
'#32CD32'
174-
]);
172+
'#4B0082', // Indigo
173+
'#41B883', // Vue Green
174+
'#6495ED', // Cornflower Blue
175+
'#87CEFA', // Light Sky Blue
176+
'#7CFC00' // Lawn Green
177+
]);
175178
176179
const data = toRef(props, 'metrics').value;
177180

0 commit comments

Comments
 (0)