diff --git a/app/client/cypress/e2e/Regression/ClientSide/ExplorerTests/DragAndDropWidget_spec.js b/app/client/cypress/e2e/Regression/ClientSide/ExplorerTests/DragAndDropWidget_spec.js
index 17fc086875..9af76e8746 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/ExplorerTests/DragAndDropWidget_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/ExplorerTests/DragAndDropWidget_spec.js
@@ -29,7 +29,7 @@ describe("Entity explorer Drag and Drop widgets testcases", function () {
cy.selectColor("backgroundcolor");
cy.get(formWidgetsPage.formD)
.should("have.css", "background-color")
- .and("eq", "rgb(126, 34, 206)");
+ .and("eq", "rgb(219, 234, 254)");
/**
* @param{toggleButton Css} Assert to be checked
*/
diff --git a/app/client/cypress/e2e/Regression/ClientSide/OtherUIFeatures/Replay_spec.js b/app/client/cypress/e2e/Regression/ClientSide/OtherUIFeatures/Replay_spec.js
index 1f8211be59..c70963a88a 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/OtherUIFeatures/Replay_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/OtherUIFeatures/Replay_spec.js
@@ -174,7 +174,7 @@ describe("Undo/Redo functionality", function () {
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(500);
cy.wait("@updateLayout");
- cy.readTextDataValidateCSS("color", "rgb(126, 34, 206)");
+ cy.readTextDataValidateCSS("color", "rgb(219, 234, 254)");
cy.get("body").click({ force: true }).type(`{${modifierKey}}z`);
entityExplorer.NavigateToSwitcher("Explorer");
entityExplorer.SelectEntityByName("Text1");
@@ -191,7 +191,7 @@ describe("Undo/Redo functionality", function () {
cy.get(widgetsPage.textColor)
.first()
.invoke("attr", "value")
- .should("contain", "#7e22ce");
+ .should("contain", "#dbeafe");
});
it("8. checks undo/redo for option control for radio button", function () {
diff --git a/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Basic_spec.js b/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Basic_spec.js
index 2b0ab1d96e..99d95e50a8 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Basic_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Basic_spec.js
@@ -364,7 +364,7 @@ describe("App Theming funtionality", function () {
.find(".t--theme-card > main > main")
.invoke("css", "background-color")
.then((backgroudColor) => {
- expect(backgroudColor).to.eq("rgb(131, 24, 67)");
+ expect(backgroudColor).to.eq("rgb(236, 72, 153)");
});
//Check if the saved theme is present under 'Yours Themes' section with Trash button
@@ -669,7 +669,7 @@ describe("App Theming funtionality", function () {
.eq(0)
.invoke("css", "background-color")
.then((backgroudColor) => {
- expect(backgroudColor).to.eq("rgb(126, 34, 206)");
+ expect(backgroudColor).to.eq("rgb(219, 234, 254)");
});
cy.contains("Applied theme")
@@ -680,7 +680,7 @@ describe("App Theming funtionality", function () {
.eq(1)
.invoke("css", "background-color")
.then((backgroudColor) => {
- expect(backgroudColor).to.eq("rgb(253, 224, 71)");
+ expect(backgroudColor).to.eq("rgb(29, 78, 216)");
});
//#endregion
@@ -696,17 +696,17 @@ describe("App Theming funtionality", function () {
cy.xpath("//div[@id='root']//section/parent::div").should(
"have.css",
"background-color",
- "rgb(253, 224, 71)",
+ "rgb(29, 78, 216)",
); //Background Color
cy.get(widgetsPage.widgetBtn).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
); //Widget Color
cy.get(publish.iconWidgetBtn).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
); //Widget Color
cy.get(widgetsPage.widgetBtn).should("have.css", "border-radius", "24px"); //Border Radius
@@ -738,12 +738,12 @@ describe("App Theming funtionality", function () {
cy.get(".t--widget-button1 button").should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
); //old widgets still conforming to theme color
cy.get(widgetsPage.iconWidgetBtn).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
});
@@ -789,20 +789,20 @@ describe("App Theming funtionality", function () {
cy.get(".t--widget-buttonwidget:nth-child(4) button").should(
"have.css",
"background-color",
- "rgb(134, 239, 172)", //rgb(134, 239, 172)
+ "rgb(190, 24, 93)",
); //new widget with its own color
////old widgets still conforming to theme color
cy.get(".t--widget-buttonwidget button").should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
cy.get(publish.iconWidgetBtn).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
//Verify Border radius
@@ -845,7 +845,7 @@ describe("App Theming funtionality", function () {
cy.get(".t--widget-button2 button").should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
); //verify widget reverted to theme color
cy.get(".t--property-control-borderradius .reset-button").then(($elem) => {
$elem[0].removeAttribute("display: none");
@@ -866,12 +866,12 @@ describe("App Theming funtionality", function () {
cy.xpath("//div[@id='root']//section/parent::div").should(
"have.css",
"background-color",
- "rgb(253, 224, 71)",
+ "rgb(29, 78, 216)",
); //Background Color
cy.get(".t--widget-button1 button").should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
); //Widget Color
cy.get("body").then(($ele) => {
if ($ele.find(widgetsPage.widgetBtn).length <= 1) {
@@ -882,12 +882,12 @@ describe("App Theming funtionality", function () {
cy.get(".t--widget-button2 button").should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
); //Widget Color
cy.get(publish.iconWidgetBtn).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
); //Widget Color
cy.get(".t--widget-button1 button").should(
@@ -1004,7 +1004,7 @@ describe("App Theming funtionality", function () {
cy.get(".t--widget-button1 button").should(
"have.css",
"background-color",
- "rgb(252, 165, 165)",
+ "rgb(161, 98, 7)",
); //new widget with its own color
////old widgets still conforming to theme color
diff --git a/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Theme_FormWidget_spec.js b/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Theme_FormWidget_spec.js
index c525178425..aee566fe92 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Theme_FormWidget_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/ThemingTests/Theme_FormWidget_spec.js
@@ -93,7 +93,7 @@ describe("Theme validation usecases", function () {
cy.get(themelocator.inputColor).clear({ force: true });
cy.wait(2000);
theme.ChangeThemeColor(16, "Background");
- cy.get(themelocator.inputColor).should("have.value", "#dc2626"); //Red
+ cy.get(themelocator.inputColor).should("have.value", "#86efac"); //Red
cy.wait(2000);
cy.get(themelocator.inputColor).eq(0).click({ force: true });
@@ -107,7 +107,7 @@ describe("Theme validation usecases", function () {
cy.get(themelocator.inputColor).clear({ force: true });
cy.wait(2000);
theme.ChangeThemeColor(9, "Primary");
- cy.get(themelocator.inputColor).should("have.value", "#18181b"); //Black
+ cy.get(themelocator.inputColor).should("have.value", "#7f1d1d"); //Black
cy.wait(2000);
cy.contains("Color").click({ force: true });
appSettings.ClosePane();
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_1_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_1_spec.ts
index e31d649ea6..5aa1552ab6 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_1_spec.ts
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_1_spec.ts
@@ -190,13 +190,13 @@ describe("List Widget Functionality", function () {
agHelper.AssertCSS(
locators._listWidget,
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
// Verify List Item Background Color
agHelper.AssertCSS(
locators._itemContainerWidget,
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
deployMode.NavigateBacktoEditor();
});
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_2_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_2_spec.js
index 365ac60875..ccc55c337b 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_2_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/List/List4_2_spec.js
@@ -37,13 +37,13 @@ describe("Container Widget Functionality", function () {
cy.get(widgetsPage.listWidget).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
// Verify List Item Background Color
cy.get(widgetsPage.itemContainerWidget).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
_.deployMode.NavigateBacktoEditor();
});
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Color_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Color_spec.js
index b142f7e67c..144933d02c 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Color_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Color_spec.js
@@ -16,7 +16,7 @@ describe("Table Widget property pane feature validation", function () {
cy.wait(500);
cy.wait("@updateLayout");
// Verify the text color is green
- cy.readTabledataValidateCSS("1", "0", "color", "rgb(126, 34, 206)");
+ cy.readTabledataValidateCSS("1", "0", "color", "rgb(219, 234, 254)");
// Change the text color and enter purple in input field
cy.get(widgetsPage.textColor)
.scrollIntoView()
@@ -41,13 +41,15 @@ describe("Table Widget property pane feature validation", function () {
"1",
"1",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
_.deployMode.NavigateBacktoEditor();
cy.openPropertyPane("tablewidget");
// Change the cell background color and enter purple in input field
- cy.get(`${widgetsPage.cellBackground_tablev1} input`)
+ cy.get(
+ `${widgetsPage.cellBackground_tablev1} [data-testid='t--color-picker-input']`,
+ )
.clear({ force: true })
.type("purple", { force: true });
cy.wait("@updateLayout");
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_EmptyRow_Color_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_EmptyRow_Color_spec.js
index d67274b0d7..bafc30a6d3 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_EmptyRow_Color_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_EmptyRow_Color_spec.js
@@ -28,23 +28,23 @@ describe("Table Widget empty row color validation", function () {
"1",
"0",
"background-color",
- "rgb(99, 102, 241)",
+ "rgb(185, 28, 28)",
);
// Verify the cell background color of second column
cy.readTabledataValidateCSS(
"1",
"1",
"background-color",
- "rgb(30, 58, 138)",
+ "rgb(113, 113, 122)",
);
//Test 2. Validate empty row background
// first cell of first row should be transparent
cy.get(
".t--widget-tablewidget .tbody div[data-testid='empty-row-0-cell-0']",
- ).should("have.css", "background-color", "rgb(99, 102, 241)");
+ ).should("have.css", "background-color", "rgb(185, 28, 28)");
// second cell of first row should be transparent
cy.get(
".t--widget-tablewidget .tbody div[data-testid='empty-row-0-cell-1']",
- ).should("have.css", "background-color", "rgb(30, 58, 138)");
+ ).should("have.css", "background-color", "rgb(113, 113, 122)");
});
});
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_PropertyPane_1_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_PropertyPane_1_spec.js
index aaa96e2d7b..c241c8cec7 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_PropertyPane_1_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_PropertyPane_1_spec.js
@@ -171,12 +171,12 @@ describe("Table Widget property pane feature validation", function () {
it("6. Test to validate text color and text background", function () {
cy.openPropertyPane("tablewidget");
- // Changing text color to rgb(126, 34, 206) and validate
+ // Changing text color to rgb(219, 234, 254) and validate
cy.selectColor("textcolor");
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(5000);
cy.wait("@updateLayout");
- cy.readTabledataValidateCSS("1", "0", "color", "rgb(126, 34, 206)");
+ cy.readTabledataValidateCSS("1", "0", "color", "rgb(219, 234, 254)");
// Changing text color to PURPLE and validate using JS
cy.get(widgetsPage.toggleJsColor).click({ force: true });
@@ -185,13 +185,13 @@ describe("Table Widget property pane feature validation", function () {
cy.wait("@updateLayout");
cy.readTabledataValidateCSS("1", "0", "color", "rgb(128, 0, 128)");
cy.get(commonlocators.editPropBackButton).click();
- // Changing Cell backgroud color to rgb(126, 34, 206) and validate
+ // Changing Cell backgroud color to rgb(219, 234, 254) and validate
cy.selectColor("cellbackgroundcolor");
cy.readTabledataValidateCSS(
"0",
"0",
"background",
- "rgb(126, 34, 206) none repeat scroll 0% 0% / auto padding-box border-box",
+ "rgb(219, 234, 254) none repeat scroll 0% 0% / auto padding-box border-box",
true,
);
// Changing Cell backgroud color to PURPLE and validate using JS
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Widget_Add_button_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Widget_Add_button_spec.js
index 8bb7a673a4..0c76fe7509 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Widget_Add_button_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV1/Table_Widget_Add_button_spec.js
@@ -325,20 +325,4 @@ describe("Table Widget property pane feature validation", function () {
cy.wait(500);
cy.get("[data-testid='t--property-pane-back-btn']").click({ force: true });
});
-
- it("7. Table widget test on button when transparent", () => {
- cy.openPropertyPane("tablewidget");
- // Open column details of "id".
- cy.editColumn("id");
- // Changing column "Button" color to transparent
-
- cy.get(widgetsPage.buttonColor).click({ force: true });
- cy.wait(2000);
- cy.get(widgetsPage.transparent).click({ force: true });
- cy.get(".td[data-colindex=5][data-rowindex=0] .bp3-button").should(
- "have.css",
- "background-color",
- "rgba(0, 0, 0, 0)",
- );
- });
});
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Color_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Color_spec.js
index 8de6ad641e..d6acfdc66d 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Color_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Color_spec.js
@@ -24,7 +24,7 @@ describe("Table Widget V2 property pane feature validation", function () {
cy.wait(500);
cy.wait("@updateLayout");
// Verify the text color is green
- cy.readTableV2dataValidateCSS("1", "0", "color", "rgb(126, 34, 206)");
+ cy.readTableV2dataValidateCSS("1", "0", "color", "rgb(219, 234, 254)");
// Change the text color and enter purple in input field
cy.get(widgetsPage.textColor)
.scrollIntoView()
@@ -49,13 +49,15 @@ describe("Table Widget V2 property pane feature validation", function () {
"1",
"1",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
_.deployMode.NavigateBacktoEditor();
cy.openPropertyPane("tablewidgetv2");
cy.moveToStyleTab();
// Change the cell background color and enter purple in input field
- cy.get(`.t--property-control-cellbackgroundcolor input`)
+ cy.get(
+ `.t--property-control-cellbackgroundcolor [data-testid='t--color-picker-input']`,
+ )
.clear({ force: true })
.type("purple", { force: true });
cy.wait("@updateLayout");
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_PropertyPane_2_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_PropertyPane_2_spec.js
index 5f8a33fd28..47192416db 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_PropertyPane_2_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_PropertyPane_2_spec.js
@@ -18,12 +18,12 @@ describe("Table Widget V2 property pane feature validation", function () {
cy.openPropertyPane("tablewidgetv2");
cy.editColumn("id");
cy.moveToStyleTab();
- // Changing text color to rgb(126, 34, 206) and validate
+ // Changing text color to rgb(219, 234, 254) and validate
cy.selectColor("textcolor");
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(5000);
cy.wait("@updateLayout");
- cy.readTableV2dataValidateCSS("1", "0", "color", "rgb(126, 34, 206)");
+ cy.readTableV2dataValidateCSS("1", "0", "color", "rgb(219, 234, 254)");
// Changing text color to PURPLE and validate using JS
cy.get(widgetsPage.toggleJsColor).click();
@@ -31,13 +31,13 @@ describe("Table Widget V2 property pane feature validation", function () {
cy.wait("@updateLayout");
cy.readTableV2dataValidateCSS("1", "0", "color", "rgb(128, 0, 128)");
- // Changing Cell backgroud color to rgb(126, 34, 206) and validate
+ // Changing Cell backgroud color to rgb(219, 234, 254) and validate
cy.selectColor("cellbackground");
cy.readTableV2dataValidateCSS(
"0",
"0",
"background",
- "rgb(113, 30, 184) none repeat scroll 0% 0% / auto padding-box border-box",
+ "rgb(194, 220, 253) none repeat scroll 0% 0% / auto padding-box border-box",
true,
);
// Changing Cell backgroud color to PURPLE and validate using JS
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Widget_Add_button_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Widget_Add_button_spec.js
index 2d41c5de7b..c06eeb4d9f 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Widget_Add_button_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_Widget_Add_button_spec.js
@@ -289,20 +289,4 @@ describe("Table Widget V2 property pane feature validation", function () {
cy.wait(500);
cy.get("[data-testid='t--property-pane-back-btn']").click({ force: true });
});
-
- it("8. Table widget test on button when transparent", () => {
- cy.openPropertyPane("tablewidgetv2");
- // Open column details of "id".
- cy.editColumn("id");
- // Changing column "Button" color to transparent
- cy.moveToStyleTab();
- cy.get(widgetsPage.buttonColor).click({ force: true });
- cy.wait(2000);
- cy.get(widgetsPage.transparent).click({ force: true });
- cy.get(".td[data-colindex=5][data-rowindex=0] .bp3-button").should(
- "have.css",
- "background-color",
- "rgba(0, 0, 0, 0)",
- );
- });
});
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/TextWidget_BgColor_TextSize_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/TextWidget_BgColor_TextSize_spec.js
index cd59a296b9..98da6c08d3 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/TextWidget_BgColor_TextSize_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/TextWidget_BgColor_TextSize_spec.js
@@ -21,7 +21,7 @@ describe("Text Widget Cell Background and Text Size Validation", function () {
cy.get(`${widgetsPage.textWidget} .bp3-ui-text`).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
//Toggle to JS mode
diff --git a/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/Text_new_feature_spec.js b/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/Text_new_feature_spec.js
index 652670c651..2014f85d0e 100644
--- a/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/Text_new_feature_spec.js
+++ b/app/client/cypress/e2e/Regression/ClientSide/Widgets/Text/Text_new_feature_spec.js
@@ -85,7 +85,7 @@ describe("Text Widget color/font/alignment Functionality", function () {
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(500);
cy.wait("@updateLayout");
- cy.readTextDataValidateCSS("color", "rgb(126, 34, 206)");
+ cy.readTextDataValidateCSS("color", "rgb(219, 234, 254)");
cy.get(widgetsPage.textColor)
.clear({ force: true })
.type("purple", { force: true });
@@ -105,7 +105,7 @@ describe("Text Widget color/font/alignment Functionality", function () {
cy.get(`${widgetsPage.textWidget} .bp3-ui-text`).should(
"have.css",
"background-color",
- "rgb(126, 34, 206)",
+ "rgb(219, 234, 254)",
);
//Toggle JS check with cell background:
diff --git a/app/client/cypress/e2e/Regression/ServerSide/Postgres_DataTypes/Json_Spec.ts b/app/client/cypress/e2e/Regression/ServerSide/Postgres_DataTypes/Json_Spec.ts
index 8a2df053cf..cafd353a80 100644
--- a/app/client/cypress/e2e/Regression/ServerSide/Postgres_DataTypes/Json_Spec.ts
+++ b/app/client/cypress/e2e/Regression/ServerSide/Postgres_DataTypes/Json_Spec.ts
@@ -21,7 +21,7 @@ describe("Json & JsonB Datatype tests", function () {
agHelper.AddDsl("Datatypes/JsonDTdsl");
entityExplorer.NavigateToSwitcher("Widgets");
- appSettings.OpenPaneAndChangeThemeColors(33, 39);
+ appSettings.OpenPaneAndChangeThemeColors(16, 20);
});
beforeEach(() => {
diff --git a/app/client/cypress/locators/ThemeLocators.json b/app/client/cypress/locators/ThemeLocators.json
index 1abc8f1cb3..6bf5174002 100644
--- a/app/client/cypress/locators/ThemeLocators.json
+++ b/app/client/cypress/locators/ThemeLocators.json
@@ -4,7 +4,7 @@
"popover": ".rc-tooltip-inner",
"shadow": ".t--theme-appBoxShadow",
"color": ".t--property-pane-sidebar .bp3-popover-target .cursor-pointer",
- "inputColor": ".t--colorpicker-v2-popover input",
+ "inputColor": ".t--colorpicker-v2-popover [data-testid='t--color-picker-input']",
"colorPicker": "[data-testid='color-picker']",
"greenColor": "[style='background-color: rgb(21, 128, 61);']",
"fontsSelected": ".leading-normal",
diff --git a/app/client/cypress/locators/Widgets.json b/app/client/cypress/locators/Widgets.json
index 4fef88acfc..629bea1a71 100644
--- a/app/client/cypress/locators/Widgets.json
+++ b/app/client/cypress/locators/Widgets.json
@@ -8,7 +8,7 @@
"inputPropsDataType": ".t--property-control-datatype input",
"inputdatatypeplaceholder": ".t--property-control-placeholder",
"buttonWidget": ".t--draggable-buttonwidget",
- "buttonColor": ".t--property-control-buttoncolor input",
+ "buttonColor": ".t--property-control-buttoncolor [data-testid='t--color-picker-input']",
"checkboxWidget": ".t--draggable-checkboxwidget",
"buttonStyleDropdown": ".t--property-control-buttonstyle [name='downArrow']",
"buttonBackground": ".sc-ecQjpJ > div > .bp3-button",
@@ -38,7 +38,7 @@
"requiredjs": ".t--property-control-required input",
"visible": ".t--property-control-visible input",
"disable": ".t--property-control-disabled",
- "menuColor": ".t--property-control-menucolor input",
+ "menuColor": ".t--property-control-menucolor [data-testid='t--color-picker-input']",
"menubar": ".bp3-menu",
"menupop": ".bp3-popover",
"defaultcheck": ".t--property-control-defaultstate input",
@@ -94,17 +94,16 @@
"verticalTop": "[data-value='TOP']",
"verticalCenter": "[data-value='CENTER']",
"verticalBottom": "[data-value='BOTTOM']",
- "textColor": ".t--property-control-textcolor input",
+ "textColor": ".t--property-control-textcolor [data-testid='t--color-picker-input']",
"boadercolorPicker": ".t--property-control-bordercolour input",
"boxShadowColorPicker": ".t--property-control-shadowcolor input",
"boxShadow": ".t--property-control-boxshadow .bp3-button-group",
"inputStepArrows": ".bp3-button-group",
"backgroundcolorPicker": ".t--property-control-backgroundcolour input",
- "backgroundcolorPickerNew": ".t--property-control-backgroundcolor input",
+ "backgroundcolorPickerNew": ".t--property-control-backgroundcolor [data-testid='t--color-picker-input']",
"greenColorHex": "#03b365",
"yellowColorHex": "#FFC13D",
"greenColor": "//div[@color='#03b365']",
- "transparent": ".diagnol-cross",
"yellowColor": "//div[@color='#FFC13D']",
"blueColor": "//div[@color='#3366FF']",
"toggleJsColor": ".t--property-control-textcolor .t--js-toggle",
diff --git a/app/client/cypress/support/Pages/AppSettings/ThemeSettings.ts b/app/client/cypress/support/Pages/AppSettings/ThemeSettings.ts
index 5238428027..d86c579d55 100644
--- a/app/client/cypress/support/Pages/AppSettings/ThemeSettings.ts
+++ b/app/client/cypress/support/Pages/AppSettings/ThemeSettings.ts
@@ -10,7 +10,7 @@ export class ThemeSettings {
"']//ancestor::div[@class= 'space-y-1 group']",
_colorPickerV2Popover: ".t--colorpicker-v2-popover",
_colorPickerV2Color:
- "//h3[text()='All Colors']/following-sibling::div//div[contains(@class,'t--colorpicker-v2-color')]",
+ "[data-testid='t--all-colors'] .t--colorpicker-v2-color",
_colorRingPrimary: "[data-testid='theme-primaryColor']",
_colorRingBackground: "[data-testid='theme-backgroundColor']",
_colorInput: (option: string) =>
diff --git a/app/client/package.json b/app/client/package.json
index cf49dc7cc1..a9f8c191c9 100644
--- a/app/client/package.json
+++ b/app/client/package.json
@@ -207,6 +207,7 @@
"unescape-js": "^1.1.4",
"url-search-params-polyfill": "^8.0.0",
"uuid": "^9.0.0",
+ "validate-color": "^2.2.4",
"webfontloader": "^1.6.28",
"webpack-retry-chunk-load-plugin": "^3.1.1",
"yjs": "^13.5.12",
diff --git a/app/client/src/assets/styles/index.css b/app/client/src/assets/styles/index.css
index a0471235a6..6aed82aa23 100644
--- a/app/client/src/assets/styles/index.css
+++ b/app/client/src/assets/styles/index.css
@@ -56,13 +56,6 @@ and .Toastify__toast-container--bottom-center classes, which messes with the pla
opacity: 0.5;
}
-.diagnol-cross {
- background: url("data:image/svg+xml;utf8,");
- background-repeat: no-repeat;
- background-position: center center;
- background-size: 100% 100%, auto;
-}
-
.hidden-scrollbar {
-ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* for Firefox */
diff --git a/app/client/src/ce/constants/messages.ts b/app/client/src/ce/constants/messages.ts
index 1ed42d95de..618bbc428b 100644
--- a/app/client/src/ce/constants/messages.ts
+++ b/app/client/src/ce/constants/messages.ts
@@ -1901,3 +1901,6 @@ export const DEFAULT_CAMERA_LABEL_DESCRIPTION = () =>
"Default choice for mobile users. Not applicable for other devices";
export const FRONT_CAMERA_LABEL = () => "Front (Selfie)";
export const BACK_CAMERA_LABEL = () => "Back (Rear)";
+
+// Color picker
+export const FULL_COLOR_PICKER_LABEL = () => "Full color picker";
diff --git a/app/client/src/components/propertyControls/ColorPickerComponentV2.test.tsx b/app/client/src/components/propertyControls/ColorPickerComponentV2.test.tsx
index f3bee5634e..9e08dde403 100644
--- a/app/client/src/components/propertyControls/ColorPickerComponentV2.test.tsx
+++ b/app/client/src/components/propertyControls/ColorPickerComponentV2.test.tsx
@@ -111,6 +111,7 @@ describe("