1

Is there a possibility to use a dark theme for google recaptcha 3? I tried to add data-theme="dark" in grecaptcha block but it doesn't work for me

2 Answers2

1

Have you try this?

document.addEventListener('DOMContentLoaded', (event) => {
  const recaptcha = document.querySelector('.g-recaptcha');
  recaptcha.setAttribute("data-theme", "dark");
});

Or you can change it manually by find the div with class g-recaptcha and add the attribute data-theme="dark".

muhkanda
  • 319
  • 1
  • 9
0

I made this way, actually i made some modifications, but i can't made the badge turn black on first load, i'll still make a refresh for that. https://stackoverflow.com/a/72502375/17791142

i wish this can help you.