2014-03-13 08:36:43 +00:00
# TACHYONS
2016-08-26 13:26:44 +00:00
Functional css for humans.
2015-10-24 17:13:58 +00:00
2016-08-26 13:26:44 +00:00
Quickly build and design new UI without writing css.
2014-03-13 08:44:44 +00:00
2014-10-15 17:03:10 +00:00
## Principles
* Everything should be 100% responsive
* Everything should be readable on any device
2016-10-03 22:49:21 +00:00
* Everything should be as fast as possible
2014-10-15 17:03:10 +00:00
* Designing in the browser should be easy
2015-05-17 09:06:34 +00:00
* It should be easy to change any interface or part of an interface without breaking any existing interfaces
2015-02-02 23:59:01 +00:00
* Doing one thing extremely well promotes reusability and reduces repetition
2016-10-03 22:49:21 +00:00
* Documentation helps promote reusability and shared knowledge
2016-11-15 12:03:34 +00:00
* Css shouldn't impede accessibility or the default functionality of Html
* You should send the smallest possible amount of code to the user
2014-10-15 17:03:10 +00:00
2014-10-17 22:02:48 +00:00
## Features
2016-10-03 22:49:21 +00:00
* Mobile-first css architecture
* 490 accessible color combinations
* 8px baseline grid
* Multiple debugging utilities to reduce layout struggles
2016-02-24 23:14:51 +00:00
* Single-purpose class structure
2014-10-17 22:02:48 +00:00
* Optimized for maximum gzip compression
2016-11-15 12:03:34 +00:00
* Lightweight (~14kB)
2014-10-17 22:02:48 +00:00
* Usable across projects
2016-10-03 22:49:21 +00:00
* Growing open source component library
* Works well with plain html, react, ember, angular, rails, and more
2014-10-18 21:50:30 +00:00
* Infinitely nestable responsive grid system
2016-02-24 23:14:51 +00:00
* Built with Postcss
2014-10-17 22:02:48 +00:00
2014-03-13 08:36:43 +00:00
## Getting started
2016-02-24 23:14:51 +00:00
Docs can be found at http://tachyons.io/docs
2016-10-03 22:49:21 +00:00
The modules are generally pretty small and thus quick and easy to read.
2014-10-17 22:02:48 +00:00
2016-02-24 23:14:51 +00:00
### Use the CDN
2014-03-13 08:36:43 +00:00
2016-02-24 23:14:51 +00:00
The quickest and easiest way to start using tachyons is to include a reference
to the minified file in the head of your html file.
2016-12-13 10:49:50 +00:00
```html
2018-06-05 13:26:15 +00:00
< link rel = "stylesheet" href = "https://unpkg.com/tachyons@4.10.0/css/tachyons.min.css" >
2016-12-13 10:49:50 +00:00
```
2014-03-13 08:36:43 +00:00
2016-02-24 23:14:51 +00:00
### Local Setup
Clone the repo from github and install dependencies through npm.
2014-10-15 00:57:01 +00:00
2014-10-09 21:30:12 +00:00
```
2016-03-13 16:59:59 +00:00
git clone https://github.com/tachyons-css/tachyons.git
2016-02-24 23:14:51 +00:00
cd tachyons
npm install
2014-10-09 21:30:12 +00:00
```
2014-10-15 17:03:10 +00:00
2016-02-24 23:14:51 +00:00
#### Dev
2016-10-03 22:49:21 +00:00
If you want to just use everything in tachyons/src as a jumping off point and
edit all the code yourself, you can compile all of your wonderful changes by
running
2016-02-24 23:14:51 +00:00
```npm start```
2016-11-15 12:03:34 +00:00
This will output both minified and unminified versions of the css to the css directory and watch the src directory for changes.
It's aliased to the command:
2016-04-04 09:28:46 +00:00
```npm run build:watch```
2016-11-15 12:03:34 +00:00
If you'd like to just build the css once without watching the src directory run
```npm run build```
2016-04-04 09:28:46 +00:00
If you want to check that a class hasn't been redefined or 'mutated' there is a linter to check that all of the classes have only been defined once. This can be useful if you are using another library or have written some of your own css and want to make sure there are no naming collisions. To do this run the command
```npm run mutations```
2016-02-24 23:14:51 +00:00
2016-11-15 12:03:34 +00:00
## Docs
2018-02-17 16:01:45 +00:00
2016-11-15 12:03:34 +00:00
The tachyons docs located at http://tachyons.io are all open source and located at https://github.com/tachyons-css/tachyons-css.github.io
You can clone the docs and use them as a template for documenting your own design system / patterns / components.
2017-05-18 20:50:29 +00:00
While not everything is automated, the component library generation makes it extremely easy to
2016-11-15 12:03:34 +00:00
generate and organize the documentation for components as demonstrated at http://tachyons.io/components
2018-02-17 16:01:45 +00:00
### Community Resources
- [DWYL Learn Tachyons ](https://github.com/dwyl/learn-tachyons ): Learn how to use Tachyons to craft beautiful, responsive, functional and fast UI with minimal CSS
- [Tachyons TLDR ](https://tachyons-tldr.now.sh/#/classes ): Quick lookup for Tachyons classes, scales and color palette
- [Tachyons Pro ](https://tachyons.pro/ ): Fun quiz for memorizing class names
2016-11-15 12:03:34 +00:00
2016-04-29 11:19:45 +00:00
## Contributing
2016-10-03 22:49:21 +00:00
Please read our [code of conduct ](https://github.com/tachyons-css/tachyons/blob/master/code-of-conduct.md ) for contributors.
2016-04-29 11:19:45 +00:00
2017-08-12 19:35:14 +00:00
## Tachyons in Production
2014-10-15 17:03:10 +00:00
2017-08-12 19:35:14 +00:00
A longer list of sites that use tachyons in production can be found in sites.md
We love letting the community see what people are building so please add your link to sites.md in a PR or by opening an issue if you're willing to share to your site or project.
**Featured Sites**
* https://interfacelovers.com
2017-09-04 09:47:33 +00:00
* https://npmjs.com
* https://womenwho.design
2017-08-12 19:35:14 +00:00
* https://friendstalkfrontend.com
2017-09-04 09:47:33 +00:00
* https://play.webvr.rocks
2017-08-12 19:35:14 +00:00
* https://gohugo.io
2016-09-16 22:11:55 +00:00
* https://coralproject.net
2017-08-12 19:35:14 +00:00
* http://www.philipyoungg.com
* https://gitpoint.co
* https://2017.nodeconf.com.ar
2016-08-16 13:24:06 +00:00
* https://goldenstaterecord.com
2016-11-27 11:01:13 +00:00
* http://hicuties.com
2016-11-15 12:03:34 +00:00
* https://urlbox.io
2017-02-01 19:20:17 +00:00
* https://fontawesome.com
2017-08-12 19:35:14 +00:00
* https://purple3.herokuapp.com
* http://blunt.af/tachy.app/
* https://fenderdigital.github.io/css-utilities/intro/
2017-10-10 00:15:23 +00:00
* https://play.cash
2016-02-23 03:04:19 +00:00
And of course...
* http://tachyons.io
2014-03-13 08:44:44 +00:00
2017-10-13 12:26:20 +00:00
## Sponsors
Development of Tachyons is supported by
* [Digital Ocean ](https://digitalocean.com )
2017-10-16 17:32:06 +00:00
* [DWYL ](https://dwyl.com )
2017-10-13 12:26:20 +00:00
* [VTEX ](https://lab.vtex.com )
2017-10-13 12:27:09 +00:00
* [Manifold ](https://manifold.co )
2017-10-13 12:26:20 +00:00
2016-02-24 23:14:51 +00:00
## Help
2015-05-17 09:06:34 +00:00
2017-09-09 02:06:06 +00:00
If you have a question or need help feel free to [open an issue here ](https://github.com/tachyons-css/tachyons/issues/new ) or jump into the [Tachyons slack channel ](http://tachyons-slack-invite.herokuapp.com ).
2015-02-02 23:59:01 +00:00
2014-03-13 08:44:44 +00:00
## License
2015-10-23 22:03:52 +00:00
MIT