We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3808ca commit 6fef75dCopy full SHA for 6fef75d
admin_app/src/app/dashboard/components/performance/ContentsTable.tsx
@@ -19,6 +19,7 @@ import {
19
TableRow,
20
} from "@mui/material";
21
import React from "react";
22
+import { appColors } from "@/utils";
23
24
const ReactApexcharts = dynamic(() => import("react-apexcharts"), {
25
ssr: false,
@@ -60,7 +61,7 @@ const QueryCountTimeSeries = ({
60
61
show: false,
62
},
63
- colors: isIncreasing ? ["#4CAF50"] : ["#FF1654"],
64
+ colors: appColors.dashboardBlueShades,
65
};
66
return (
67
<ReactApexcharts
0 commit comments