Skip to content

Commit c7598a7

Browse files
committed
update color shades for match tailwind colors
1 parent 5ab982e commit c7598a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ui/src/Components/DashBoard/Repository/GitComponents/GitDiffViewComponent.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ export default function GitDiffViewComponent() {
119119
changedFiles.map((entry) => {
120120
if (entry && entry.split(",")[0] === "M") {
121121
let fileEntry = entry.split(",")[1];
122-
const styleSelector = " bg-indigo-100 border-b border-indigo-300";
122+
const styleSelector = " bg-indigo-50 border-b border-indigo-300";
123123
return (
124124
<div
125-
className={`p-2 text-sm break-words hover:bg-indigo-100 cursor-pointer ${
125+
className={`p-2 text-sm break-words hover:bg-indigo-50 cursor-pointer ${
126126
fileEntry === activeFileName ? styleSelector : ""
127127
}`}
128128
onClick={() => {

ui/src/Components/DashBoard/Repository/GitComponents/GitOperation/PushComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ export default function PushComponent(props) {
311311
</>
312312
) : (
313313
<div className="w-11/12 mx-auto my-auto p-6 bg-white rounded">
314-
<div className="p-6 border-b-4 border-dashed bg-green-200 border-green-500 text-center rounded-lg shadow font-sans text-green-500 text-2xl font-semibold">
314+
<div className="p-6 border-b-4 border-dashed bg-green-100 border-green-500 text-center rounded-lg shadow font-sans text-green-500 text-2xl font-semibold">
315315
Changes have been pushed to remote
316316
</div>
317317
</div>

ui/src/Components/DashBoard/Repository/RepoComponents/RepositoryAction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ export default function RepositoryAction() {
222222
<select
223223
value={activeBranch}
224224
defaultChecked={activeBranch}
225-
className="top-pane--select bg-indigo-100 border-indigo-300 text-indigo-700"
225+
className="top-pane--select bg-indigo-50 border-indigo-300 text-indigo-700"
226226
disabled={activeBranch ? false : true}
227227
onChange={(event) => {
228228
event.persist();

0 commit comments

Comments
 (0)