doughnutChartData.ts
418 Bytes
import { TDoughnutChartData } from '../types'
export const profitBackground = '#154EC1'
export const expensesBackground = '#fff'
export const earningsBackground = '#ECF0F1'
export const doughnutChartData: TDoughnutChartData = {
labels: ['Profit', 'Expenses'],
datasets: [
{
label: 'Yearly Breakdown',
backgroundColor: [profitBackground, earningsBackground],
data: [432, 167],
},
],
}