@industry-theme/backlogmd-kanban-panel 1.0.20 → 1.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6674,7 +6674,7 @@ const EmptyState = ({
6674
6674
  gap: "8px",
6675
6675
  padding: "12px 24px",
6676
6676
  backgroundColor: theme2.colors.primary,
6677
- color: "#fff",
6677
+ color: theme2.colors.textOnPrimary,
6678
6678
  borderRadius: theme2.radii[2],
6679
6679
  border: "none",
6680
6680
  fontSize: theme2.fontSizes[2],
@@ -6710,7 +6710,7 @@ const EmptyState = ({
6710
6710
  gap: "8px",
6711
6711
  padding: "12px 24px",
6712
6712
  backgroundColor: canInitialize ? "transparent" : theme2.colors.primary,
6713
- color: canInitialize ? theme2.colors.primary : "#fff",
6713
+ color: canInitialize ? theme2.colors.primary : theme2.colors.textOnPrimary,
6714
6714
  border: canInitialize ? `1px solid ${theme2.colors.primary}` : "none",
6715
6715
  borderRadius: theme2.radii[2],
6716
6716
  textDecoration: "none",
@@ -7308,7 +7308,7 @@ const TaskModal = ({
7308
7308
  border: "none",
7309
7309
  borderRadius: theme2.radii[2],
7310
7310
  backgroundColor: theme2.colors.primary,
7311
- color: "#fff",
7311
+ color: theme2.colors.textOnPrimary,
7312
7312
  cursor: isSaving ? "wait" : "pointer",
7313
7313
  opacity: isSaving ? 0.7 : 1
7314
7314
  },
@@ -7597,7 +7597,7 @@ const KanbanPanel = ({
7597
7597
  alignItems: "center",
7598
7598
  gap: "6px",
7599
7599
  background: theme2.colors.primary,
7600
- color: theme2.colors.background,
7600
+ color: theme2.colors.textOnPrimary,
7601
7601
  border: "none",
7602
7602
  borderRadius: theme2.radii[2],
7603
7603
  padding: "6px 12px",
@@ -7708,7 +7708,7 @@ const KanbanPanel = ({
7708
7708
  border: "none",
7709
7709
  borderRadius: theme2.radii[1],
7710
7710
  background: isSelected ? theme2.colors.primary : "transparent",
7711
- color: isSelected ? theme2.colors.background : theme2.colors.textSecondary,
7711
+ color: isSelected ? theme2.colors.textOnPrimary : theme2.colors.textSecondary,
7712
7712
  fontSize: theme2.fontSizes[1],
7713
7713
  fontWeight: theme2.fontWeights.medium,
7714
7714
  cursor: "pointer",
@@ -52970,7 +52970,7 @@ const MilestoneModal = ({
52970
52970
  border: "none",
52971
52971
  borderRadius: theme2.radii[2],
52972
52972
  backgroundColor: theme2.colors.primary,
52973
- color: "#fff",
52973
+ color: theme2.colors.textOnPrimary,
52974
52974
  cursor: isSaving ? "wait" : "pointer",
52975
52975
  opacity: isSaving ? 0.7 : 1
52976
52976
  },
@@ -53114,7 +53114,7 @@ const MilestonePanel = ({
53114
53114
  alignItems: "center",
53115
53115
  gap: "6px",
53116
53116
  background: theme2.colors.primary,
53117
- color: theme2.colors.background,
53117
+ color: theme2.colors.textOnPrimary,
53118
53118
  border: "none",
53119
53119
  borderRadius: theme2.radii[2],
53120
53120
  padding: "6px 12px",