diff --git a/libs/components/src/berry/berry.component.ts b/libs/components/src/berry/berry.component.ts
index 8e58b888f39..a6544b75f6e 100644
--- a/libs/components/src/berry/berry.component.ts
+++ b/libs/components/src/berry/berry.component.ts
@@ -38,7 +38,7 @@ export class BerryComponent {
});
protected readonly textColor = computed(() => {
- return this.variant() === "contrast" ? "tw-text-fg-dark" : "tw-text-fg-white";
+ return this.variant() === "contrast" ? "tw-text-fg-heading" : "tw-text-fg-contrast";
});
protected readonly padding = computed(() => {
@@ -67,7 +67,7 @@ export class BerryComponent {
warning: "tw-bg-bg-warning",
danger: "tw-bg-bg-danger",
accentPrimary: "tw-bg-fg-accent-primary-strong",
- contrast: "tw-bg-bg-white",
+ contrast: "tw-bg-bg-primary",
};
return [
diff --git a/libs/components/src/berry/berry.stories.ts b/libs/components/src/berry/berry.stories.ts
index 0b71e7259d8..56ee87d9ce3 100644
--- a/libs/components/src/berry/berry.stories.ts
+++ b/libs/components/src/berry/berry.stories.ts
@@ -75,7 +75,9 @@ export const statusType: Story = {