summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/PillButton.tsx
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-07-17 15:31:18 -0500
committerTy Dunn <ty@tydunn.com>2023-07-17 15:31:18 -0500
commit6e95cb64cd5b2e2d55200bf979106f18d395bb97 (patch)
tree7889f93ec6c13a3148c946bdd8005d7896cb708d /extension/react-app/src/components/PillButton.tsx
parentd1819268fb3f6fadbb763ef98cf306ed33add8fb (diff)
parent96a48d3484b927db4625ece53e393b60d685783e (diff)
downloadsncontinue-6e95cb64cd5b2e2d55200bf979106f18d395bb97.tar.gz
sncontinue-6e95cb64cd5b2e2d55200bf979106f18d395bb97.tar.bz2
sncontinue-6e95cb64cd5b2e2d55200bf979106f18d395bb97.zip
Merge branch 'main' of github.com:continuedev/continue
Diffstat (limited to 'extension/react-app/src/components/PillButton.tsx')
-rw-r--r--extension/react-app/src/components/PillButton.tsx9
1 files changed, 7 insertions, 2 deletions
diff --git a/extension/react-app/src/components/PillButton.tsx b/extension/react-app/src/components/PillButton.tsx
index 6bfe6369..c24dba83 100644
--- a/extension/react-app/src/components/PillButton.tsx
+++ b/extension/react-app/src/components/PillButton.tsx
@@ -1,6 +1,11 @@
import { useContext, useState } from "react";
import styled from "styled-components";
-import { StyledTooltip, defaultBorderRadius, secondaryDark } from ".";
+import {
+ StyledTooltip,
+ defaultBorderRadius,
+ secondaryDark,
+ vscForeground,
+} from ".";
import {
Trash,
PaintBrush,
@@ -10,7 +15,7 @@ import { GUIClientContext } from "../App";
const Button = styled.button`
border: none;
- color: white;
+ color: ${vscForeground};
background-color: ${secondaryDark};
border-radius: ${defaultBorderRadius};
padding: 8px;