diff --git a/src/components/Contributors/contributors.jsx b/src/components/Contributors/contributors.jsx index 9c2f742..79cbef0 100644 --- a/src/components/Contributors/contributors.jsx +++ b/src/components/Contributors/contributors.jsx @@ -42,7 +42,7 @@ function Contribute() { "1a5ba5", "118d7c", "8d54e1", - "40E4F0", + "ff0000", "7e1aa5", ]; let element; diff --git a/src/components/Error/ErrorType.jsx b/src/components/Error/ErrorType.jsx index 940051a..5df219d 100644 --- a/src/components/Error/ErrorType.jsx +++ b/src/components/Error/ErrorType.jsx @@ -11,7 +11,7 @@ function ErrorType({ type }) { : type === "push" ? "before:bg-[#8d54e1]" : type === "branch" - ? "before:bg-[#40E4F0]" + ? "before:bg-[#ff0000]" : type === "cmd" ? "before:bg-[#e100ff]" : "before:bg-[#7e1aa5]" diff --git a/src/components/Search/SearchInput.jsx b/src/components/Search/SearchInput.jsx index 5dcc902..f8ed636 100644 --- a/src/components/Search/SearchInput.jsx +++ b/src/components/Search/SearchInput.jsx @@ -64,7 +64,7 @@ function SearchInput({ search, setSearch, setType }) { : item === "cmd" ? "bg-[#e100ff]" : item === "branch" - ? "bg-[#40E4F0]" + ? "bg-[#ff0000]" : "bg-[#7e1aa5]" } ${ selectedTag === item ? "ring-4 ring-red-500" : "" @@ -116,7 +116,7 @@ function SearchInput({ search, setSearch, setType }) { : item === "cmd" ? "bg-[#40f058a8]" : item === "branch" - ? "bg-[#40E4F0]" + ? "bg-[#ff0000]" : "bg-[#7e1aa5]" } ${ selectedTag === item ? "ring-4 ring-red-500" : "" diff --git a/src/data/Contributors.json b/src/data/Contributors.json index 615266d..cb216fe 100644 --- a/src/data/Contributors.json +++ b/src/data/Contributors.json @@ -18,5 +18,9 @@ "name": "Atharva", "github_username": "PiseAtharva", "twitter_username": "PiseAtharva" + },{ + "name": "Adam Basha", + "github_username": "Bashamega", + "twitter_username": "" } ] \ No newline at end of file diff --git a/src/hooks/useColorBorderBox.js b/src/hooks/useColorBorderBox.js index be1eaa3..6580a84 100644 --- a/src/hooks/useColorBorderBox.js +++ b/src/hooks/useColorBorderBox.js @@ -8,7 +8,7 @@ const useColorBorderBox = (error = "") => { return setErrorTypeColor("#4024e0"); } if (error.type == "branch") { - return setErrorTypeColor("#40e4f0"); + return setErrorTypeColor("#ff0000"); } if (error.type == "push") { return setErrorTypeColor("#8d54e1"); @@ -36,7 +36,7 @@ const useColorBorderBox = (error = "") => { : item === "cmd" ? "border-[#e100ff]" : item === "branch" - ? "border-[#40E4F0]" + ? "border-[#ff0000]" : "border-[#7e1aa5]" }`