-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Luigi Moraes edited this page Jul 5, 2024
·
6 revisions
Bacuri is a framework focused on Semantic HTML customizable with a plugin system. It is divided by two complementary parts:
- The Seed: is an amount of Sass classes that customizes basic things and sets a color scheme. Some classes are meant to be used for a specific HTML tag, and some are for generic purposes.
- The Pulp: is the plugin system, designed to expand the framework capabilities. As the name suggests, it revolves the pit with more customizations.
You can download using the Node.js package manager of your choice. For example:
- NPM
$ npm install bacuri
- Yarn
$ yarn add bacuri
Import the basic stylish by adding the following line to your main Sass file:
@import "node_modules/bacuri/dist/seed.css";
After the download finishes, you will need to create the files for plugin management. The system is already installed in your machine, so just run the following:
$ pulp -i
And for install any plugin, just run this command:
$ pulp -a author/plugin-name
Of course not.
- Read the Seed section if you want to know which tags are currently stylized.
- See the Pulp section for a better understading of the plugin system
- And if you are interested in create your own plugin, the Plugin Creation section have a tutorial for you.
Thanks for reading!