diff --git a/README.md b/README.md index 85eddd4..4db3638 100644 --- a/README.md +++ b/README.md @@ -879,6 +879,23 @@ module.exports = { } ``` +### toBase + +By default, variables are added to `@tailwind base;` styles. +If you don't include `@tailwind base;` styles in your `css`, set the `toBase` option to `false`. In this case, the variables will be added to the `@tailwind components;` styles. + +```js +//... +plugins: [ + require('@mertasan/tailwindcss-variables')({ + toBase: false, // default: true + }) +] +//... +``` + +- [tailwindcss.com - Functions and directives](https://tailwindcss.com/docs/functions-and-directives#tailwind) + ## API example for your own plugins - [Detailed Explanation](#gerçek-kullanım-örneği-detaylı) diff --git a/README.tr.md b/README.tr.md index f3b0586..9dbe140 100644 --- a/README.tr.md +++ b/README.tr.md @@ -879,6 +879,24 @@ module.exports = { } ``` +### toBase + +Varsayılan olarak, değişkenler `@tailwind base;` stillerine eklenir. +Eğer projenizin `css` dosyasına `@tailwind base;` stillerini dahil etmiyorsanız, `toBase` seçeneğini `false` durumuna getirebilirsiniz. +Bu durumda değişkenler `@tailwind components;` stillerine dahil edilecektir. + +```js +//... +plugins: [ + require('@mertasan/tailwindcss-variables')({ + toBase: false, // varsayılan: true + }) +] +//... +``` + +- [tailwindcss.com - Functions and directives](https://tailwindcss.com/docs/functions-and-directives#tailwind) + ## Kendi eklentileriniz için API örneği