@salla.sa/twilight-tailwind-theme
v2.14.22
Published
Tailwind theme for twilight (Salla Themes)
Downloads
5,554
Readme
Overview
The Tailwind-Theme Plugin registers the styles needed by the Twilight Web Components and then injects them into the theme stylesheet using JavaScript instead of CSS. It can also be used as a starter theme for any theme based on Tailwind.
Usage
By default, any Tailwind-based theme will look for the tailwind.config.d.ts
file at the root of the project to retrieve any pre-settings and customizations. Accordingly, the plugin Tailwind-Theme should be added to the tailwind.config.d.ts
file as follows:
plugins: [
...
require('@salla.sa/twilight-tailwind-theme'),
....
]
JIT Enabled
Tailwind added a just-in-time compiler, which generates styles as the developer writes the theme rather than generating everything in advance at initial build time. Since JIT mode generates your CSS on-demand by scanning your template files, it’s crucial that the developer configure the content
option in the tailwind.config.d.ts
file with all of the theme paths, otherwise the CSS classes will be empty.
...
content: [
// theme views
"views/**/*.twig",
// list of classes which required by twilight web components
"node_modules/@salla.sa/twilight-tailwind-theme/safe-list-css.txt"
],
...
Add a New Component
With Tailwind, developer style elements by applying pre-existing classes directly into the HTML. This is done using utility classes to build custom designs without writing CSS. Based on that, the developer may develop a new component by simple doing the following steps:
- Create a new folder with the name of the new compnenet.
- Create a
utilities.json
file with list of new compnenet's classes as json.
Publish
Last, the developer may publish the project using the following command:
npm run publish
Support
The team is always here to help you. Happen to face an issue? Want to report a bug? You can submit one here on Github using the Issue Tracker. If you still have any questions, please contact us via the Telegram Bot or join in the Global Developer Community on Telegram.
Contributing
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Credits
License
The MIT License (MIT). Please see License File for more information.