preview-body.html 233 B

1234567891011
  1. <script>
  2. setTimeout(() => {
  3. const body = document.body
  4. body.classList.add('text-white')
  5. body.classList.add('bg-black')
  6. const root = document.documentElement
  7. root.setAttribute('dir', 'ltr')
  8. }, 100)
  9. </script>