Convert Figma logo to code with AI

tabler logotabler

Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap

37,744
3,940
37,744
78

Top Related Projects

169,947

The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.

18,271

A lightweight and modular front-end framework for developing fast and powerful web interfaces

49,128

Modern CSS framework based on Flexbox

Semantic is a UI component framework based around useful principles from natural language.

A utility-first CSS framework for rapid UI development.

The most advanced responsive front-end framework in the world. Quickly create prototypes and production code for sites that work on any kind of device.

Quick Overview

Tabler is a free and open-source HTML dashboard UI kit built on Bootstrap. It provides a collection of ready-to-use components and templates for creating modern, responsive admin panels, dashboards, and web applications. Tabler focuses on simplicity, flexibility, and ease of use for developers and designers.

Pros

  • Extensive collection of pre-built components and UI elements
  • Fully responsive and mobile-friendly design
  • Regular updates and active community support
  • Customizable and easy to integrate with various backend technologies

Cons

  • Limited advanced features compared to some premium dashboard templates
  • Requires knowledge of Bootstrap for deeper customization
  • Some users may find the design too minimalistic for complex applications

Getting Started

To get started with Tabler, follow these steps:

  1. Download the latest release from the GitHub repository or use a package manager:
npm install @tabler/core
  1. Include the necessary CSS and JavaScript files in your HTML:
<link rel="stylesheet" href="path/to/tabler.min.css">
<script src="path/to/tabler.min.js"></script>
  1. Start using Tabler components in your HTML:
<div class="container">
  <div class="row">
    <div class="col-12">
      <div class="card">
        <div class="card-header">
          <h3 class="card-title">Sample Card</h3>
        </div>
        <div class="card-body">
          <p>This is a sample Tabler card component.</p>
        </div>
      </div>
    </div>
  </div>
</div>

For more detailed instructions and advanced usage, refer to the official Tabler documentation.

Competitor Comparisons

169,947

The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.

Pros of Bootstrap

  • Larger community and ecosystem, with more third-party themes and plugins
  • More extensive documentation and learning resources
  • Better browser compatibility, especially for older versions

Cons of Bootstrap

  • Heavier file size, which can impact page load times
  • More opinionated design, making it harder to create unique-looking websites
  • Steeper learning curve for customization and advanced features

Code Comparison

Tabler button example:

<a href="#" class="btn btn-primary">
  Button
</a>

Bootstrap button example:

<button type="button" class="btn btn-primary">
  Button
</button>

Both frameworks use similar class-based styling approaches, but Tabler tends to favor semantic HTML elements (like <a> for buttons) while Bootstrap often uses more generic elements with additional attributes.

Tabler focuses on providing a clean, modern UI kit with a dashboard-oriented design, while Bootstrap offers a more comprehensive framework for general-purpose web development. Tabler may be preferable for projects requiring a sleek, contemporary look out-of-the-box, whereas Bootstrap's flexibility and extensive documentation make it suitable for a wider range of projects.

18,271

A lightweight and modular front-end framework for developing fast and powerful web interfaces

Pros of UIkit

  • More comprehensive component library with a wider range of UI elements
  • Better documentation and extensive examples for each component
  • Stronger focus on responsive design and mobile-first approach

Cons of UIkit

  • Steeper learning curve due to its extensive feature set
  • Larger file size, which may impact page load times
  • Less customizable design out of the box compared to Tabler

Code Comparison

UIkit:

<div class="uk-card uk-card-default">
    <div class="uk-card-header">
        <h3 class="uk-card-title">Card Title</h3>
    </div>
    <div class="uk-card-body">
        <p>Card content</p>
    </div>
</div>

Tabler:

<div class="card">
    <div class="card-header">
        <h3 class="card-title">Card Title</h3>
    </div>
    <div class="card-body">
        <p>Card content</p>
    </div>
</div>

Both frameworks offer similar card components, but UIkit uses the uk- prefix for its classes, while Tabler uses more generic class names. UIkit's approach may help prevent conflicts with other CSS frameworks or custom styles.

49,128

Modern CSS framework based on Flexbox

Pros of Bulma

  • Lightweight and modular, allowing for easy customization and smaller file sizes
  • Extensive documentation with interactive examples
  • Flexbox-based grid system for modern, responsive layouts

Cons of Bulma

  • Less comprehensive component library compared to Tabler
  • Lacks built-in JavaScript functionality for interactive components
  • May require more custom styling for complex UI elements

Code Comparison

Bulma:

<div class="columns">
  <div class="column">
    <div class="card">
      <div class="card-content">
        <p class="title">Card title</p>
        <p class="subtitle">Card subtitle</p>
      </div>
    </div>
  </div>
