diff options
author | V <vendicated@riseup.net> | 2023-09-26 01:38:46 +0200 |
---|---|---|
committer | V <vendicated@riseup.net> | 2023-09-26 01:38:46 +0200 |
commit | da7f0cfff652b74496e20225854e20b0954ed008 (patch) | |
tree | 91b2444eeeb371b2dd765bbaafbd7972915e56b4 | |
parent | ae6584da7c38fd0f3414e3cb650b35a9a9b831be (diff) | |
download | Vencord-da7f0cfff652b74496e20225854e20b0954ed008.tar.gz Vencord-da7f0cfff652b74496e20225854e20b0954ed008.tar.bz2 Vencord-da7f0cfff652b74496e20225854e20b0954ed008.zip |
PluginModal: Fix cancel button being white on white in light theme
-rw-r--r-- | src/components/PluginSettings/PluginModal.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/PluginSettings/PluginModal.tsx b/src/components/PluginSettings/PluginModal.tsx index 78f3c9d..d8b9490 100644 --- a/src/components/PluginSettings/PluginModal.tsx +++ b/src/components/PluginSettings/PluginModal.tsx @@ -238,7 +238,7 @@ export default function PluginModal({ plugin, onRestartNeeded, onClose, transiti <Button onClick={onClose} size={Button.Sizes.SMALL} - color={Button.Colors.WHITE} + color={Button.Colors.PRIMARY} look={Button.Looks.LINK} > Cancel |