JSPM

@designbycode/tailwindcss-text-stroke

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 905
  • Score
    100M100P100Q122287F
  • License MIT

Tailwindcss utilities for text stroke

Package Exports

  • @designbycode/tailwindcss-text-stroke
  • @designbycode/tailwindcss-text-stroke/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@designbycode/tailwindcss-text-stroke) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Tailwind CSS Text Stroke Plugin

Add custom text stroke utilities to your Tailwind CSS project using this plugin. It allows you to apply an outline-like stroke around text using CSS properties supported by WebKit-based browsers.

Static Badge npm NPM npm bundle size GitHub Repo stars GitHub stars

NPM

Mask Image Plugin

🚩 Table of Contents

Installation

To use this plugin, you need to install it via pnpm, npm or yarn.

Using pnpm

npm install @designbycode/tailwindcss-text-stroke

Using npm

npm install @designbycode/tailwindcss-text-stroke

Using yarn

yarn add @designbycode/tailwindcss-text-stroke

First, ensure you have Tailwind CSS installed in your project. If not, install it by following the official documentation.

Next, require the plugin in your Tailwind CSS configuration file (usually named tailwind.config.js).

Setup

  1. First, ensure you have Tailwind CSS installed in your project. If not, install it by following the official documentation.

  2. Next, require the plugin in your Tailwind CSS configuration file (usually named tailwind.config.js).

module.exports = {
    // ...other configurations
    plugins: [
        // ...other plugins
        require("@designbycode/tailwindcss-text-stroke"),
    ],
};

Once you've required the plugin and added it to the plugins array, you can use the new text stroke utilities in your HTML templates.

Use

The Text Stroke plugin provides the following utility classes for styling text with stroke effects:

  • .text-stroke: Base component that sets the default text stroke styles. You can override these styles using CSS variables.
  • .text-stroke-{value}: Sets the stroke width to the specified {value}. The available options are defined in the textStrokeWidth theme configuration.
  • .text-stroke-{color}: Applies a custom color to the text stroke. The {color} should match a color in your Tailwind CSS color palette.
  • .text-stroke-fill-{color}: Applies a custom fill color to the text stroke. The {color} should match a color in your Tailwind CSS color palette.

Example

Here's an example of how you can use the utility classes to apply image masks:

<h1 class="text-7xl font-black text-stroke ">
    Hello, TailwindCSS
</h1>

With modifiers

<h1 class="text-7xl font-black text-stroke text-stroke-indigo-200 text-stroke-fill-indigo-600">
    Hello, TailwindCSS
</h1>

Contributing

Contributions to this plugin are welcome! If you encounter any issues, have feature requests, or want to improve the plugin, feel free to create a pull request or submit an issue on the GitHub repository.

📜 License

This software is licensed under the MIT