> ## Documentation Index
> Fetch the complete documentation index at: https://developer.tailwind.zone/llms.txt
> Use this file to discover all available pages before exploring further.

# With Cosmoskit

> If you're already using Cosmoskit, this is the fastest way to start.

# Support Tailwind in 5 Minutes

This guide only works if you have Cosmoskit installed.
If you don't, please follow the [installation guide](https://docs.cosmoskit.com/get-started).

<Steps>
  <Step title="Download Cosmoskit's Tailwind wallet adapter.">
    ```bash
    yarn add @cosmos-kit/tailwind
    ```
  </Step>

  <Step title="Add to provider.">
    ```typescript
    import { wallets as tailwindWallets } from "@cosmos-kit/tailwind"; 

    function MyCosmosApp({ Component, pageProps }: AppProps) {
      return (
          <ChainProvider
            chains={chains}
            assetLists={assets}
            wallets={[...existingWallets, ...tailwindWallets]}
            // ...
          >
            <Component {...pageProps} />
          </ChainProvider>
      );
    }
     
    export default MyCosmosApp;
    ```
  </Step>

  <Step title="Done!">
    Tailwind is now supported! To use our 1-click source funds and gas
    API, please follow the next section.
  </Step>
</Steps>
