From 3472c7eec909a04a0d7bb484a241cc892f38b4d3 Mon Sep 17 00:00:00 2001 From: MohamedHasan07 Date: Sat, 25 Jul 2026 16:40:19 +0530 Subject: [PATCH] text color changes --- .../asset-types/pages/NewAssetType.tsx | 6 +-- src/features/assets/pages/NewAsset.tsx | 12 +++--- .../pages/NewAttributeGroup.tsx | 6 +-- .../attribute-sets/pages/NewAttributeSet.tsx | 6 +-- .../attributes/pages/NewAttribute.tsx | 6 +-- src/features/brands/pages/NewBrandForm.tsx | 6 +-- .../categories/pages/CategoryView.tsx | 2 +- src/features/categories/pages/NewCategory.tsx | 6 +-- .../channel-types/pages/NewChannelType.tsx | 6 +-- src/features/channels/pages/NewChannel.tsx | 6 +-- src/features/family/pages/NewFamily.tsx | 6 +-- .../integrations/pages/NewIntegration.tsx | 6 +-- src/features/settings/pages/NewSetting.tsx | 6 +-- src/features/settings/pages/SettingList.tsx | 40 +++++++++---------- src/features/tenants/pages/NewTenantForm.tsx | 6 +-- src/features/units/pages/NewUnit.tsx | 6 +-- src/features/users/pages/NewUser.tsx | 6 +-- src/features/variants/pages/NewVariant.tsx | 6 +-- .../workflow/components/GeneralInfoTab.tsx | 12 +++--- src/features/workflow/pages/NewWorkflow.tsx | 8 ++-- 20 files changed, 82 insertions(+), 82 deletions(-) diff --git a/src/features/asset-types/pages/NewAssetType.tsx b/src/features/asset-types/pages/NewAssetType.tsx index 34c7813..138ab33 100644 --- a/src/features/asset-types/pages/NewAssetType.tsx +++ b/src/features/asset-types/pages/NewAssetType.tsx @@ -111,11 +111,11 @@ const errorClass = 'text-xs text-red-500 mt-1'; function CardHeader({ title, subtitle }: { title: string; subtitle?: string }) { return ( -
+
-

{title}

- {subtitle &&

{subtitle}

} +

{title}

+ {subtitle &&

{subtitle}

}
); diff --git a/src/features/assets/pages/NewAsset.tsx b/src/features/assets/pages/NewAsset.tsx index 0821ec2..ce1c52e 100644 --- a/src/features/assets/pages/NewAsset.tsx +++ b/src/features/assets/pages/NewAsset.tsx @@ -161,11 +161,11 @@ export default function NewAsset() { {/* Left Column: File Upload */}
-
+
-

Media File

-

Upload product images, videos or documentation

+

Media File

+

Upload product images, videos or documentation

@@ -269,11 +269,11 @@ export default function NewAsset() { {/* Right Column: Specifications */}
-
+
-

Asset Properties

-

Define name, classification and visibility

+

Asset Properties

+

Define name, classification and visibility

diff --git a/src/features/attribute-groups/pages/NewAttributeGroup.tsx b/src/features/attribute-groups/pages/NewAttributeGroup.tsx index 4f7ace8..fff1193 100644 --- a/src/features/attribute-groups/pages/NewAttributeGroup.tsx +++ b/src/features/attribute-groups/pages/NewAttributeGroup.tsx @@ -26,11 +26,11 @@ const errorClass = "text-xs text-red-500 mt-1"; function CardHeader({ title, subtitle }: { title: string; subtitle: string }) { return ( -
+
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/features/attribute-sets/pages/NewAttributeSet.tsx b/src/features/attribute-sets/pages/NewAttributeSet.tsx index 1d3c28b..a76b8ab 100644 --- a/src/features/attribute-sets/pages/NewAttributeSet.tsx +++ b/src/features/attribute-sets/pages/NewAttributeSet.tsx @@ -27,11 +27,11 @@ const errorClass = "text-xs text-red-500 mt-1"; function CardHeader({ title, subtitle }: { title: string; subtitle: string }) { return ( -
+
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/features/attributes/pages/NewAttribute.tsx b/src/features/attributes/pages/NewAttribute.tsx index 4277612..5585d95 100644 --- a/src/features/attributes/pages/NewAttribute.tsx +++ b/src/features/attributes/pages/NewAttribute.tsx @@ -25,11 +25,11 @@ const errorClass = "text-xs text-red-500 mt-1"; function CardHeader({ title, subtitle }: { title: string; subtitle: string }) { return ( -
+
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/features/brands/pages/NewBrandForm.tsx b/src/features/brands/pages/NewBrandForm.tsx index b4efc41..3fa3b54 100644 --- a/src/features/brands/pages/NewBrandForm.tsx +++ b/src/features/brands/pages/NewBrandForm.tsx @@ -17,11 +17,11 @@ const errorClass = "text-xs text-red-500 mt-1"; function CardHeader({ title, subtitle }: { title: string; subtitle: string }) { return ( -
+
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/features/categories/pages/CategoryView.tsx b/src/features/categories/pages/CategoryView.tsx index 5dcfa1b..96eaedf 100644 --- a/src/features/categories/pages/CategoryView.tsx +++ b/src/features/categories/pages/CategoryView.tsx @@ -85,7 +85,7 @@ export default function CategoryView() {
{/* Header info */} -
+
diff --git a/src/features/categories/pages/NewCategory.tsx b/src/features/categories/pages/NewCategory.tsx index 51f1491..9380d59 100644 --- a/src/features/categories/pages/NewCategory.tsx +++ b/src/features/categories/pages/NewCategory.tsx @@ -152,13 +152,13 @@ export default function NewCategory() { {/* Body */}
-
+
-

+

{isEdit ? "Category Details" : "New Category Classification"}

-

+

Define the taxonomy settings for this product category

diff --git a/src/features/channel-types/pages/NewChannelType.tsx b/src/features/channel-types/pages/NewChannelType.tsx index 69dd954..dfb7e17 100644 --- a/src/features/channel-types/pages/NewChannelType.tsx +++ b/src/features/channel-types/pages/NewChannelType.tsx @@ -36,11 +36,11 @@ const errorClass = 'text-xs text-red-500 mt-1'; function CardHeader({ title, subtitle }: { title: string; subtitle?: string }) { return ( -
+
-

{title}

- {subtitle &&

{subtitle}

} +

{title}

+ {subtitle &&

{subtitle}

}
); diff --git a/src/features/channels/pages/NewChannel.tsx b/src/features/channels/pages/NewChannel.tsx index 49dfecf..05b9b37 100644 --- a/src/features/channels/pages/NewChannel.tsx +++ b/src/features/channels/pages/NewChannel.tsx @@ -47,11 +47,11 @@ const labelClass = "block text-sm font-medium text-foreground mb-1.5"; function CardHeader({ title, subtitle }: { title: string; subtitle: string }) { return ( -
+
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/features/family/pages/NewFamily.tsx b/src/features/family/pages/NewFamily.tsx index 7ceaa1e..49dfc91 100644 --- a/src/features/family/pages/NewFamily.tsx +++ b/src/features/family/pages/NewFamily.tsx @@ -43,12 +43,12 @@ const labelClass = "block text-sm font-medium text-foreground mb-1.5"; function CardHeader({ title, subtitle, action }: { title: string; subtitle?: string; action?: React.ReactNode }) { return ( -
+
-

{title}

- {subtitle &&

{subtitle}

} +

{title}

+ {subtitle &&

{subtitle}

}
{action} diff --git a/src/features/integrations/pages/NewIntegration.tsx b/src/features/integrations/pages/NewIntegration.tsx index c78b38a..4eec702 100644 --- a/src/features/integrations/pages/NewIntegration.tsx +++ b/src/features/integrations/pages/NewIntegration.tsx @@ -247,11 +247,11 @@ export default function NewIntegration() { const labelClass = 'block text-sm font-medium text-foreground mb-1.5'; const CardHeader = ({ title, subtitle }: { title: string; subtitle?: string }) => ( -
+
-

{title}

- {subtitle &&

{subtitle}

} +

{title}

+ {subtitle &&

{subtitle}

}
); diff --git a/src/features/settings/pages/NewSetting.tsx b/src/features/settings/pages/NewSetting.tsx index 793d737..88a1f4e 100644 --- a/src/features/settings/pages/NewSetting.tsx +++ b/src/features/settings/pages/NewSetting.tsx @@ -67,11 +67,11 @@ export default function NewSetting() { />
-
+
-

Basic Information

-

Setting name and status

+

Basic Information

+

Setting name and status

diff --git a/src/features/settings/pages/SettingList.tsx b/src/features/settings/pages/SettingList.tsx index 99dae09..58dd3e9 100644 --- a/src/features/settings/pages/SettingList.tsx +++ b/src/features/settings/pages/SettingList.tsx @@ -36,7 +36,7 @@ export default function SettingList() { onClick={() => setActiveTab(tab.id)} className={`flex items-center gap-2 px-4 py-3 text-sm font-medium border-b-2 transition-colors whitespace-nowrap ${ isActive - ? "border-primary text-primary-dark" + ? "border-primary text-primary font-semibold" : "border-transparent text-muted-foreground hover:text-foreground hover:border-border" }`} > @@ -53,11 +53,11 @@ export default function SettingList() {
{/* Organization Settings */}
-
+
-

Organization Settings

-

Name, subdomain, language and timezone

+

Organization Settings

+

Name, subdomain, language and timezone

@@ -95,11 +95,11 @@ export default function SettingList() { {/* Workflow Settings */}
-
+
-

Workflow Settings

-

Approval and publishing rules

+

Workflow Settings

+

Approval and publishing rules

@@ -124,7 +124,7 @@ export default function SettingList() {
-
+
@@ -133,11 +133,11 @@ export default function SettingList() { {activeTab === "Integrations" && (
-
+
-

Connected Integrations

-

Manage your external platform connections

+

Connected Integrations

+

Manage your external platform connections

@@ -212,7 +212,7 @@ export default function SettingList() {
-
+
@@ -221,11 +221,11 @@ export default function SettingList() { {activeTab === "API Keys" && (
-
+
-

API Keys

-

Manage API keys for programmatic access

+

API Keys

+

Manage API keys for programmatic access

@@ -259,7 +259,7 @@ export default function SettingList() {
-
+
@@ -268,11 +268,11 @@ export default function SettingList() { {activeTab === "Appearance" && (
-
+
-

Appearance

-

Theme and display density

+

Appearance

+

Theme and display density

@@ -315,7 +315,7 @@ export default function SettingList() {
-
+
diff --git a/src/features/tenants/pages/NewTenantForm.tsx b/src/features/tenants/pages/NewTenantForm.tsx index a6ef7e2..71a40e3 100644 --- a/src/features/tenants/pages/NewTenantForm.tsx +++ b/src/features/tenants/pages/NewTenantForm.tsx @@ -15,11 +15,11 @@ const errorClass = 'text-xs text-danger mt-1'; function CardHeader({ title, subtitle }: { title: string; subtitle?: string }) { return ( -
+
-

{title}

- {subtitle &&

{subtitle}

} +

{title}

+ {subtitle &&

{subtitle}

}
); diff --git a/src/features/units/pages/NewUnit.tsx b/src/features/units/pages/NewUnit.tsx index af2db57..91d0663 100644 --- a/src/features/units/pages/NewUnit.tsx +++ b/src/features/units/pages/NewUnit.tsx @@ -20,11 +20,11 @@ const UNIT_TYPES = ["Weight", "Length", "Volume", "Area", "Count", "Temperature" function CardHeader({ title, subtitle }: { title: string; subtitle: string }) { return ( -
+
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/features/users/pages/NewUser.tsx b/src/features/users/pages/NewUser.tsx index 8984750..7b2cb2c 100644 --- a/src/features/users/pages/NewUser.tsx +++ b/src/features/users/pages/NewUser.tsx @@ -17,11 +17,11 @@ import { Breadcrumb } from "../../../components/layouts/Breadcrumb"; function CardHeader({ title, subtitle }: { title: string; subtitle?: string }) { return ( -
+
-

{title}

- {subtitle &&

{subtitle}

} +

{title}

+ {subtitle &&

{subtitle}

}
); diff --git a/src/features/variants/pages/NewVariant.tsx b/src/features/variants/pages/NewVariant.tsx index 0e252b7..6dbf41d 100644 --- a/src/features/variants/pages/NewVariant.tsx +++ b/src/features/variants/pages/NewVariant.tsx @@ -28,11 +28,11 @@ const errorClass = 'text-xs text-danger mt-1'; function CardHeader({ title, subtitle }: { title: string; subtitle: string }) { return ( -
+
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/features/workflow/components/GeneralInfoTab.tsx b/src/features/workflow/components/GeneralInfoTab.tsx index b41d975..744bfc5 100644 --- a/src/features/workflow/components/GeneralInfoTab.tsx +++ b/src/features/workflow/components/GeneralInfoTab.tsx @@ -18,11 +18,11 @@ export const GeneralInfoTab = () => {
{/* Basic Information */}
-
+
-

Basic Information

-

Name, code and description of this workflow

+

Basic Information

+

Name, code and description of this workflow

@@ -96,11 +96,11 @@ export const GeneralInfoTab = () => { {/* Configuration */}
-
+
-

Configuration

-

Workflow behaviour and status settings

+

Configuration

+

Workflow behaviour and status settings

diff --git a/src/features/workflow/pages/NewWorkflow.tsx b/src/features/workflow/pages/NewWorkflow.tsx index f7969de..8510191 100644 --- a/src/features/workflow/pages/NewWorkflow.tsx +++ b/src/features/workflow/pages/NewWorkflow.tsx @@ -284,7 +284,7 @@ export default function NewWorkflow() { {/* STEP 1: Basic Information */} {step === 1 && (
-
+

Step 1: Basic Information

@@ -383,7 +383,7 @@ export default function NewWorkflow() { {/* STEP 2: Stages Designer */} {step === 2 && (
-
+
@@ -636,7 +636,7 @@ export default function NewWorkflow() { {/* STEP 3: Workflow Preview */} {step === 3 && (
-
+

Step 3: Visual Path Preview

@@ -662,7 +662,7 @@ export default function NewWorkflow() { {/* STEP 4: Summary Screen */} {step === 4 && (
-
+

Step 4: Summary & Save