A euphoric CSS micro-framework.
npm install euphoria




> A euphoric CSS micro-framework.
To try out Euphoria, just add the following to the of your page:
``html`
Now check the [documentation site][docs] for usage information.
The easiest way to use Euphoria in a new project is to just include the unpkg file above.
Install Euphoria:
`bashUsing npm
npm install --save euphoria
Now you can either include the minified files in your CSS:
`css
@import './node_modules/euphoria/dist/euphoria.min.css';
`Or, if you are using PostCSS, you can import the source files which will give you access to the CSS variables that Euphoria provides:
`css
@import './node_modules/euphoria/src/euphoria.css';
`If you are using a tool like WebPack, you can use a shorter import syntax:
`css
@import '~euphoria';
`$3
To customize Euphoria, import the CSS and then change the values of the CSS variables. Please see the [available variables][variables] that Euphoria creates.
Contributing
Pull Requests welcome!
Checkout the project and run:
`bash
Using nvm, install proper node version.
nvm install
nvm useInstall dependencies.
npm installRun dev server:
npm start
`Once you're happy with your changes, submit a Pull Request on Github.
$3
Please run Prettier (use
npm run format` if your editor isn't setup to use Prettier) on all code before submitting.Please see [changelog.md][changelog]
Copyright © 2018 by [Dana Woodman][dana].
Euphoria was inspired by a lot of awesome projects, including:
* [Bootstrap][bootstrap]
* [Tachyons][tachyons]
* [glamor][glamor]
Thank you to all those that have put in a lot of thought and energy around pushing CSS forward!
MIT
[ava]: https://github.com/avajs/ava
[bootstrap]: https://getbootstrap.com
[cosmicconfig]: https://github.com/davidtheclark/cosmiconfig
[cli]: https://github.com/euphoria-css/euphoria-cli
[changelog]: /changelog.md
[dana]: http://danawoodman.com
[docs]: http://euphoria-css.com
[examples]: /packages/example
[glamor]: https://github.com/threepointone/glamor
[options]: #options
[tachyons]: http://tachyons.io
[variables]: http://euphoria-css.com#variables
[usage]: #usage