{"id":13480225,"url":"https://github.com/dgknca/tailwindcss-full-bleed","last_synced_at":"2026-01-24T04:56:27.218Z","repository":{"id":59027909,"uuid":"535017261","full_name":"dgknca/tailwindcss-full-bleed","owner":"dgknca","description":"A tailwindcss plugin that provides utilities for extended backgrounds and borders.","archived":false,"fork":false,"pushed_at":"2024-09-16T11:27:38.000Z","size":82,"stargazers_count":61,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-02T11:17:25.082Z","etag":null,"topics":["tailwindcss","tailwindcss-plugin"],"latest_commit_sha":null,"homepage":"https://dgknca.github.io/tailwindcss-full-bleed/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dgknca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-10T14:09:27.000Z","updated_at":"2025-01-24T16:26:22.000Z","dependencies_parsed_at":"2024-10-30T13:43:29.332Z","dependency_job_id":null,"html_url":"https://github.com/dgknca/tailwindcss-full-bleed","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"17462cda270f8fe940937edf90349b3ad08d3b9a"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknca%2Ftailwindcss-full-bleed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknca%2Ftailwindcss-full-bleed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknca%2Ftailwindcss-full-bleed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgknca%2Ftailwindcss-full-bleed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dgknca","download_url":"https://codeload.github.com/dgknca/tailwindcss-full-bleed/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245826820,"owners_count":20678862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["tailwindcss","tailwindcss-plugin"],"created_at":"2024-07-31T17:00:36.041Z","updated_at":"2026-01-24T04:56:27.193Z","avatar_url":"https://github.com/dgknca.png","language":"JavaScript","readme":"# tailwindcss-full-bleed\n\nA plugin that provides utilities for extended backgrounds and borders.\n\n## [Demo](https://dgknca.github.io/tailwindcss-full-bleed)\n\n\n## Installation\n\nInstall the plugin from npm:\n\n```sh\nnpm install -D tailwindcss-full-bleed\n\nor\n\nyarn add -D tailwindcss-full-bleed\n```\n\nThen add the plugin to your `tailwind.config.js` file:\n\n```js\n// tailwind.config.js\nmodule.exports = {\n  theme: {\n    // ...\n  },\n  plugins: [\n    require('tailwindcss-full-bleed'),\n    // ...\n  ],\n}\n```\n\n## Usage\n\n| Class | Description |\n| --- | --- |\n| `bleed-{color}` | Any tailwind color to specify the bleed color. |\n| `bleed-bg` | A background that extends to the left and right. |\n| `bleed-bg-l` | A background that extends to the left. |\n| `bleed-bg-r` | A background that extends to the right. |\n| `bleed-border` | 1px top and bottom border that extends to the left and right. |\n| `bleed-border-t` | 1px top border that extends to the left and right. |\n| `bleed-border-b` | 1px bottom border that extends to the left and right. |\n| `bleed-border-l` | 1px top and bottom border that extends to the left. |\n| `bleed-border-r` | 1px top and bottom border that extends to the right. |\n| `bleed-border-tl` | 1px top border that extends to the left. |\n| `bleed-border-tr` | 1px top border that extends to the right. |\n| `bleed-border-bl` | 1px bottom border that extends to the left. |\n| `bleed-border-br` | 1px bottom border that extends to the right. |\n| `bleed-border-br-2` | 2px bottom border that extends to the right. |\n| `bleed-border-br-4` | 4px bottom border that extends to the right. |\n| `bleed-border-br-8` | 8px bottom border that extends to the right. |\n| `bleed-border-br-[14px]` | 14px bottom border that extends to the right. |\n| `bleed-none` | To remove any full-bleeding. |\n\n\n## Extending the Plugin\n\n`bleed-{color}` and `bleed-border-{borderWidth}` values are using Tailwind's `colors` and `borderWidth` configuration. If you want to extend the classes provided by this plugin, you will need to extend the `colors` (or `bleedColors`) and `borderWidth` (or `bleedBorderWidth`) utilities in your `tailwind.config.js` file.\n\nFor example, to add a new color to the `bleed-{color}` utility, add the color to your `colors` configuration:\n\n```js\nmodule.exports = {\n  theme: {\n    extend: {\n      colors: {\n        primary: {\n          DEFAULT: '#4f46e5'\n        }\n      }\n    }\n  },\n  // ...\n}\n```\n\nSimilarly, to add a new border width to the `bleed-border` utility, add the width to your `borderWidth` configuration:\n\n```js\nmodule.exports = {\n  theme: {\n    extend: {\n      borderWidth: {\n        10: '10px'\n      }\n    }\n  },\n  // ...\n}\n```\n\nIf you want to add colors that only apply to bleed utilities, use `bleedColors` property instead:\n\n```js\nmodule.exports = {\n  theme: {\n    extend: {\n      bleedColors: {\n        primary: {\n          DEFAULT: '#4f46e5' // \u003c- only avaiable for bleed-{color} classes\n        }\n      }\n    }\n  },\n  // ...\n}\n```\n\nIf the same color is avaiable in `colors`, `bleedColors` will override the color value for `bleed-{color}` classes. Use `bleedBorderWidth` property for bleed only border widths as well.","funding_links":[],"categories":["Plugins","JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgknca%2Ftailwindcss-full-bleed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdgknca%2Ftailwindcss-full-bleed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgknca%2Ftailwindcss-full-bleed/lists"}