</div>

Tabler:

<div class="row">
  <div class="col-md-6">
    <div class="card">
      <div class="card-body">
        <h3 class="card-title">Card title</h3>
        <p class="card-subtitle">Card subtitle</p>
      </div>
    </div>
  </div>
</div>

Both frameworks offer clean, readable HTML structures for creating responsive layouts and card components. Bulma uses class names like "columns" and "column" for its grid system, while Tabler uses Bootstrap-like "row" and "col-md-6" classes. Bulma's approach to card content is slightly more semantic with "card-content", whereas Tabler uses "card-body".

Semantic is a UI component framework based around useful principles from natural language.

Pros of Semantic-UI

  • More comprehensive component library with a wider range of UI elements
  • Highly customizable theming system using LESS
  • Strong community support and extensive documentation

Cons of Semantic-UI

  • Larger file size and potential performance impact
  • Steeper learning curve due to its extensive features
  • Less frequent updates and maintenance compared to Tabler

Code Comparison

Semantic-UI button example:

<button class="ui primary button">
  Follow
</button>

Tabler button example:

<a href="#" class="btn btn-primary">
  Follow
</a>

Both frameworks offer clean and readable syntax for creating UI components. Semantic-UI uses more descriptive class names, while Tabler follows a Bootstrap-like approach.

Semantic-UI provides a more extensive set of pre-built components and a powerful theming system, making it suitable for complex projects with unique design requirements. However, this comes at the cost of a larger file size and potentially steeper learning curve.

Tabler, on the other hand, offers a lighter-weight solution with a focus on admin dashboards and web applications. It provides a modern design out of the box and is easier to get started with for developers familiar with Bootstrap-like frameworks.

A utility-first CSS framework for rapid UI development.

Pros of Tailwind CSS

  • Highly customizable and flexible utility-first CSS framework
  • Smaller file sizes due to purging unused styles in production
  • Rapid development with pre-defined utility classes

Cons of Tailwind CSS

  • Steeper learning curve for developers new to utility-first CSS
  • Can lead to longer class names and potentially cluttered HTML
  • Requires additional configuration for optimal performance

Code Comparison

Tailwind CSS:

<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
  Button
</button>

Tabler:

<button class="btn btn-primary">
  Button
</button>

Additional Notes

Tailwind CSS focuses on providing low-level utility classes, allowing developers to build custom designs quickly. Tabler, on the other hand, offers pre-designed components and a more traditional CSS framework approach.

Tailwind CSS requires more setup and configuration but provides greater flexibility in design. Tabler is easier to get started with and offers a cohesive design system out of the box.

Both projects have active communities and regular updates, making them viable options for modern web development projects.

The most advanced responsive front-end framework in the world. Quickly create prototypes and production code for sites that work on any kind of device.

Pros of Foundation

  • More mature and established framework with a larger community
  • Extensive documentation and learning resources
  • Highly customizable with Sass variables and mixins

Cons of Foundation

  • Steeper learning curve for beginners
  • Larger file size, which may impact page load times
  • Less frequent updates compared to Tabler

Code Comparison

Foundation:

@include foundation-global-styles;
@include foundation-grid;
@include foundation-typography;
@include foundation-button;
@include foundation-forms;

Tabler:

<link href="tabler.min.css" rel="stylesheet"/>
<script src="tabler.min.js"></script>

Foundation uses a modular approach with Sass mixins, allowing developers to include only the components they need. Tabler, on the other hand, provides a simpler setup with pre-compiled CSS and JavaScript files.

Both frameworks offer responsive grid systems, UI components, and customization options. Foundation excels in flexibility and advanced features, while Tabler focuses on modern design and ease of use. The choice between the two depends on project requirements, developer experience, and desired level of customization.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

A premium and open source dashboard template with a responsive and high-quality UI.

A premium and open source dashboard template with a responsive and high-quality UI.

NPM version NPM Downloads Tabler preview License Tabler preview Test build GitHub stars

🔎 Preview

Tabler is fully responsive and compatible with all modern browsers. Thanks to its modern and user-friendly design you can create a fully functional interface that users will love! Choose the layouts and components you need and customize them to make your design consistent and eye-catching. Every component has been created with attention to detail to make your interface beautiful! Show me a demo

Tabler preview

🚀 Features

