https://github.com/corellium/tailwind-config
Our very own Tailwind configuration!
https://github.com/corellium/tailwind-config
Last synced: over 1 year ago
JSON representation
Our very own Tailwind configuration!
- Host: GitHub
- URL: https://github.com/corellium/tailwind-config
- Owner: corellium
- Created: 2021-12-14T12:16:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-06T23:59:55.000Z (over 3 years ago)
- Last Synced: 2025-03-18T21:09:25.327Z (over 1 year ago)
- Language: TypeScript
- Size: 483 KB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
[](https://github.com/corellium/tailwind-config/actions/workflows/push.yaml)
# Tailwind Config Corellium
## Installation
Run the command below to install our Tailwind Config:
```sh
yarn add -D @corellium/tailwind-config
```
Make sure that in target project you have [latest version of tailwind](https://github.com/tailwindlabs/tailwindcss/releases) installed.
```sh
yarn add -D tailwindcss
```
## Usage
In your project root create `tailwind.config.js` file and add theme to the config.
```js
const {
config: { theme, plugins },
} = require('@corellium/tailwind-config');
module.exports = {
// By this `theme` filed assingment you will have corellium theme enabled by default
// https://tailwindcss.com/docs/theme#overriding-the-default-theme
theme,
content: [
// https://tailwindcss.com/docs/content-configuration
],
// https://tailwindcss.com/docs/configuration#plugins
plugins,
// Rest of your configuration:
// https://tailwindcss.com/docs/configuration
};
```