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 | 08221a0879b4a163eab6860524f255dbcb4743ae (patch) | |
tree | 0654011e8bfd78e2034eec150f3d79c9f9a96930 /extension/react-app/src/components/PillButton.tsx | |
parent | 88c1f16c597e0a55271e622a5283562ccb7a80a1 (diff) | |
download | sncontinue-08221a0879b4a163eab6860524f255dbcb4743ae.tar.gz sncontinue-08221a0879b4a163eab6860524f255dbcb4743ae.tar.bz2 sncontinue-08221a0879b4a163eab6860524f255dbcb4743ae.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; |