Tachyons for your favorite inline-styles package
npm install tachyons-jsUse tachyons with your favorite CSS-in-JS composition solution.
snake_cased rather than kebab-casedcss
:root {
// fill in all of the tachyons default variables,
// or import 'tachyons-js/variables.css';
}
``javascript
import { StyleSheet } from 'aphrodite';
import t from 'tachyons-js';const styles = StyleSheet.create({
foo: {
...t.ma2,
...t.ma2_ns,
...t.bg_black,
...t.ph2,
...t.ph3_m,
...t.ph3_l,
},
});
``hmu if it breaks.