diff --git a/apps/nextjs/src/app/[locale]/boards/[name]/settings/_appereance.tsx b/apps/nextjs/src/app/[locale]/boards/[name]/settings/_appereance.tsx
index 706ca27df..95b3602e6 100644
--- a/apps/nextjs/src/app/[locale]/boards/[name]/settings/_appereance.tsx
+++ b/apps/nextjs/src/app/[locale]/boards/[name]/settings/_appereance.tsx
@@ -17,6 +17,7 @@ import {
useMantineTheme,
} from "@mantine/core";
import { useDisclosure } from "@mantine/hooks";
+import { IconX } from "@tabler/icons-react";
import { useZodForm } from "@homarr/form";
import { useI18n } from "@homarr/translation/client";
@@ -102,12 +103,25 @@ export const ColorSettingsContent = ({ board }: Props) => {
- color[6])}
- {...form.getInputProps("iconColor")}
- />
+
+ color[6])}
+ flex={1}
+ {...form.getInputProps("iconColor")}
+ />
+ }
+ onClick={() => form.setFieldValue("iconColor", "")}
+ disabled={!form.values.iconColor}
+ >
+ {t("board.field.clearColor.label")}
+
+
+
+