Skip to content

Commit 1628e75

Browse files
authored
Increase the contrast of dashboard log view (#19818)
1 parent e30a12f commit 1628e75

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

components/dashboard/src/components/WorkspaceLogs.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ import { cn } from "@podkit/lib/cn";
1616
const darkTheme: ITheme = {
1717
// What written on DevTool dark:bg-gray-800 is
1818
background: "#23211E", // Tailwind's warmGray 50 https://tailwindcss.com/docs/customizing-colors
19+
selectionBackground: "#add6ff26", // https://github.com/gitpod-io/gitpod-vscode-theme/blob/6fb17ba8915fcd68fde3055b4bc60642ce5eed14/themes/gitpod-dark-color-theme.json#L15
1920
};
2021
const lightTheme: ITheme = {
2122
background: "#F9F9F9", // Tailwind's warmGray 800 https://tailwindcss.com/docs/customizing-colors
2223
foreground: "#78716C", // Tailwind's warmGray 500 https://tailwindcss.com/docs/customizing-colors
2324
cursor: "#78716C", // Tailwind's warmGray 500 https://tailwindcss.com/docs/customizing-colors
25+
selectionBackground: "#add6ff80", // https://github.com/gitpod-io/gitpod-vscode-theme/blob/6fb17ba8915fcd68fde3055b4bc60642ce5eed14/themes/gitpod-light-color-theme.json#L15
2426
};
2527

2628
export interface WorkspaceLogsProps {

0 commit comments

Comments
 (0)