diff --git a/mock-responses/recognition-listning/recognitionList.json b/mock-responses/recognition-listning/recognitionList.json
new file mode 100644
index 000000000..0260dde3e
--- /dev/null
+++ b/mock-responses/recognition-listning/recognitionList.json
@@ -0,0 +1,53 @@
+{
+"recognitionList":[
+ {
+ "id":1,
+ "text":
+ "i give high five to avinash for writing block on react strap document",
+ "givenFor": {
+ "id": 1,
+ "first_name": "avinash",
+ "last_name": "mane",
+ "profile_image_url":"https://i.picsum.photos/id/2/200/200.jpg"
+ },
+ "givenBy": {
+ "id": 2,
+ "first_name": "onkar",
+ "last_name": "hasabe",
+ "profile_image_url": "https://i.picsum.photos/id/2/200/200.jpg"
+ },
+ "given_at": 1234567890,
+ "coreValue": {
+ "id": 3,
+ "text": "core value text",
+ "description": "desc",
+ "thumbnail": "https://i.picsum.photos/id/654/300/200.jpg"
+ }
+ },
+
+ {
+ "id":1,
+ "text":"give high five to avinash writing block on react strap document",
+ "givenFor": {
+ "id": 1,
+ "first_name": "avinash",
+ "last_name": "mane",
+ "profile_image_url":"https://i.picsum.photos/id/2/200/200.jpg"
+ },
+ "givenBy": {
+ "id": 2,
+ "first_name": "onkar",
+ "last_name": "hasabe",
+ "profile_image_url": "https://i.picsum.photos/id/2/200/200.jpg"
+ },
+ "given_at": 1234567890,
+ "coreValue": {
+ "id": 3,
+ "text": "core value text",
+ "description": "desc",
+ "thumbnail": "https://i.picsum.photos/id/654/300/200.jpg"
+ }
+ }
+
+ ]
+}
diff --git a/react-frontend/src/recognition-list-components/RecognitionCardComponent.js b/react-frontend/src/recognition-list-components/RecognitionCardComponent.js
index 43e71dc4b..0b112293a 100644
--- a/react-frontend/src/recognition-list-components/RecognitionCardComponent.js
+++ b/react-frontend/src/recognition-list-components/RecognitionCardComponent.js
@@ -23,9 +23,9 @@ const HighFive = styled.div`
const CardComponent = styled(Card)`
border-radius: 20px;
margin: 20px 20px;
- box-shadow: 0px 5px 20px #505c623b;
+ box-shadow: 0px 5px 20px var(--box-shadow-color);
opacity: 1;
- background: #ffffff 0% 0% no-repeat padding-box;
+ background: var(--white) 0% 0% no-repeat padding-box;
`;
const RecognitionCardComponent = ({
diff --git a/react-frontend/src/recognition-list-components/RecognitionListComponent.js b/react-frontend/src/recognition-list-components/RecognitionListComponent.js
index 77d367f88..f834a8c6d 100644
--- a/react-frontend/src/recognition-list-components/RecognitionListComponent.js
+++ b/react-frontend/src/recognition-list-components/RecognitionListComponent.js
@@ -5,8 +5,8 @@ import styled from "styled-components";
import RecognitionCardComponent from "recognition-list-components/RecognitionCardComponent";
const Wrapper = styled.div`
- border: 1px solid lightgrey;
- background: #ffffff 0% 0% no-repeat padding-box;
+ border: 1px solid var(--grey);
+ background: var(--white) 0% 0% no-repeat padding-box;
border-radius: 36px;
opacity: 1;
`;
diff --git a/react-frontend/src/recognition-list-components/RecognitionListComponent.test.js b/react-frontend/src/recognition-list-components/RecognitionListComponent.test.js
index e249eae71..30bec2f31 100644
--- a/react-frontend/src/recognition-list-components/RecognitionListComponent.test.js
+++ b/react-frontend/src/recognition-list-components/RecognitionListComponent.test.js
@@ -1,11 +1,15 @@
import React from "react";
import { render } from "@testing-library/react";
+
import RecognitionListComponent from "recognition-list-components/RecognitionListComponent";
+import recognitionList from "../../../mock-responses/recognition-listning/recognitionList.json";
describe("Recognition list Component test", () => {
test("should equal snapshot", () => {
const { asFragment } = render(
-