FT
FAQ Templates

ASSET_SPEC // DARK_MODE_ACCORDION

Dark Mode AccordionFAQ template

A visually striking accordion designed specifically for dark-themed interfaces and high-contrast environments.

Live_Preview_Environment

Questions? We've got answers.

When_to_Use

Use the dark mode accordion on modern, dark-themed interfaces where high contrast and subtle hover states matter. Pair it with a plus/minus or rotating icon toggle and keep touch targets comfortable.

Source_Manifest

Source_Inspector // TAILWIND
<section class="bg-gray-950 px-6 py-24 sm:py-32">
  <div class="mx-auto max-w-2xl">
    <h2 class="text-2xl font-bold tracking-tight text-white sm:text-3xl">Technical FAQ</h2>
    <div class="mt-10 space-y-4">
      <details class="group rounded-2xl bg-gray-900 p-6 transition-all hover:bg-gray-800/50" open>
        <summary class="flex cursor-pointer items-center justify-between font-semibold text-gray-100 list-none">
          <span>Is TypeScript supported?</span>
          <span class="text-blue-400 group-open:rotate-180 transition-transform">
            <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
            </svg>
          </span>
        </summary>
        <p class="mt-4 text-gray-400 leading-relaxed">
          Check the SDK documentation for current TypeScript setup and type coverage.
        </p>
      </details>
      <details class="group rounded-2xl bg-gray-900 p-6 transition-all hover:bg-gray-800/50">
        <summary class="flex cursor-pointer items-center justify-between font-semibold text-gray-100 list-none">
          <span>Where is the API reference?</span>
          <span class="text-blue-400 group-open:rotate-180 transition-transform">
            <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
            </svg>
          </span>
        </summary>
        <p class="mt-4 text-gray-400 leading-relaxed">
          Open the developer documentation and choose the API Reference section.
        </p>
      </details>
    </div>
  </div>
</section>
READ_ONLY