We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2fc84e + abda639 commit 1639d96Copy full SHA for 1639d96
1 file changed
src/sections/Projects/Sistent/identity/color/code.js
@@ -538,11 +538,13 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
538
fontSize: "0.875rem",
539
padding: "0.75rem",
540
borderBottom: `1px solid ${theme.palette.divider}`,
541
+ borderRadius: "4px",
542
}));
543
-const StyledHeaderCell = styled(StyledTableCell)({
544
+const StyledHeaderCell = styled(StyledTableCell)(({ theme }) => ({
545
fontWeight: 600,
-});
546
+ color: theme.palette.background.default,
547
+}));
548
549
const ColorCode = () => {
550
const { isDark } = useStyledDarkMode();
0 commit comments