Bitbucket

Styles and examples for .tw-social-btn + .tw-social-provider-bitbucket

Button Variants

Available variant modifiers:
.tw-social-variant-outline
.tw-social-variant-light
.tw-social-variant-dark
.tw-social-variant-inverted

<a class="tw-social-btn tw-social-provider-bitbucket">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Bitbucket</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-outline">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Outlined</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-light">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Light</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-dark">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Dark</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-inverted">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Inverted</span>
</a>

Icon Buttons

Icon-only buttons, no text label.
Required class:
.tw-social-icon-only

<a class="tw-social-btn tw-social-provider-bitbucket tw-social-icon-only" aria-label="Bitbucket">
  <i class="fa-brands fa-bitbucket fa-lg"></i>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-outline tw-social-icon-only" aria-label="Bitbucket outlined">
  <i class="fa-brands fa-bitbucket fa-lg"></i>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-light tw-social-icon-only" aria-label="Bitbucket light">
  <i class="fa-brands fa-bitbucket fa-lg"></i>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-dark tw-social-icon-only" aria-label="Bitbucket dark">
  <i class="fa-brands fa-bitbucket fa-lg"></i>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-variant-inverted tw-social-icon-only" aria-label="Bitbucket inverted">
  <i class="fa-brands fa-bitbucket fa-lg"></i>
</a>

Icon Placement

Use .tw-social-icon-left / .tw-social-icon-right for single-icon buttons.
Use data-icon="inline-start" / data-icon="inline-end" for per-icon control (e.g., icons on both sides).

Class modifiers (single-icon buttons)

Data attribute markers (per-icon control)

<!-- Class modifiers (single-icon buttons) -->
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-icon-left">
  <i class="fa-brands fa-bitbucket"></i>
  <span>Start</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-icon-right">
  <span>End</span>
  <i class="fa-brands fa-bitbucket"></i>
</a>

<!-- Data attribute markers (per-icon control) -->
<a class="tw-social-btn tw-social-provider-bitbucket">
  <i class="fa-brands fa-bitbucket" data-icon="inline-start"></i>
  <span>Marker Start</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket">
  <span>Marker End</span>
  <i class="fa-brands fa-bitbucket" data-icon="inline-end"></i>
</a>

Button Sizes

Available sizes:
.tw-social-size-sm
.tw-social-size-md
.tw-social-size-lg

<a class="tw-social-btn tw-social-provider-bitbucket tw-social-size-sm">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Small</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Normal</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-size-md">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Medium</span>
</a>
<a class="tw-social-btn tw-social-provider-bitbucket tw-social-size-lg">
  <span class="icon">
    <i class="fa-brands fa-bitbucket"></i>
  </span>
  <span>Large</span>
</a>

Text Colors

Apply the provider color to any text

.tw-social-text-bitbucket

.tw-social-text-bitbucket-light

.tw-social-text-bitbucket-dark

<p class="tw-social-text-bitbucket">Text with Bitbucket color</p>
<p class="tw-social-text-bitbucket-light">Text with Bitbucket light color</p>
<p class="tw-social-text-bitbucket-dark">Text with Bitbucket dark color</p>

Background Colors

Apply the provider color as a background

.tw-social-bg-bitbucket
.tw-social-bg-bitbucket-light
.tw-social-bg-bitbucket-dark
<div class="rounded-sm tw-social-bg-bitbucket text-white">
  .tw-social-bg-bitbucket
</div>
<div class="rounded-sm tw-social-bg-bitbucket-light">
  .tw-social-bg-bitbucket-light
</div>
<div class="rounded-sm tw-social-bg-bitbucket-dark text-white">
  .tw-social-bg-bitbucket-dark
</div>

Border, Ring, and SVG Utilities

Use these helpers for borders, focus rings, and SVG coloring.

.tw-social-border-bitbucket
.tw-social-border-bitbucket-light
.tw-social-border-bitbucket-dark
<div class="tw-social-border-bitbucket border-2"></div>
<div class="tw-social-border-bitbucket-light border-2"></div>
<div class="tw-social-border-bitbucket-dark border-2"></div>

<button class="tw-social-ring-bitbucket ring-2">Ring utility</button>
<svg class="tw-social-fill-bitbucket" viewBox="0 0 24 24"></svg>
<svg class="tw-social-stroke-bitbucket" viewBox="0 0 24 24"></svg>

Need multiple providers in one file?

Build a custom CSS bundle with only the providers you need.

Explore Customization