├── dummy.css ├── .editorconfig ├── .github └── CONTRIBUTING.md └── readme.md /dummy.css: -------------------------------------------------------------------------------- 1 | /* Annotate this repository as a CSS project */ 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = false 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | 4 | ## Goals of this List 5 | * Quality over quantity, i.e. do not add every single framework under the sun 6 | * The frameworks should have a certain maturity and popularity 7 | * Do not add projects that don't have an issue tracker or version control 8 | 9 | 10 | ## Contributing 11 | 12 | * Fork the repository 13 | * Add your suggestion 14 | * Use the template below 15 | * Choose the appropriate category 16 | * Sorting should be done roughly by numbers of stars (or importance) 17 | * Create a pull request 18 | 19 | ``` 20 | - [**TODO**](TODO) - TODO. 21 | ![](https://img.shields.io/github/stars/TODO/TODO.svg?style=social&label=Star) 22 | [Demo](TODO), 23 | [Docs](TODO), 24 | [Repo](TODO) 25 | | #TODO 26 | ``` 27 | 28 | Note that there are two whitespaces after the first line to enforce a line break. 29 | 30 | Adding links to the demo or documentation is optional, but you should add them if they are explicitly provided by the framework. 31 | The last line is used to add information about what CSS preprocessors (if any) are used by the framework. For example, if something only uses CSS, add `#CSS`. If a framework uses CSS, Sass, and Stylus, add `#CSS #Sass #Stylus`. 32 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Awesome CSS Frameworks [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | List of awesome CSS frameworks. 4 | Feel free to [contribute](https://github.com/troxler/awesome-css-frameworks/blob/master/.github/CONTRIBUTING.md). 5 | 6 | **Are you looking for React/Vue/Angular [UI Component Libraries](https://frontaid.ch/web/ui/libraries.html) instead?** 7 | 8 | 9 | ## Contents 10 | - [Base / Reset / Normalize](#base--reset--normalize) 11 | - [Class-less](#class-less) 12 | - [Very Lightweight](#very-lightweight) 13 | - [General Purpose](#general-purpose) 14 | - [Material Design](#material-design) 15 | - [Utility-based](#utility-based) 16 | - [Specialized](#specialized) 17 | - [Stalled Development](#stalled-development) 18 | 19 | 20 | ## Base / Reset / Normalize 21 | 22 | - [**modern-normalize**](https://github.com/sindresorhus/modern-normalize) - Normalize browsers' default style. 23 | ![](https://img.shields.io/github/stars/sindresorhus/modern-normalize.svg?style=social&label=Star) 24 | [Repo](https://github.com/sindresorhus/modern-normalize) 25 | | #CSS 26 | 27 | - [**ress**](https://github.com/filipelinhares/ress) - Modern CSS reset. 28 | ![](https://img.shields.io/github/stars/filipelinhares/ress.svg?style=social&label=Star) 29 | [Repo](https://github.com/filipelinhares/ress) 30 | | #CSS 31 | 32 | - [**Natural Selection**](https://github.com/frontaid/natural-selection) - Collection of best-practice CSS selectors. 33 | ![](https://img.shields.io/github/stars/frontaid/natural-selection.svg?style=social&label=Star) 34 | | #CSS 35 | 36 | 37 | ## Class-less 38 | 39 | Frameworks that use semantic HTML and do not rely on classes. 40 | 41 | - [**Pico.css**](https://picocss.com/) - Elegant styles for all native HTML elements, dark mode automatically enabled. 42 | ![](https://img.shields.io/github/stars/picocss/pico.svg?style=social&label=Star) 43 | [Demo](https://picocss.com/#examples), 44 | [Docs](https://picocss.com/docs/), 45 | [Repo](https://github.com/picocss/pico) 46 | | #SCSS 47 | 48 | - [**MVP.css**](https://andybrewer.github.io/mvp/) - Minimalist stylesheet for HTML elements. 49 | ![](https://img.shields.io/github/stars/andybrewer/mvp.svg?style=social&label=Star) 50 | [Docs](https://andybrewer.github.io/mvp/#docs), 51 | [Repo](https://github.com/andybrewer/mvp/) 52 | | #CSS 53 | 54 | - [**sakura**](https://oxal.org/projects/sakura/) - Minimal classless CSS framework/theme. 55 | ![](https://img.shields.io/github/stars/oxalorg/sakura.svg?style=social&label=Star) 56 | [Demo](https://oxal.org/projects/sakura/demo/), 57 | [Repo](https://github.com/oxalorg/sakura) 58 | | #SCSS 59 | 60 | - [**Simple.css**](https://simplecss.org/) - Lightweight, classless CSS framework. 61 | ![](https://img.shields.io/github/stars/kevquirk/simple.css?style=social&label=Star) 62 | [Demo](https://simplecss.org/demo), 63 | [Docs](https://github.com/kevquirk/simple.css/wiki), 64 | [Repo](https://github.com/kevquirk/simple.css/) 65 | | #CSS 66 | 67 | - [**Tacit**](https://yegor256.github.io/tacit/) - CSS framework for dummies, without classes. 68 | ![](https://img.shields.io/github/stars/yegor256/tacit.svg?style=social&label=Star) 69 | [Repo](https://github.com/yegor256/tacit/) 70 | | #SCSS 71 | 72 | 73 | ## Very Lightweight 74 | 75 | Frameworks that are smaller than ~10KB. 76 | 77 | - [**Pure**](https://purecss.io) - Set of small, responsive CSS modules that you can use in every web project. 78 | ![](https://img.shields.io/github/stars/pure-css/pure.svg?style=social&label=Star) 79 | [Demo](https://purecss.io/layouts/), 80 | [Docs](https://purecss.io/start/), 81 | [Repo](https://github.com/pure-css/pure) 82 | | #CSS 83 | 84 | - [**Picnic CSS**](https://picnicss.com) - Lightweight and beautiful library. 85 | ![](https://img.shields.io/github/stars/franciscop/picnic.svg?style=social&label=Star) 86 | [Demo](https://picnicss.com/tests), 87 | [Docs](https://picnicss.com/documentation), 88 | [Repo](https://github.com/franciscop/picnic) 89 | | #SCSS 90 | 91 | - [**Chota**](https://jenil.github.io/chota/) - Really small CSS framework. 92 | ![](https://img.shields.io/github/stars/jenil/chota.svg?style=social&label=Star) 93 | [Demo](https://raw.githack.com/jenil/chota/master/test/index.html), 94 | [Docs](https://jenil.github.io/chota/#docs), 95 | [Repo](https://github.com/jenil/chota) 96 | | #CSS 97 | 98 | 99 | ## General Purpose 100 | 101 | - [**Bootstrap**](https://getbootstrap.com) - The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web. 102 | ![](https://img.shields.io/github/stars/twbs/bootstrap.svg?style=social&label=Star) 103 | [Demo](https://getbootstrap.com/docs/4.0/examples/), 104 | [Docs](https://getbootstrap.com/docs/4.0/), 105 | [Repo](https://github.com/twbs/bootstrap) 106 | | #SCSS 107 | 108 | - [**Bulma**](https://bulma.io) - Modern CSS framework based on Flexbox. 109 | ![](https://img.shields.io/github/stars/jgthms/bulma.svg?style=social&label=Star) 110 | [Demo](https://bulma.io/expo/), 111 | [Docs](https://bulma.io/documentation/overview/start/), 112 | [Repo](https://github.com/jgthms/bulma) 113 | | #Sass 114 | 115 | - [**Foundation**](https://get.foundation/) - The most advanced responsive front-end framework in the world. 116 | ![](https://img.shields.io/github/stars/zurb/foundation-sites.svg?style=social&label=Star) 117 | [Demo](https://get.foundation/templates.html), 118 | [Docs](https://get.foundation/sites/docs/), 119 | [Repo](https://github.com/foundation/foundation-sites) 120 | | #SCSS 121 | 122 | - [**UIkit**](https://getuikit.com) - Lightweight and modular front-end framework for developing fast and powerful web interfaces. 123 | ![](https://img.shields.io/github/stars/uikit/uikit.svg?style=social&label=Star) 124 | [Demo](https://getuikit.com/v2/showcase/index.html), 125 | [Docs](https://getuikit.com/docs/introduction), 126 | [Repo](https://github.com/uikit/uikit) 127 | | #LESS #SCSS 128 | 129 | - [**Primer**](https://primer.style/) - CSS framework that powers GitHub's front-end design. 130 | ![](https://img.shields.io/github/stars/primer/css.svg?style=social&label=Star) 131 | [Docs](https://primer.style/css/), 132 | [Repo](https://github.com/primer/css) 133 | | #SCSS 134 | 135 | - [**Carbon Components**](https://www.carbondesignsystem.com/) - Component library behind IBM's Carbon Design System. 136 | ![](https://img.shields.io/github/stars/carbon-design-system/carbon-components.svg?style=social&label=Star) 137 | [Docs](https://www.carbondesignsystem.com/components/overview/), 138 | [Repo](https://github.com/carbon-design-system/carbon) 139 | | #SCSS 140 | 141 | - [**U.S. Web Design System**](https://designsystem.digital.gov/) - Components used by U.S. federal government websites. 142 | ![](https://img.shields.io/github/stars/uswds/uswds.svg?style=social&label=Star) 143 | [Docs](https://designsystem.digital.gov/components/overview/), 144 | [Repo](https://github.com/uswds/uswds) 145 | | #SCSS 146 | 147 | - [**Fomantic-UI**](https://fomantic-ui.com/) - Build beautiful websites fast, with concise HTML, intuitive javascript, and simplified debugging. 148 | ![](https://img.shields.io/github/stars/fomantic/fomantic-ui.svg?style=social&label=Star) 149 | [Docs](https://fomantic-ui.com/introduction/getting-started.html), 150 | [Repo](https://github.com/fomantic/fomantic-ui/) 151 | | #LESS 152 | 153 | - [**Blaze UI**](https://www.blazeui.com) - Open source modular toolkit providing great structure for building websites quickly with a scalable and maintainable foundation. 154 | ![](https://img.shields.io/github/stars/BlazeSoftware/atoms.svg?style=social&label=Star) 155 | [Demo](https://www.blazeui.com/components/buttons/), 156 | [Docs](https://www.blazeui.com/getting-started/install/), 157 | [Repo](https://github.com/BlazeSoftware/atoms) 158 | | #SCSS 159 | 160 | - [**Cirrus**](https://cirrus-ui.netlify.app/) - Component and utility centric SCSS framework designed for rapid prototyping. 161 | ![](https://img.shields.io/github/stars/spiderpig86/Cirrus.svg?style=social&label=Star) 162 | [Demo](https://cirrus-ui.netlify.app/getting-started/examples), 163 | [Docs](https://cirrus-ui.netlify.app/getting-started/setup), 164 | [Repo](https://github.com/Spiderpig86/Cirrus) 165 | | #CSS 166 | 167 | - [**Vanilla Framework**](https://vanillaframework.io/) - Simple, extensible CSS framework. Written by the Canonical Web Team. 168 | ![](https://img.shields.io/github/stars/canonical-web-and-design/vanilla-framework.svg?style=social&label=Star) 169 | [Demo](https://vanillaframework.io/docs/examples), 170 | [Docs](https://vanillaframework.io/docs/), 171 | [Repo](https://github.com/canonical/vanilla-framework) 172 | | #SCSS 173 | 174 | - [**PatternFly**](https://www.patternfly.org/) - UI framework for enterprise web applications. 175 | ![](https://img.shields.io/github/stars/patternfly/patternfly.svg?style=social&label=Star) 176 | [Demo](https://www.patternfly.org/patterns/about-patterns), 177 | [Docs](https://www.patternfly.org/get-started/), 178 | [Repo](https://github.com/patternfly/patternfly) 179 | | #SCSS #LESS 180 | 181 | - [**Stacks**](https://stackoverflow.design/) - UI components used by Stack Overflow. 182 | ![](https://img.shields.io/github/stars/StackExchange/Stacks.svg?style=social&label=Star) 183 | [Docs](https://stackoverflow.design/product/develop/using-stacks/), 184 | [Repo](https://github.com/StackExchange/Stacks) 185 | | #LESS 186 | 187 | - [**HiQ**](https://jonathanharrell.github.io/hiq/) - Simple CSS foundation with responsive typography and input styling. 188 | ![](https://img.shields.io/github/stars/jonathanharrell/hiq.svg?style=social&label=Star) 189 | [Docs](https://jonathanharrell.github.io/hiq/guide/), 190 | [Repo](https://github.com/jonathanharrell/hiq/) 191 | | #PostCSS 192 | 193 | 194 | ## Material Design 195 | 196 | - [**Beer CSS**](https://www.beercss.com) - Build material design interfaces in record time without stress for devs. 197 | ![](https://img.shields.io/github/stars/beercss/beercss.svg?style=social&label=Star) 198 | [Repo](https://github.com/beercss/beercss) 199 | | #CSS 200 | 201 | - [**Materialize**](https://materializecss.github.io/materialize/) - Responsive front-end library based on Google's Material Design. 202 | ![](https://img.shields.io/github/stars/materializecss/materialize.svg?style=social&label=Star) 203 | [Docs](https://materializecss.github.io/materialize/getting-started.html), 204 | [Repo](https://github.com/materializecss/materialize) 205 | | #SCSS 206 | 207 | 208 | ## Utility-based 209 | 210 | - [**Tailwind CSS**](https://tailwindcss.com) - Utility-first CSS framework for rapid UI development. 211 | ![](https://img.shields.io/github/stars/tailwindlabs/tailwindcss.svg?style=social&label=Star) 212 | [Docs](https://tailwindcss.com/docs), 213 | [Repo](https://github.com/tailwindlabs/tailwindcss) 214 | | #CSS 215 | 216 | - [**Open Props**](https://open-props.style) - CSS custom properties to help accelerate adaptive and consistent design. 217 | ![](https://img.shields.io/github/stars/argyleink/open-props.svg?style=social&label=Star) 218 | [Demo](https://open-props.style/#gallery), 219 | [Docs](https://open-props.style/#getting-started), 220 | [Repo](https://github.com/argyleink/open-props/) 221 | | #CSS #PostCSS 222 | 223 | 224 | ## Specialized 225 | 226 | - [**NES.css**](https://nostalgic-css.github.io/NES.css/) - NES-style CSS Framework. 227 | ![](https://img.shields.io/github/stars/nostalgic-css/NES.css.svg?style=social&label=Star) 228 | [Demo](https://nostalgic-css.github.io/NES.css/), 229 | [Docs](https://github.com/nostalgic-css/NES.css#installation), 230 | [Repo](https://github.com/nostalgic-css/NES.css) 231 | | #SCSS 232 | 233 | - [**98.css**](https://jdan.github.io/98.css/) - CSS library for building interfaces that look like Windows 98. 234 | ![](https://img.shields.io/github/stars/jdan/98.css.svg?style=social&label=Star) 235 | [Repo](https://github.com/jdan/98.css) 236 | | #CSS 237 | 238 | - [**Tufte CSS**](https://edwardtufte.github.io/tufte-css/) - Style your webpage like Edward Tufte’s handouts. 239 | ![](https://img.shields.io/github/stars/edwardtufte/tufte-css.svg?style=social&label=Star) 240 | [Repo](https://github.com/edwardtufte/tufte-css) 241 | | #CSS 242 | 243 | - [**Gutenberg**](https://github.com/BafS/Gutenberg) - Modern framework to print the web correctly. 244 | ![](https://img.shields.io/github/stars/BafS/Gutenberg.svg?style=social&label=Star) 245 | [Demo](https://bafs.github.io/Gutenberg/), 246 | [Docs](https://github.com/BafS/Gutenberg#what-does-the-framework-do-) 247 | | #SCSS 248 | 249 | - [**System.css**](https://sakofchit.github.io/system.css/) - Design system for building retro Apple interfaces. 250 | ![](https://img.shields.io/github/stars/sakofchit/system.css.svg?style=social&label=Star) 251 | [Repo](https://github.com/sakofchit/system.css) 252 | | #PostCSS 253 | 254 | - [**XP.css**](https://botoxparty.github.io/XP.css/) - CSS library for building interfaces that look like Windows XP. 255 | ![](https://img.shields.io/github/stars/botoxparty/XP.css.svg?style=social&label=Star) 256 | [Repo](https://github.com/botoxparty/XP.css) 257 | | #PostCSS 258 | 259 | - [**TuiCss**](https://github.com/vinibiavatti1/TuiCss) - Library to create MS-DOS interfaces. 260 | ![](https://img.shields.io/github/stars/vinibiavatti1/TuiCss.svg?style=social&label=Star) 261 | [Demo](https://github.com/vinibiavatti1/TuiCss/wiki/Examples), 262 | [Docs](https://github.com/vinibiavatti1/TuiCss/wiki) 263 | | #SCSS 264 | 265 | - [**7.css**](https://khang-nd.github.io/7.css/) - CSS library for building interfaces that look like Windows 7. 266 | ![](https://img.shields.io/github/stars/khang-nd/7.css.svg?style=social&label=Star) 267 | [Repo](https://github.com/khang-nd/7.css) 268 | | #PostCSS 269 | 270 | - [**Bojler**](https://bojler.slicejack.com) - Email framework for developing responsive and lightweight email templates. 271 | ![](https://img.shields.io/github/stars/Slicejack/bojler.svg?style=social&label=Star) 272 | [Docs](https://bojler.slicejack.com/documentation/getting-started/), 273 | [Repo](https://github.com/Slicejack/bojler) 274 | | #SCSS 275 | 276 | - [**Orbit**](https://zumerlab.github.io/orbit-docs/) - CSS framework designed for building any kind of radial UI. 277 | ![](https://img.shields.io/github/stars/zumerlab/orbit.svg?style=social&label=Star) 278 | [Docs](https://zumerlab.github.io/orbit-docs/introduction/), 279 | [Repo](https://github.com/zumerlab/orbit) 280 | | #SCSS 281 | 282 | 283 | ## Stalled Development 284 | 285 | Frameworks that have not seen any real development for more than about one year or officially have been deprecated. 286 | We are keeping them here for reference/inspiration and hope for a revival. 287 | 288 |
289 | Show Section 290 | 291 | - [**Semantic UI**](https://semantic-ui.com) - User interface is the language of the web. 292 | ![](https://img.shields.io/github/stars/semantic-org/semantic-ui.svg?style=social&label=Star) 293 | [Docs](https://semantic-ui.com/introduction/getting-started.html), 294 | [Repo](https://github.com/semantic-org/semantic-ui) 295 | | #LESS 296 | 297 | - [**Material Components Web**](https://material.io/components/web/) - Modular and customizable Material Design UI components for the web. 298 | ![](https://img.shields.io/github/stars/material-components/material-components-web.svg?style=social&label=Star) 299 | [Demo](https://material.io/components?platform=web), 300 | [Docs](https://material.io/develop/web/getting-started), 301 | [Repo](https://github.com/material-components/material-components-web) 302 | | #SCSS 303 | 304 | - [**Tachyons**](https://tachyons.io) - Quickly build and design new UI without writing CSS. 305 | ![](https://img.shields.io/github/stars/tachyons-css/tachyons.svg?style=social&label=Star) 306 | [Demo](https://tachyons.io/gallery/), 307 | [Docs](https://tachyons.io/docs/), 308 | [Repo](https://github.com/tachyons-css/tachyons/) 309 | | #CSS 310 | 311 | - [**Bourbon**](https://www.bourbon.io/) - Lightweight Sass tool set. 312 | ![](https://img.shields.io/github/stars/thoughtbot/bourbon.svg?style=social&label=Star) 313 | [Docs](https://www.bourbon.io/docs/latest/), 314 | [Repo](https://github.com/thoughtbot/bourbon/) 315 | | #SCSS 316 | 317 | - [**Water.css**](https://watercss.kognise.dev/) - Just-add-CSS collection of styles to make simple websites just a little nicer. 318 | ![](https://img.shields.io/github/stars/kognise/water.css.svg?style=social&label=Star) 319 | [Repo](https://github.com/kognise/water.css) 320 | | #CSS 321 | 322 | - [**sanitize.css**](https://csstools.github.io/sanitize.css/) - The best-practices CSS foundation. 323 | ![](https://img.shields.io/github/stars/csstools/sanitize.css.svg?style=social&label=Star) 324 | [Repo](https://github.com/csstools/sanitize.css) 325 | | #CSS 326 | 327 | - [**modern-css-reset**](https://github.com/hankchizljaw/modern-css-reset) - Tiny little reset that you can use as the basis of your CSS projects. 328 | ![](https://img.shields.io/github/stars/hankchizljaw/modern-css-reset.svg?style=social&label=Star) 329 | [Repo](https://github.com/hankchizljaw/modern-css-reset) 330 | | #CSS 331 | 332 | - [**minireset.css**](https://jgthms.com/minireset.css/) - Tiny modern CSS reset. 333 | ![](https://img.shields.io/github/stars/jgthms/minireset.css.svg?style=social&label=Star) 334 | [Repo](https://github.com/jgthms/minireset.css) 335 | | #Sass 336 | 337 | - [**CSS Remedy**](https://github.com/jensimmons/cssremedy) - Start your project with a remedy for the technical debt of CSS. 338 | ![](https://img.shields.io/github/stars/jensimmons/cssremedy.svg?style=social&label=Star) 339 | | #CSS 340 | 341 | - [**inuitcss**](https://github.com/inuitcss/inuitcss) - Extensible, scalable, Sass-based, OOCSS framework for large and long-lasting UI projects. 342 | ![](https://img.shields.io/github/stars/inuitcss/inuitcss.svg?style=social&label=Star) 343 | [Repo](https://github.com/inuitcss/inuitcss) 344 | | #SCSS 345 | 346 | - [**unsemantic**](https://unsemantic.com) - Fluid grid for mobile, tablet, and desktop. 347 | ![](https://img.shields.io/github/stars/nathansmith/unsemantic.svg?style=social&label=Star) 348 | [Demo](https://unsemantic.com/demo-responsive), 349 | [Docs](https://unsemantic.com/css-documentation), 350 | [Repo](https://github.com/nathansmith/unsemantic) 351 | 352 | - [**Propeller**](https://propeller.in) - Front-end responsive framework based on Google's Material Design standards & Bootstrap. 353 | ![](https://img.shields.io/github/stars/digicorp/propeller.svg?style=social&label=Star) 354 | [Docs](https://propeller.in/frameworks/open-source/get-started/), 355 | [Repo](https://github.com/digicorp/propeller) 356 | | #SCSS 357 | 358 | - [**Concise CSS**](https://concisecss.com) - Give up the bloat. Stop tripping over your classes. Be concise. 359 | ![](https://img.shields.io/github/stars/ConciseCSS/concise.css.svg?style=social&label=Star) 360 | [Docs](https://concisecss.com/documentation/), 361 | [Repo](https://github.com/ConciseCSS/concise.css) 362 | | #SCSS 363 | 364 | - [**Responsive Boilerplate**](https://responsivebp.com) - Powerful, accessible, developer friendly framework for building responsive websites. 365 | ![](https://img.shields.io/github/stars/responsivebp/responsive.svg?style=social&label=Star) 366 | [Docs](https://responsivebp.com/getting-started/), 367 | [Repo](https://github.com/responsivebp/responsive) 368 | | #SCSS 369 | 370 | - [**turretcss**](https://turretcss.com) - Responsive front-end framework for accessible and semantic websites. 371 | ![](https://img.shields.io/github/stars/turretcss/turretcss.svg?style=social&label=Star) 372 | [Demo](https://turretcss.com/demo/), 373 | [Docs](https://turretcss.com/getting-started/), 374 | [Repo](https://github.com/turretcss/turretcss) 375 | | #CSS 376 | 377 | - [**Centurion**](https://www.centurionframework.com) - Web-based framework for rapid prototyping and building larger web projects. 378 | ![](https://img.shields.io/github/stars/justinhough/Centurion.svg?style=social&label=Star) 379 | [Docs](https://github.com/justinhough/Centurion/blob/master/DOCUMENTATION.md), 380 | [Repo](https://github.com/justinhough/Centurion) 381 | 382 |
383 | 384 | --- 385 | 386 | ## License 387 | License [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/): 388 | 389 | > You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. 390 | 391 | Images of GitHub stars are provided by [Shields](https://github.com/badges/shields). 392 | --------------------------------------------------------------------------------