├── tailwind-v3 ├── avatar │ ├── default-avatar.html │ ├── square-avatar.html │ ├── stacked-avatars.html │ ├── avatar-with-border.html │ ├── avatar-with-status.html │ └── avatar-with-initials.html ├── link │ ├── default-link.html │ ├── link-within-text.html │ ├── button-link.html │ └── link-with-icon.html ├── spinner │ ├── default-spinner.html │ └── spinner-color-variants.html ├── progress │ ├── progress-bar-default.html │ ├── progress-bar-label-inside.html │ ├── progress-bar-label-outside.html │ ├── progress-bar-multiple.html │ ├── progress-bar-gradient.html │ └── progress-bar-color-variants.html ├── skeleton │ ├── profile-skeleton.html │ ├── default-skeleton.html │ └── image-skeleton.html ├── kbd │ ├── kbd-within-text.html │ ├── number-keys.html │ ├── function-keys.html │ └── frequently-used-keys.html ├── text-area │ ├── default-textarea.html │ └── textarea-states.html ├── text-input │ ├── default-text-input.html │ ├── input-with-mask.html │ ├── search-input.html │ ├── text-input-states.html │ └── password-input.html ├── breadcrumbs │ ├── breadcrumb-with-slash.html │ ├── breadcrumb-with-chevron.html │ └── breadcrumb-with-icon.html ├── tooltip │ ├── default-tooltip.html │ ├── tooltip-with-description.html │ └── click-tooltip.html ├── file-input │ ├── default-file-input.html │ ├── file-input-with-helper-text.html │ ├── file-input-with-drag-and-drop.html │ └── file-input-states.html ├── banner │ ├── simple-banner.html │ ├── fixed-banner.html │ ├── banner-with-button.html │ └── cookie-banner.html ├── range │ ├── default-range-slider.html │ ├── range-slider-with-value.html │ ├── range-slider-with-icons.html │ └── range-slider-with-ticks.html ├── card │ ├── default-card.html │ ├── horizontal-card.html │ ├── pricing-card.html │ ├── card-with-button.html │ └── testimonial-card.html ├── radio │ ├── radio-with-description.html │ ├── default-radio.html │ └── radio-with-container.html ├── select │ ├── default-select.html │ ├── select-with-dependant.html │ └── select-states.html ├── toggle │ ├── default-toggle.html │ └── toggle-with-container.html ├── pagination │ ├── pagination-with-next-preview.html │ ├── default-pagination.html │ └── pagination-with-ellipsis.html ├── chat-bubble │ ├── default-chat-bubble.html │ ├── chat-bubble-with-timestamp.html │ ├── typing-indicator.html │ └── chat-bubble-with-avatar.html ├── checkbox │ ├── default-checkbox.html │ ├── checkbox-with-container.html │ ├── checkbox-with-description.html │ └── checkbox-with-custom-icon.html ├── badge │ ├── notification-badge.html │ ├── default-badge.html │ ├── animating-notification-badge.html │ ├── soft-color-badge.html │ └── badge-with-indicator.html ├── table │ ├── default-table.html │ ├── table-with-action.html │ └── striped-table.html ├── rating │ ├── emoji-rating.html │ └── default-rating.html ├── steps │ ├── default-steps.html │ ├── steps-with-labels.html │ └── vertical-steps.html ├── counter │ ├── split-counter.html │ └── default-counter.html ├── alert │ └── alert-with-list.html ├── modal │ ├── video-modal.html │ ├── modal-backdrop-style.html │ ├── modal-placement.html │ ├── default-modal.html │ └── modal-transition.html ├── tabs │ └── default-tabs.html ├── dropdowns │ ├── dropdown-with-click.html │ ├── dropdown-with-hover.html │ └── dropdown-with-divider.html ├── navbar │ ├── default-navbar.html │ └── with-call-to-action.html ├── buttons │ ├── ghost-button.html │ ├── default-button.html │ └── outline-button.html └── carousel │ ├── carousel-with-touch.html │ └── carousel-with-fixed-aspect-ratio.html ├── LICENSE └── README.md /tailwind-v3/avatar/default-avatar.html: -------------------------------------------------------------------------------- 1 | Rounded avatar 2 | -------------------------------------------------------------------------------- /tailwind-v3/avatar/square-avatar.html: -------------------------------------------------------------------------------- 1 | Rounded avatar -------------------------------------------------------------------------------- /tailwind-v3/link/default-link.html: -------------------------------------------------------------------------------- 1 | Read if bored 2 | -------------------------------------------------------------------------------- /tailwind-v3/link/link-within-text.html: -------------------------------------------------------------------------------- 1 |

