Skip to content

Commit 6fef75d

Browse files
authored
Change contents table line chart color to blue (#476)
1 parent c3808ca commit 6fef75d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

admin_app/src/app/dashboard/components/performance/ContentsTable.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
TableRow,
2020
} from "@mui/material";
2121
import React from "react";
22+
import { appColors } from "@/utils";
2223

2324
const ReactApexcharts = dynamic(() => import("react-apexcharts"), {
2425
ssr: false,
@@ -60,7 +61,7 @@ const QueryCountTimeSeries = ({
6061
show: false,
6162
},
6263
},
63-
colors: isIncreasing ? ["#4CAF50"] : ["#FF1654"],
64+
colors: appColors.dashboardBlueShades,
6465
};
6566
return (
6667
<ReactApexcharts

0 commit comments

Comments
 (0)