diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-17 12:05:03 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-17 12:05:03 -0700 |
commit | 79b4da7e0afe773d161d2e50688dd31791efa1e1 (patch) | |
tree | 44e119503bbb8fc23ef824581786a7d4d8efff6a /extension/react-app/src/components/PillButton.tsx | |
parent | a6e5bb82f8fdcc1dc6f07776f3a63d6b078d006c (diff) | |
download | sncontinue-79b4da7e0afe773d161d2e50688dd31791efa1e1.tar.gz sncontinue-79b4da7e0afe773d161d2e50688dd31791efa1e1.tar.bz2 sncontinue-79b4da7e0afe773d161d2e50688dd31791efa1e1.zip |
match vscode color theme
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 5a16516e..eba5cf8f 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; |