Skip to content

Commit

Permalink
Fix shell selection color on light mode + bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Oct 5, 2023
1 parent c3a0df6 commit 09af570
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
18 changes: 9 additions & 9 deletions deploy-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions deploy-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudmos-app",
"version": "1.5.5",
"version": "1.5.6",
"description": "Web UI to deploy on the Akash Network and view statistic about network usage.",
"author": "Cloudmos",
"private": true,
Expand Down Expand Up @@ -76,7 +76,7 @@
"tss-react": "^4.8.5",
"use-state-with-callback": "^3.0.2",
"usehooks-ts": "^2.9.1",
"xterm": "^5.1.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.7.0"
},
"devDependencies": {
Expand Down
5 changes: 4 additions & 1 deletion deploy-web/src/lib/XTerm/XTerm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,10 @@ const XTerm: React.FunctionComponent<IProps> = props => {
background: theme.palette.mode === "dark" ? "#1e1e1e" : "white",
foreground: theme.palette.mode === "dark" ? "white" : "black",
cursor: theme.palette.mode === "dark" ? "white" : "black",
cursorAccent: theme.palette.mode === "dark" ? "#1e1e1e" : "white"
cursorAccent: theme.palette.mode === "dark" ? "#1e1e1e" : "white",
selectionBackground: theme.palette.mode === "dark" ? "white" : "black",
selectionForeground: theme.palette.mode === "dark" ? "black" : "white",
selectionInactiveBackground: theme.palette.mode === "dark" ? "white" : "black"
},
cursorBlink: true
});
Expand Down

0 comments on commit 09af570

Please sign in to comment.