diff --git a/web/account/siwe-login-form.react.js b/web/account/siwe-login-form.react.js --- a/web/account/siwe-login-form.react.js +++ b/web/account/siwe-login-form.react.js @@ -117,6 +117,11 @@ [], ); + const signInButtonColor = React.useMemo( + () => ({ backgroundColor: '#6A20E3' }), + [], + ); + if (!siweNonce || !primaryIdentityPublicKey) { return (
@@ -143,7 +148,11 @@ Privacy Policy.

- diff --git a/web/account/traditional-login-form.react.js b/web/account/traditional-login-form.react.js --- a/web/account/traditional-login-form.react.js +++ b/web/account/traditional-login-form.react.js @@ -133,6 +133,11 @@ return 'Sign in'; }, [inputDisabled]); + const signInButtonColor = React.useMemo( + () => ({ backgroundColor: '#6A20E3' }), + [], + ); + return (
@@ -173,6 +178,7 @@ inputDisabled } onClick={onSubmit} + buttonColor={signInButtonColor} > {loginButtonContent}