summaryrefslogtreecommitdiff
path: root/extension/react-app/src
diff options
context:
space:
mode:
Diffstat (limited to 'extension/react-app/src')
-rw-r--r--extension/react-app/src/components/ComboBox.tsx2
-rw-r--r--extension/react-app/src/components/index.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx
index a91edaca..48df368b 100644
--- a/extension/react-app/src/components/ComboBox.tsx
+++ b/extension/react-app/src/components/ComboBox.tsx
@@ -648,7 +648,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {
typeof inQueryForContextProvider !== "undefined"
}
disabled={props.disabled}
- placeholder={`Ask a question, give instructions, type '/' for slash commands, or '@' to add context`}
+ placeholder={`Ask a question, type '/' for slash commands, or '@' to add context`}
{...getInputProps({
onCompositionStart: () => setIsComposing(true),
onCompositionEnd: () => setIsComposing(false),
diff --git a/extension/react-app/src/components/index.ts b/extension/react-app/src/components/index.ts
index 1f418c94..557a7479 100644
--- a/extension/react-app/src/components/index.ts
+++ b/extension/react-app/src/components/index.ts
@@ -2,7 +2,7 @@ import { Tooltip } from "react-tooltip";
import styled, { keyframes } from "styled-components";
export const defaultBorderRadius = "5px";
-export const lightGray = "#646464";
+export const lightGray = "#cfcccc";
// export const secondaryDark = "rgb(45 45 45)";
// export const vscBackground = "rgb(30 30 30)";
export const vscBackgroundTransparent = "#1e1e1ede";