Follow us on social media and become our virtual BFF. We promise not to send cat videos (just kidding, we totally will).

2 | -------------------------------------------------------------------------------- /tailwind-v3/link/button-link.html: -------------------------------------------------------------------------------- 1 | I'm a link 2 | -------------------------------------------------------------------------------- /tailwind-v3/spinner/default-spinner.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /tailwind-v3/link/link-with-icon.html: -------------------------------------------------------------------------------- 1 |

Find out more about our company 2 | 5 |

6 | -------------------------------------------------------------------------------- /tailwind-v3/progress/progress-bar-default.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
-------------------------------------------------------------------------------- /tailwind-v3/skeleton/profile-skeleton.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 |
7 | loading 8 |
9 | -------------------------------------------------------------------------------- /tailwind-v3/skeleton/default-skeleton.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | loading 7 |
8 | -------------------------------------------------------------------------------- /tailwind-v3/kbd/kbd-within-text.html: -------------------------------------------------------------------------------- 1 |

To Tab or to Space that's the question!

2 | -------------------------------------------------------------------------------- /tailwind-v3/text-area/default-textarea.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /tailwind-v3/text-input/default-text-input.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /tailwind-v3/text-input/input-with-mask.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /tailwind-v3/breadcrumbs/breadcrumb-with-slash.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /tailwind-v3/progress/progress-bar-label-inside.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
-------------------------------------------------------------------------------- /tailwind-v3/tooltip/default-tooltip.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /tailwind-v3/file-input/default-file-input.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /tailwind-v3/skeleton/image-skeleton.html: -------------------------------------------------------------------------------- 1 |
2 | 7 | loading 8 |
9 | -------------------------------------------------------------------------------- /tailwind-v3/banner/simple-banner.html: -------------------------------------------------------------------------------- 1 |
2 |

Limited Time Offer! Explore exclusive deals & savings

3 | 8 |
-------------------------------------------------------------------------------- /tailwind-v3/file-input/file-input-with-helper-text.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | PNG, JPG, WebP - Max 5MB 5 |
6 | -------------------------------------------------------------------------------- /tailwind-v3/progress/progress-bar-label-outside.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Progress 4 | 5 |
6 |
7 |
8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /tailwind-v3/banner/fixed-banner.html: -------------------------------------------------------------------------------- 1 |
2 |

Limited Time Offer! Explore exclusive deals & savings

3 | 8 |
-------------------------------------------------------------------------------- /tailwind-v3/avatar/stacked-avatars.html: -------------------------------------------------------------------------------- 1 |
2 | Rounded avatar 4 | Rounded avatar 6 | Rounded avatar 8 | Rounded avatar 10 |
-------------------------------------------------------------------------------- /tailwind-v3/range/default-range-slider.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | -------------------------------------------------------------------------------- /tailwind-v3/avatar/avatar-with-border.html: -------------------------------------------------------------------------------- 1 | 2 | Rounded avatar 3 | 4 | 5 | Rounded avatar 6 | 7 | 8 | Rounded avatar 9 | 10 | 11 | Rounded avatar 12 | 13 | -------------------------------------------------------------------------------- /tailwind-v3/text-input/search-input.html: -------------------------------------------------------------------------------- 1 |
2 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /tailwind-v3/tooltip/tooltip-with-description.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 7 |
8 | -------------------------------------------------------------------------------- /tailwind-v3/tooltip/click-tooltip.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /tailwind-v3/progress/progress-bar-multiple.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
-------------------------------------------------------------------------------- /tailwind-v3/card/default-card.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | a penguin robot talking with a human 4 |
5 |
6 | Features 7 |

Penguai can teach you Javascript

8 |

9 | Learning JavaScript doesn't need to be difficult. Our penguin AI 10 | robot can learn how much you know and will go at your speed. 11 | Although Penguai is small, he's got a mighty big CPU. 12 |

13 |
14 |
-------------------------------------------------------------------------------- /tailwind-v3/breadcrumbs/breadcrumb-with-chevron.html: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Salar Houshvand 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /tailwind-v3/radio/radio-with-description.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |
6 | For macOS Big Sur and higher 7 |
8 | -------------------------------------------------------------------------------- /tailwind-v3/select/default-select.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 12 |
13 | -------------------------------------------------------------------------------- /tailwind-v3/banner/banner-with-button.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Get Fit Anywhere, Anytime 💪

4 | 5 |
6 | 11 |
-------------------------------------------------------------------------------- /tailwind-v3/toggle/default-toggle.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /tailwind-v3/pagination/pagination-with-next-preview.html: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /tailwind-v3/chat-bubble/default-chat-bubble.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | Penguin UI 5 |
6 | Hi there! How can I assist you today? 7 |
8 |
9 | 10 | 11 |
12 | I accidentally deleted some important files. Can they be recovered? 13 |
14 | 15 | 16 |
17 | Penguin UI 18 |
19 | I'm sorry to hear that. Let me guide you through the process to resolve it. Could you please provide your username? 20 |
21 |
22 |
23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Penguin UI 2 | 3 | > **Warning**: This is the old version of Penguin UI components compatible with Tailwind CSS v3.4. For new components with more variants, please visit [penguinui.com](https://www.penguinui.com/). 4 | 5 | A collection of beautifully designed UI components with **Tailwind CSS** and **Alpine JS**. 6 | [Check the main website](https://www.penguinui.com/). 7 | 8 | 9 | 10 | ## Getting Started 11 | 12 | To use **Penguin UI**, you simply copy and paste the code from our website; therefore, Penguin UI doesn't require any installation or npm package. However, it has two main dependencies: 13 | 14 | - **Tailwind CSS**: V3.4 15 | - **Alpine JS**: Some interactive components require the latest version of Alpine JS (currently V3) to function properly. 16 | 17 | 18 | 19 | ## Installing Tailwind CSS 20 | 21 | There are various ways to install Tailwind CSS. Please refer to [Tailwind's documentation](https://tailwindcss.com/docs/installation) to find the best installation method for your project. 22 | 23 | 24 | 25 | ## Installing Alpine JS 26 | 27 | The easiest way to add Alpine JS to your project is to include it with a ` 33 | 34 | -------------------------------------------------------------------------------- /tailwind-v3/toggle/toggle-with-container.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /tailwind-v3/file-input/file-input-with-drag-and-drop.html: -------------------------------------------------------------------------------- 1 |
2 | Cover Picture 3 |
4 | 7 |
8 | 12 | or drag and drop here 13 |
14 | PNG, JPG, WebP - Max 5MB 15 |
16 |
17 | -------------------------------------------------------------------------------- /tailwind-v3/checkbox/default-checkbox.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /tailwind-v3/chat-bubble/chat-bubble-with-timestamp.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | Penguin UI 5 |
6 | Hi there! How can I assist you today? 7 |
8 | 11:32 AM 9 |
10 | 11 | 12 |
13 | I accidentally deleted some important files. Can they be recovered? 14 | 11:34 AM 15 |
16 | 17 | 18 |
19 | Penguin UI 20 |
21 | I'm sorry to hear that. Let me guide you through the process to resolve it. Could you please provide your username? 22 |
23 | 11:35 AM 24 |
25 |
26 | -------------------------------------------------------------------------------- /tailwind-v3/badge/notification-badge.html: -------------------------------------------------------------------------------- 1 | 8 | 9 | 15 | -------------------------------------------------------------------------------- /tailwind-v3/breadcrumbs/breadcrumb-with-icon.html: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /tailwind-v3/range/range-slider-with-value.html: -------------------------------------------------------------------------------- 1 |
2 | 5 | 6 | 7 | 8 |
-------------------------------------------------------------------------------- /tailwind-v3/checkbox/checkbox-with-container.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /tailwind-v3/table/default-table.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
CustomerIDNameEmailMembership
2335Alice Brownalice.brown@gmail.comSilver
2338Bob Johnsonjohnson.bob@outlook.comGold
2342Sarah Adamss.adams@gmail.comGold
32 |
33 | -------------------------------------------------------------------------------- /tailwind-v3/checkbox/checkbox-with-description.html: -------------------------------------------------------------------------------- 1 |
2 | 11 | You only gonna get good news, promise. 12 |
13 | -------------------------------------------------------------------------------- /tailwind-v3/card/horizontal-card.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | a men wearing VR goggles 5 |
6 | 7 |
8 | Artificial Intelligence 9 |

AI-Powered VR Goggles Redefine Reality: Augmented Vision for Al

10 |

11 | Experience the next level of augmented reality with smart 12 | goggles integrating cutting-edge AI for seamless interaction 13 | with the world around you. 14 |

15 | 16 | Read full story 17 | 20 | 21 |
22 |
-------------------------------------------------------------------------------- /tailwind-v3/card/pricing-card.html: -------------------------------------------------------------------------------- 1 |
2 | TOP CHOICE 3 |

Premium

4 |

Best tools for productivity

5 | $8.99 6 | Per month 7 |

Features

8 | 16 | 17 |
-------------------------------------------------------------------------------- /tailwind-v3/badge/default-badge.html: -------------------------------------------------------------------------------- 1 | 2 | Bagde 3 | 4 | 5 | Bagde 6 | 7 | 8 | Bagde 9 | 10 | 11 | Bagde 12 | 13 | 14 | Bagde 15 | 16 | 17 | Bagde 18 | 19 | 20 | Bagde 21 | 22 | 23 | Bagde 24 | 25 | -------------------------------------------------------------------------------- /tailwind-v3/badge/animating-notification-badge.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /tailwind-v3/avatar/avatar-with-status.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | Rounded avatar 4 | 5 | 6 |
7 | 8 | 9 |
10 | Rounded avatar 11 | 12 | 13 |
14 | 15 | 16 |
17 | Rounded avatar 18 | 19 | 20 |
21 | 22 | 23 |
24 | Rounded avatar 25 | 26 | 27 |
28 | 29 | 30 |
31 | Rounded avatar 32 | 33 | 34 |
35 | 36 | -------------------------------------------------------------------------------- /tailwind-v3/card/card-with-button.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | view of a coastal Mediterranean village on a hillside, with small boats in the water. 4 |
5 |
6 |
7 | 11 | Europe 12 |
13 |

Mediterranean Escape

14 |

15 | Relax under the sun, savor delicious cuisine, and create 16 | memories that last a lifetime. Book your getaway now. 17 |

18 | 19 |
20 |
-------------------------------------------------------------------------------- /tailwind-v3/avatar/avatar-with-initials.html: -------------------------------------------------------------------------------- 1 | 2 | JS 3 | 4 | 5 | JS 6 | 7 | 8 | JS 9 | 10 | 11 | JS 12 | 13 | 14 | JS 15 | 16 | 17 | JS 18 | 19 | 20 | JS 21 | 22 | 23 | JS 24 | 25 | -------------------------------------------------------------------------------- /tailwind-v3/pagination/default-pagination.html: -------------------------------------------------------------------------------- 1 | 25 | -------------------------------------------------------------------------------- /tailwind-v3/rating/emoji-rating.html: -------------------------------------------------------------------------------- 1 |
2 | 7 | 8 | 13 | 14 | 19 | 20 | 25 | 26 | 31 |
32 | -------------------------------------------------------------------------------- /tailwind-v3/text-input/text-input-states.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 9 | 10 | Error: Name field is required 11 |
12 | 13 | 14 |
15 | 21 | 22 |
23 | -------------------------------------------------------------------------------- /tailwind-v3/banner/cookie-banner.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |

5 | 6 | Cookie Time! 7 |

8 |
9 | 10 | 11 |
12 |

13 | We use cookies to make your experience sweet and crispy. For more information, please read our Privacy Policy 14 |

15 |
16 | 17 | 18 |
19 | 20 | 21 |
22 |
-------------------------------------------------------------------------------- /tailwind-v3/text-area/textarea-states.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 9 | 10 | Error: Please add some comments to your evaluation 11 |
12 | 13 | 14 |
15 | 21 | 22 |
23 | -------------------------------------------------------------------------------- /tailwind-v3/text-input/password-input.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 14 |
15 |
16 | -------------------------------------------------------------------------------- /tailwind-v3/chat-bubble/typing-indicator.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | avatar 5 |
6 | Penguin UI 7 |
8 | Hi there! How can I assist you today? 9 |
10 | 11:32 AM 11 |
12 |
13 | 14 | 15 |
16 |
17 | I accidentally deleted some important files. Can they be recovered? 18 | 11:34 AM 19 |
20 | JS 21 |
22 | 23 | 24 |
25 | avatar 26 |
27 | 28 | 29 | 30 |
31 |
32 |
33 | -------------------------------------------------------------------------------- /tailwind-v3/range/range-slider-with-icons.html: -------------------------------------------------------------------------------- 1 |
2 | 5 | 6 | 7 | 10 |
-------------------------------------------------------------------------------- /tailwind-v3/steps/default-steps.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
  1. 4 |
    5 | 6 | 9 | completed 10 | 11 |
    12 |
  2. 13 | 14 |
  3. 15 | 16 |
    17 | 2 18 |
    19 |
  4. 20 |
  5. 21 | 22 |
    23 | 3 24 |
    25 |
  6. 26 |
  7. 27 | 28 |
    29 | 4 30 |
    31 |
  8. 32 |
33 | -------------------------------------------------------------------------------- /tailwind-v3/chat-bubble/chat-bubble-with-avatar.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | avatar 5 |
6 | Penguin UI 7 |
8 | Hi there! How can I assist you today? 9 |
10 | 11:32 AM 11 |
12 |
13 | 14 | 15 |
16 |
17 | I accidentally deleted some important files. Can they be recovered? 18 | 11:34 AM 19 |
20 | JS 21 |
22 | 23 | 24 |
25 | avatar 26 |
27 | Penguin UI 28 |
29 | I'm sorry to hear that. Let me guide you through the process to resolve it. Could you please provide your username? 30 |
31 | 11:32 AM 32 |
33 |
34 |
35 | -------------------------------------------------------------------------------- /tailwind-v3/counter/split-counter.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 9 | 10 | 15 |
16 |
17 | -------------------------------------------------------------------------------- /tailwind-v3/file-input/file-input-states.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 9 | 10 | Error: Please choose a file for upload 11 |
12 | 13 | 14 |
15 | 21 | 22 |
23 | -------------------------------------------------------------------------------- /tailwind-v3/counter/default-counter.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 9 | 10 | 15 |
16 |
17 | -------------------------------------------------------------------------------- /tailwind-v3/badge/soft-color-badge.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Bagde 4 | 5 | 6 | 7 | 8 | Bagde 9 | 10 | 11 | 12 | 13 | Bagde 14 | 15 | 16 | 17 | 18 | Bagde 19 | 20 | 21 | 22 | 23 | Bagde 24 | 25 | 26 | 27 | 28 | Bagde 29 | 30 | 31 | 32 | 33 | Bagde 34 | 35 | 36 | 37 | 38 | Bagde 39 | 40 | 41 | -------------------------------------------------------------------------------- /tailwind-v3/table/table-with-action.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
CustomerIDNameEmailMembership
2335Alice Brownalice.brown@gmail.com
2338Bob Johnsonjohnson.bob@outlook.com
2342Sarah Adamss.adams@gmail.com
32 |
33 | -------------------------------------------------------------------------------- /tailwind-v3/kbd/number-keys.html: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | 5 | 2 6 | 7 | 8 | 3 9 | 10 | 11 | 4 12 | 13 | 14 | 5 15 | 16 | 17 | 6 18 | 19 | 20 | 7 21 | 22 | 23 | 8 24 | 25 | 26 | 9 27 | 28 | 29 | 0 30 | 31 | 32 | -------------------------------------------------------------------------------- /tailwind-v3/pagination/pagination-with-ellipsis.html: -------------------------------------------------------------------------------- 1 | 32 | -------------------------------------------------------------------------------- /tailwind-v3/steps/steps-with-labels.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
  1. 4 |
    5 | 6 | 9 | completed 10 | 11 | 12 |
    13 |
  2. 14 | 15 |
  3. 16 | 17 |
    18 | 2 19 | 20 |
    21 |
  4. 22 |
  5. 23 | 24 |
    25 | 3 26 | 27 |
    28 |
  6. 29 |
  7. 30 | 31 |
    32 | 4 33 | 34 |
    35 |
  8. 36 |
37 | -------------------------------------------------------------------------------- /tailwind-v3/steps/vertical-steps.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
  1. 4 |
    5 | 6 | 9 | completed 10 | 11 | 12 |
    13 |
  2. 14 | 15 |
  3. 16 |
    17 |
    18 |
    19 | 2 20 |
    21 | 22 |
    23 |
  4. 24 |
  5. 25 |
    26 |
    27 |
    28 | 3 29 |
    30 | 31 |
    32 |
  6. 33 |
  7. 34 |
    35 |
    36 |
    37 | 4 38 |
    39 | 40 |
    41 |
  8. 42 |
43 | -------------------------------------------------------------------------------- /tailwind-v3/table/striped-table.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 |
CustomerIDNameEmailMembership
2335Alice Brownalice.brown@penguinui.comSilver
2338Bob Johnsonjohnson.bob@penguinui.comGold
2342Sarah Adamss.adams@penguinui.comGold
2345Alex Martinezalex.martinez@penguinui.comGold
2346Ryan Thompsonryan.thompson@penguinui.comSilver
2349Emily Rodriguezemily.rodriguez@penguinui.comGold
50 |
51 | -------------------------------------------------------------------------------- /tailwind-v3/kbd/function-keys.html: -------------------------------------------------------------------------------- 1 | 2 | F1 3 | 4 | 5 | F2 6 | 7 | 8 | F3 9 | 10 | 11 | F4 12 | 13 | 14 | F5 15 | 16 | 17 | F6 18 | 19 | 20 | F7 21 | 22 | 23 | F8 24 | 25 | 26 | F10 27 | 28 | 29 | F11 30 | 31 | 32 | F12 33 | 34 | 35 | -------------------------------------------------------------------------------- /tailwind-v3/radio/default-radio.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |
6 |
7 | 8 | 9 |
10 |
11 | 12 | 13 |
14 |
15 | -------------------------------------------------------------------------------- /tailwind-v3/select/select-with-dependant.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 | 7 | 15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 32 |
33 |
34 | -------------------------------------------------------------------------------- /tailwind-v3/spinner/spinner-color-variants.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 12 | 13 | 14 | 18 | 19 | 20 | 24 | 25 | 26 | 30 | 31 | 32 | 36 | -------------------------------------------------------------------------------- /tailwind-v3/alert/alert-with-list.html: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 40 | 41 | -------------------------------------------------------------------------------- /tailwind-v3/modal/video-modal.html: -------------------------------------------------------------------------------- 1 |
2 | 8 | 26 | -------------------------------------------------------------------------------- /tailwind-v3/progress/progress-bar-gradient.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 |
7 |
8 | 9 |
10 |
11 |
12 | 13 |
14 |
15 |
16 | 17 |
18 |
19 |
20 | 21 |
22 |
23 |
24 | -------------------------------------------------------------------------------- /tailwind-v3/select/select-states.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 9 | 12 | 18 | Error: Please select an operating system 19 | 20 |
21 | 22 | 23 |
24 | 30 | 33 | 38 |
39 | -------------------------------------------------------------------------------- /tailwind-v3/tabs/default-tabs.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 | 7 |
8 |
9 |
Groups tab is selected
10 |
Likes tab is selected
11 |
Comments tab is selected
12 |
Saved tab is selected
13 |
14 |
15 | -------------------------------------------------------------------------------- /tailwind-v3/progress/progress-bar-color-variants.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | 7 | 8 |
9 |
10 |
11 |
12 | 13 | 14 |
15 |
16 |
17 |
18 | 19 | 20 |
21 |
22 |
23 |
24 | 25 | 26 |
27 |
28 |
29 |
30 | 31 | 32 |
33 |
34 |
35 |
36 | 37 | -------------------------------------------------------------------------------- /tailwind-v3/radio/radio-with-container.html: -------------------------------------------------------------------------------- 1 |
2 | 6 | 10 | 14 |
15 | -------------------------------------------------------------------------------- /tailwind-v3/dropdowns/dropdown-with-click.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 9 | 10 | 16 |
17 | -------------------------------------------------------------------------------- /tailwind-v3/navbar/default-navbar.html: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /tailwind-v3/range/range-slider-with-ticks.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | -------------------------------------------------------------------------------- /tailwind-v3/modal/modal-backdrop-style.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 26 | -------------------------------------------------------------------------------- /tailwind-v3/modal/modal-placement.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 26 | -------------------------------------------------------------------------------- /tailwind-v3/modal/default-modal.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 26 | -------------------------------------------------------------------------------- /tailwind-v3/modal/modal-transition.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 26 | -------------------------------------------------------------------------------- /tailwind-v3/badge/badge-with-indicator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Bagde 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Bagde 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Bagde 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | Bagde 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | Bagde 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | Bagde 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | Bagde 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | Bagde 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /tailwind-v3/dropdowns/dropdown-with-hover.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 9 | 10 | 16 |
17 | -------------------------------------------------------------------------------- /tailwind-v3/navbar/with-call-to-action.html: -------------------------------------------------------------------------------- 1 | 33 | -------------------------------------------------------------------------------- /tailwind-v3/buttons/ghost-button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tailwind-v3/carousel/carousel-with-touch.html: -------------------------------------------------------------------------------- 1 |
55 | 56 | 57 | 58 |
59 | 64 |
65 | 66 | 67 |
68 | 71 |
72 |
-------------------------------------------------------------------------------- /tailwind-v3/buttons/default-button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tailwind-v3/kbd/frequently-used-keys.html: -------------------------------------------------------------------------------- 1 | 2 | Tab 3 | 4 | 5 | Shift 6 | 7 | 8 | space 9 | 10 | 11 | Ctrl 12 | 13 | 14 | command 15 | 16 | 17 | alt 18 | 19 | 20 | option 21 | 22 | 23 | Enter 24 | 25 | 26 | Backspace 27 | 28 | 29 | Esc 30 | 31 | 32 | Delete 33 | 34 | 35 | Up 36 | 37 | 38 | Down 39 | 40 | 41 | Left 42 | 43 | 44 | Right 45 | 46 | 47 | Caps Lock 48 | 49 | 50 | -------------------------------------------------------------------------------- /tailwind-v3/buttons/outline-button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tailwind-v3/checkbox/checkbox-with-custom-icon.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 22 | 23 | 24 | 33 | -------------------------------------------------------------------------------- /tailwind-v3/rating/default-rating.html: -------------------------------------------------------------------------------- 1 |
2 | 9 | 10 | 17 | 18 | 25 | 26 | 33 | 34 | 41 |
42 | -------------------------------------------------------------------------------- /tailwind-v3/dropdowns/dropdown-with-divider.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 9 | 10 | 24 |
25 | -------------------------------------------------------------------------------- /tailwind-v3/carousel/carousel-with-fixed-aspect-ratio.html: -------------------------------------------------------------------------------- 1 |
35 | 36 | 37 | 42 | 43 | 44 | 49 | 50 | 51 | 52 |
53 | 58 |
59 | 60 | 61 |
62 | 65 |
66 |
-------------------------------------------------------------------------------- /tailwind-v3/card/testimonial-card.html: -------------------------------------------------------------------------------- 1 |
2 | 5 |

6 | Simply put, this software transformed my workflow! Its intuitive 7 | interface and powerful features make tasks a breeze. A game-changer 8 | for productivity! 9 |

10 | 11 |
12 | 13 |
14 | avatar 15 |
16 |

Bob Johnson

17 | CEO - TechNova 18 |
19 |
20 | 21 |
22 | Rated 4 stars 23 | 26 | 29 | 32 | 35 | 38 |
39 |
40 |
--------------------------------------------------------------------------------