summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/index.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-08 14:55:32 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-08 14:55:32 -0700
commit5e8866da83f8a97cb8492f26e175b948d0282262 (patch)
tree38eaeff888d949ef32380706a65f099c3e0c1131 /extension/react-app/src/components/index.ts
parent454b75fc275226662747a93401feacac81a72085 (diff)
downloadsncontinue-5e8866da83f8a97cb8492f26e175b948d0282262.tar.gz
sncontinue-5e8866da83f8a97cb8492f26e175b948d0282262.tar.bz2
sncontinue-5e8866da83f8a97cb8492f26e175b948d0282262.zip
fix: :lipstick: fix UI problems in vscode light themes
Diffstat (limited to 'extension/react-app/src/components/index.ts')
-rw-r--r--extension/react-app/src/components/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/index.ts b/extension/react-app/src/components/index.ts
index cb5e7915..6705ceb2 100644
--- a/extension/react-app/src/components/index.ts
+++ b/extension/react-app/src/components/index.ts
@@ -2,14 +2,14 @@ import { Tooltip } from "react-tooltip";
import styled, { keyframes } from "styled-components";
export const defaultBorderRadius = "5px";
-export const lightGray = "rgb(100 100 100)";
+export const lightGray = "#646464";
// export const secondaryDark = "rgb(45 45 45)";
// export const vscBackground = "rgb(30 30 30)";
export const vscBackgroundTransparent = "#1e1e1ede";
export const buttonColor = "rgb(113 28 59)";
export const buttonColorHover = "rgb(113 28 59 0.67)";
-export const secondaryDark = "var(--vscode-textBlockQuote-background)";
+export const secondaryDark = "var(--vscode-list-hoverBackground)";
export const vscBackground = "var(--vscode-editor-background)";
export const vscForeground = "var(--vscode-editor-foreground)";