We've created this admin panel for everyone who wants to create templates based on our pre-made components. Our mission is to deliver a user-friendly, clear and easy administration panel that can be used by both simple websites and sophisticated systems. The only requirement is basic HTML and CSS (and some Liquid) knowledge — as a reward, you'll be able to manage and visualize different types of data in the easiest possible way!

  • Responsive: With the support for mobile, tablet and desktop displays, it doesn’t matter what device you’re using. Tabler is responsive in all major browsers.
  • Cross Browser: Our theme works perfectly with the latest Chrome, Firefox+, Safari, Opera, Edge and mobile browsers. We work hard to provide continuous support for them.
  • HTML5 & CSS3: We use only modern web technologies, such as HTML5 and CSS3. Our theme includes some subtle CSS3 animations, which will help you attract attention.
  • Clean Code: We followed Bootstrap’s guidelines carefully to make your integration as easy as possible. All code is handwritten and W3C valid.
  • Demo pages: Tabler features over 20 individual pages using various components, which gives you the freedom to choose and combine. All components can vary in color and styling that you can easily modify using Sass. Sky is the limit!
  • Single Page Application versions: Tabler React has React components for Tabler.

📖 Documentation

Documentation is available as a part of Tabler preview: https://tabler.io/docs/

To run the documentation site locally, follow instructions in the Documentation README.

🪴 Project Activity

Alt

💕 Sponsor Tabler

Sponsor Tabler

Sponsors

Support this project by becoming a sponsor. Your logo will show up in this README with a link to your website. Become a sponsor!

📦 Setup environment

To use our build system and run our documentation locally, you'll need a copy of Tabler's source files. Follow the steps below:

  1. Install Node.js, which we use to manage our dependencies.
  2. Navigate to the root /tabler directory and run pnpm install to install our local dependencies listed in package.json.
  3. Install Ruby - the recommended version is 2.7.6.
  4. Install Bundler with gem install bundler and finally run bundle install. It will install all Ruby dependencies, such as Jekyll and plugins.

OSX users:

  1. NPM pnpm install
  2. install Ruby (2.5.* recommended) brew install ruby @2.5
  3. install bundler gem install bundler
  4. install bundle install
  • if bundler get any errors try
sudo rm -rf /Library/Developer/CommandLineTools
sudo xcode-select --install
  1. Run NPM npm run start

Windows users:

  1. Install Git in C:\Program Files\git\bin directory and run npm config set script-shell "C:\\Program Files\\git\\bin\\bash.exe" to change the default shell.
  2. Install Ruby+Devkit - the recommended version is 2.7.6.
  3. Read guide to get Jekyll up and running without problems.

Once you complete the setup, you'll be able to run the various commands provided from the command line.

Build locally

You need to have pnpm and bundler installed.

  1. From the root /tabler directory, run installation in the command line:
  • pnpm install
  • bundler install
  1. Then execute pnpm run start-plugins to start up the application stack.
  2. Open http://localhost:3000 in your browser, and voilà.
  3. Any change in the /src directory will build the application and refresh the page.

Note: Run pnpm run build for reforms a one off build application without refresh. Open http://localhost:3001 to configure the Web server.

Installation

Tabler is distributed via npm.

npm install --save @tabler/core

Running with Docker

Plain Docker

If you don't want to install node/npm/ruby and the dependencies on your local environment, you can use the provided Dockerfile to build a docker image. This Dockerfile is provided as an example to spin-up a container running Tabler.

Example of how to use this image:

  1. Build the tabler image : docker build -t tabler .
  2. Run the tabler image while mounting the src directory as well as the _config.yml file into the container.

Don't forget to expose the port 3000 so you can browse the website locally. You can also expose the port 3001 to have access to BrowserSync

docker run -p 3000:3000 -p 3001:3001 -v $(pwd)/src:/app/src -v $(pwd)/_config.yml:/app/_config.yml tabler

Now open your browser to http://localhost:3000. Edit anything in the src/ folder and watch your browser refresh the page after it has been rebuilt.

Docker Compose

You can also use the docker compose config from this repo. Use docker compose build && docker compose up or docker compose up --build to build and start the container. Edit anything in the src/ folder the same way as with plain docker and access the same URLs and ports in your browser.

CDN support

All files included in @tabler/core npm package are available over a CDN.

Javascript

<script src="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/js/tabler.min.js"></script>

Styles

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/css/tabler.min.css">

Feature requests

https://tabler.canny.io/feature-requests

Bugs and feature requests

Found a bug or have a feature request? Please open a new issue.

🤓 Creators

Paweł Kuna

👨‍🚀 Contributors

This project exists thanks to all the people who contribute.

🌸 Backers

Thank you to all our backers! 🙏 Become a backer

License

See the LICENSE file.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

NPM DownloadsLast 30 Days