Skip to content

Instantly share code, notes, and snippets.

@abdasis
Created July 29, 2025 07:36
Show Gist options
  • Select an option

  • Save abdasis/ed7b8aec262e4bb27b00f809a019d155 to your computer and use it in GitHub Desktop.

Select an option

Save abdasis/ed7b8aec262e4bb27b00f809a019d155 to your computer and use it in GitHub Desktop.
fix autofill background tailwindcss
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
-webkit-box-shadow: 0 0 0 100px transparent inset !important;
box-shadow: 0 0 0 100px transparent inset !important;
background-color: transparent !important;
color: #1f2937 !important; /* Tailwind text-gray-900 */
transition: background-color 5000s ease-in-out 0s;
}
input.dark:-webkit-autofill {
-webkit-box-shadow: 0 0 0 100px transparent inset !important;
box-shadow: 0 0 0 100px transparent inset !important;
background-color: transparent !important;
color: #f3f4f6 !important; /* Tailwind text-gray-100 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment