I'm currently using an accordion feature from Flowbite, but I am facing issues with it defaulting to dark mode upon page load. Upon inspecting the element, I discovered that there is some dark mode CSS included in the Flowbite package. In an attempt to resolve this, I extracted the CSS file and manually removed the dark mode CSS that was indicated by the inspection tool. However, even after doing so, the accordion remains in dark mode. On the Flowbite website, you have the option to copy code in either light or dark mode, and I have double-checked multiple times to ensure that I selected the correct setting. I have meticulously reviewed the CSS file, my HTML code, and inspected the element, yet the issue persists.
My goal is for the accordion to maintain its light gray color scheme upon loading, similar to how it is displayed in the provided screenshot. Below are some screenshots for reference:
https://i.sstatic.net/q2sMt.png
https://i.sstatic.net/0zt6u.png
https://i.sstatic.net/8vauy.png
<div id="accordion-open" data-accordion="open" class="mx-auto mt-6 mb-10">
<h2 id="accordion-open-heading-1">
<button type="button" class=" flex items-center justify-between w-full p-5 font-medium text-left border border-gray-200 rounded-t-xl focus:ring-4 focus:ring-gray-200 hover:bg-gray-100 bg-gray-100 " data-accordion-target="#accordion-open-body-1" aria-expanded="true" aria-controls="accordion-open-body-1">
<span class="flex items-center">Activity Diagram (click to open/close)</span>
<svg data-accordion-icon="" class="w-6 h-6 rotate-180 shrink-0" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
</h2>
<div id="accordion-open-body-1" class="" aria-labelledby="accordion-open-heading-1">
<div class="p-5 font-light border-b-2 border-gray-200 border border-b-3 border-gray-200 rounded-b-xl focus:ring-4 focus:ring-gray-200">
<img class="pt-6 object-scale-down h-full w-full mx-auto px-28" src="">
</div>
</div>
</div>