diff options
author | dan <dan.abramov@gmail.com> | 2024-07-04 20:54:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-04 20:54:49 +0100 |
commit | d03dd8c8154e11bf7603ba37cf0ee5a580ec11d1 (patch) | |
tree | 1725f8ee087d4ce84d39df7a21144f653212963f /src/components/Button.tsx | |
parent | ca7386967a68574c25cff27cfbdf6a06f108a481 (diff) | |
download | voidsky-d03dd8c8154e11bf7603ba37cf0ee5a580ec11d1.tar.zst |
Feed interstitial tweaks (#4733)
* Swap interstitial positions * Fix color
Diffstat (limited to 'src/components/Button.tsx')
-rw-r--r-- | src/components/Button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Button.tsx b/src/components/Button.tsx index ed963026c..dfdcde6ed 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -542,7 +542,7 @@ export function useSharedButtonTextStyles() { if (variant === 'solid' || variant === 'gradient') { if (!disabled) { baseStyles.push({ - color: t.palette.white, + color: t.palette.contrast_100, }) } else { baseStyles.push({ |