← Back to Docs

Theme Customization

Customize the widget using CSS custom properties. Just add a <style> block before the embed script.

Requires Pro plan or above. Free plans use default styling with Threadline branding.

Quick Example

<style>
  #threadline-comments {
    --tl-color-accent: #059669;
    --tl-color-bg: #f0fdf4;
    --tl-font-family: 'Inter', sans-serif;
    --tl-radius: 12px;
  }
</style>

<div id="threadline-comments"></div>
<script src="https://threadline.io/api/embed"
  data-site-id="YOUR_SITE_ID"
  data-api-url="https://api.threadline.io"
  async></script>

CSS Custom Properties

PropertyDefaultDescription
--tl-color-bg#ffffffWidget background color
--tl-color-text#1a1a1aPrimary text color
--tl-color-text-muted#6b7280Secondary/muted text (timestamps, metadata)
--tl-color-border#e5e7ebBorder color between elements
--tl-color-accent#6366f1Accent color (links, active states, buttons)
--tl-color-accent-hover#4f46e5Accent color on hover
--tl-color-input-bg#f9fafbInput and textarea background
--tl-color-input-border#d1d5dbInput border color
--tl-font-familyinheritFont family. "inherit" matches your site.
--tl-font-size14pxBase font size
--tl-radius8pxBorder radius for cards, inputs, buttons
--tl-max-width680pxMaximum width of the comment container

Dark Mode

@media (prefers-color-scheme: dark) {
  #threadline-comments {
    --tl-color-bg: #1a1a2e;
    --tl-color-text: #e2e8f0;
    --tl-color-text-muted: #94a3b8;
    --tl-color-border: #334155;
    --tl-color-input-bg: #0f172a;
    --tl-color-input-border: #475569;
  }
}

Note: The widget uses Shadow DOM, so your global styles cannot leak in. Only CSS custom properties on #threadline-comments are read. See Shadow DOM isolation for details.

Theme preview gallery

Layout presets (premium, modern, minimal) combined with color modes and primary swatches. Pure CSS/HTML mock cards - no images.

premium / light
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#6170f0
premium / dark
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#059669
premium / auto
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#dc2626
modern / light
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#dc2626
modern / dark
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#d97706
modern / auto
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#7c3aed
minimal / light
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#7c3aed
minimal / dark
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#0284c7
minimal / auto
Alex Rivera
2 hours ago
Love this write-up - especially the section on moderation defaults.
ReplyLike#6170f0