svg>path]:fill-[#C6CEDE] peer-checked:[&>svg>path]:fill-[#7595E7]"}>
+
svg>path]:fill-[#C6CEDE] peer-checked:[&>svg>path]:fill-gray-06"}>
{label &&
}
diff --git a/src/core/components/Table/TableCell.tsx b/src/core/components/Table/TableCell.tsx
index 78dc218..8e5bd86 100644
--- a/src/core/components/Table/TableCell.tsx
+++ b/src/core/components/Table/TableCell.tsx
@@ -1,5 +1,5 @@
-import React, { PropsWithChildren, useContext } from "react";
import clsx from "clsx";
+import React, { PropsWithChildren, useContext } from "react";
import { TableThemeContext } from "./TableContainer";
import { TABLE_CELL_THEME } from "./constants";
diff --git a/src/core/components/Table/TableRow.tsx b/src/core/components/Table/TableRow.tsx
index 76b50f4..e812c69 100644
--- a/src/core/components/Table/TableRow.tsx
+++ b/src/core/components/Table/TableRow.tsx
@@ -1,5 +1,5 @@
-import React, { PropsWithChildren, useContext } from "react";
import clsx from "clsx";
+import React, { PropsWithChildren, useContext } from "react";
import { TableThemeContext } from "./TableContainer";
import { TR_THEME } from "./constants";
diff --git a/src/core/components/Table/constants/index.ts b/src/core/components/Table/constants/index.ts
index d78289f..89cef7b 100644
--- a/src/core/components/Table/constants/index.ts
+++ b/src/core/components/Table/constants/index.ts
@@ -1,4 +1,4 @@
-import { ThemeType, TableCellType } from "../types";
+import { TableCellType, ThemeType } from "../types";
export const THEME = {
WHITE: "white",
@@ -23,7 +23,7 @@ export const TABLE_CELL_THEME: Record
>
[TABLE_CELL.TD]: `${COMMON_CELL_STYLE} text-gray-07`,
},
[THEME.GRAY]: {
- [TABLE_CELL.TH]: `${COMMON_CELL_STYLE} bg-gray-00 text-gray-06`,
- [TABLE_CELL.TD]: `${COMMON_CELL_STYLE} text-gray-08`,
+ [TABLE_CELL.TH]: `${COMMON_CELL_STYLE} bg-gray-03 text-gray-07`,
+ [TABLE_CELL.TD]: `${COMMON_CELL_STYLE} text-gray-07`,
},
} as const;