Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tabler | 34,251 | 16 | 5 | a day ago | 16 | April 04, 2019 | 52 | mit | HTML | |
Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap | ||||||||||
Ngx Admin | 24,484 | 7 | a month ago | 11 | July 19, 2017 | 468 | mit | TypeScript | ||
Customizable admin dashboard template based on Angular 10+ | ||||||||||
Bootswatch | 14,088 | 1,604 | 157 | a month ago | 39 | September 15, 2022 | 37 | mit | JavaScript | |
Themes for Bootstrap | ||||||||||
Selectize.js | 12,933 | 600 | 105 | 16 days ago | 7 | July 12, 2018 | 51 | apache-2.0 | SCSS | |
Selectize is the hybrid of a textbox and <select> box. It's jQuery based, and it has autocomplete and native-feeling keyboard navigation; useful for tagging, contact lists, etc. | ||||||||||
Coreui Free Bootstrap Admin Template | 11,566 | 3 | 1 | 23 days ago | 3 | May 25, 2017 | 8 | mit | HTML | |
Free Bootstrap Admin & Dashboard Template | ||||||||||
Startbootstrap | 7,146 | 3 years ago | July 20, 2014 | 2 | other | HTML | ||||
A library of free and open source Bootstrap themes and templates | ||||||||||
Bootstra.386 | 6,247 | 6 months ago | 1 | May 09, 2018 | 60 | apache-2.0 | HTML | |||
A vintage 1980s DOS inspired Twitter Bootstrap theme | ||||||||||
Jquery Ui Bootstrap | 5,486 | 4 | 5 years ago | March 15, 2015 | 49 | HTML | ||||
A jQuery UI theme based on Twitter Bootstrap | ||||||||||
Bootstrap Fileinput | 5,258 | 1,182 | 35 | 3 months ago | 89 | August 17, 2022 | 14 | other | JavaScript | |
An enhanced HTML 5 file input for Bootstrap 5.x/4.x./3.x with file preview, multiple selection, and more features. | ||||||||||
Jekyll Theme Chirpy | 4,138 | 9 days ago | 37 | September 23, 2022 | 19 | mit | HTML | |||
A minimal, responsive and feature-rich Jekyll theme for technical writing. |
A collection of open source themes for Bootstrap
View Bootswatch themes »
Report bug
·
Request feature
·
Blog
There are a few different ways you can integrate Bootswatch into your project.
Download the bootstrap.min.css
file associated with a theme and replace
Bootstrap's default stylesheet. You must still include Bootstrap's JavaScript
file to have functional dropdowns, modals, etc.
You can use the themes via CDN at jsDelivr.
If you're using Sass (SCSS) in your project, you can
import the _variables.scss
and _bootswatch.scss
files for a given theme.
This method allows you to override theme variables.
// Your variable overrides go here, e.g.:
// $h1-font-size: 3rem;
@import "~bootswatch/dist/[theme]/variables";
@import "~bootstrap/scss/bootstrap";
@import "~bootswatch/dist/[theme]/bootswatch";
Make sure to import Bootstrap's bootstrap.scss
in between _variables.scss
and _bootswatch.scss
!
You can install as a package with the command npm install bootswatch
.
create-react-app
, or similar bundler)Modern JavaScript bundlers (webpack, parcel, rollup) support import
ing CSS from JS files. This can make it easier to deploy various 1st and 3rd party assets predictably. Note: There are tradeoffs to the following method, research your tooling before deploying to production.
Before continuing, ensure you've run npm install bootswatch
in your local project folder. (Use either npm
or yarn
.)
Add the following import
to your top-level index.js
(or App.js
) file. Add it before any other .css
imports.
import "bootswatch/dist/[theme]/bootstrap.min.css";
// TODO: Note: Replace ^[theme]^ (examples: darkly, slate, cosmo, spacelab, and superhero. See https://bootswatch.com for current theme names.)
Here's an example of updated imports
in App.js
to use "slate" theme (using a create-react-app
fresh project.)
import React from 'react';
import logo from './logo.svg';
import 'bootswatch/dist/slate/bootstrap.min.css'; // Added this 💥
import './App.css';
function App() {
...
In your Ruby project, you can access the latest version of each theme by adding
the following to your Gemfile and running bundle install
:
gem "bootswatch", github: "thomaspark/bootswatch"
Each theme directory is then accessible via the path
"#{Gem.loaded_specs["bootswatch"].load_paths.first}/[theme]"
.
Ruby on Rails users can add the following to an initializer (e.g.
config/initializers/bootswatch.rb
):
Rails.application.config.assets.paths += Gem.loaded_specs["bootswatch"].load_paths
And thus be able to import themes via Sass like so:
@import "[theme]/variables";
@import "~bootstrap/scss/bootstrap";
@import "[theme]/bootswatch";
A simple JSON API is available for integrating your platform with Bootswatch. More info can be found on the Help page.
Bootswatch is open source and you’re welcome to modify the themes.
Each theme consists of two SASS files. _variables.scss
, which is included by default in Bootstrap, allows you to customize the settings. _bootswatch.scss
introduces more extensive structural changes.
Check out the Help page for more details on building your own theme.
It's through your contributions that Bootswatch will continue to improve. You can contribute in several ways.
Issues: Provide a detailed report of any bugs you encounter and open an issue on GitHub.
Documentation: If you'd like to fix a typo or beef up the docs, you can fork the project, make your changes, and submit a pull request.
Code: Make a fix and submit it as a pull request. When making changes, it's important to keep the CSS and SASS versions in sync. To do this, be sure to edit the SASS source files for the particular theme first, then run the tasks grunt swatch
to build the CSS.
Donation: Donations are gratefully accepted via GitHub and PayPal.
Thomas Park
Mark Otto and Jacob Thornton for Bootstrap.
Jenil Gogari for his contributions to the Flatly theme.
James Taylor for cors-lite.
Corey Sewell for SASS conversion.
Copyright 2014-2021 Thomas Park
Code released under the MIT License.