-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
34 lines (33 loc) · 866 Bytes
/
Copy pathdata.js
File metadata and controls
34 lines (33 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const data = [
{
product: "Apples",
sales: 120,
color: "#FFD1DC", // pastel pink fill
borderColor: "#FFB6C1", // slightly deeper pastel pink
},
{
product: "Bananas",
sales: 90,
color: "#FFF4B2", // pastel yellow fill
borderColor: "#FFE799", // deeper pastel yellow
},
{
product: "Cherries",
sales: 60,
color: "#FFB3BA", // light cherry pink fill
borderColor: "#FF9AA2", // deeper cherry pink
},
{
product: "Dates",
sales: 30,
color: "#D4A5A5", // pastel brown fill
borderColor: "#C97C7C", // deeper muted rose/brown
},
{
product: "Elderberries",
sales: 45,
color: "#CBAACB", // pastel purple fill
borderColor: "#B799B7", // deeper purple
},
];
export default data;