diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-17 15:31:18 -0500 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-17 15:31:18 -0500 |
commit | d0dc7811eb71d9d53055a1aa684827502748b794 (patch) | |
tree | c86a207d8f0fd2f6e697792df9fc04216f77358b /extension/react-app/src/components/PillButton.tsx | |
parent | 690c2c756489008f4b430708423b4ca3f2c7f903 (diff) | |
parent | 6b708464d76a92e12dac40081cc51ba35f7fc0d0 (diff) | |
download | sncontinue-d0dc7811eb71d9d53055a1aa684827502748b794.tar.gz sncontinue-d0dc7811eb71d9d53055a1aa684827502748b794.tar.bz2 sncontinue-d0dc7811eb71d9d53055a1aa684827502748b794.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.tsx | 9 |
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; |