|
1 | 1 | /* eslint-disable */
|
2 | 2 | // @ts-nocheck
|
3 | 3 |
|
| 4 | +/** @type {import('tailwindcss').Config} */ |
4 | 5 | export const defaultTailwindConfig = {
|
5 | 6 | content: [],
|
6 | 7 | presets: [],
|
@@ -197,6 +198,9 @@ export const defaultTailwindConfig = {
|
197 | 198 | '3xl': '1.5rem',
|
198 | 199 | full: '9999px',
|
199 | 200 | },
|
| 201 | + borderSpacing: ({theme}) => ({ |
| 202 | + ...theme('spacing'), |
| 203 | + }), |
200 | 204 | borderWidth: {
|
201 | 205 | DEFAULT: '1px',
|
202 | 206 | 0: '0px',
|
@@ -720,7 +724,7 @@ export const defaultTailwindConfig = {
|
720 | 724 | 8: '8px',
|
721 | 725 | },
|
722 | 726 | ringColor: ({theme}) => ({
|
723 |
| - DEFAULT: theme('colors.blue.500', '#3b82f6'), |
| 727 | + DEFAULT: theme(`colors.blue.500`, '#3b82f6'), |
724 | 728 | ...theme('colors'),
|
725 | 729 | }),
|
726 | 730 | ringOffsetColor: ({theme}) => theme('colors'),
|
@@ -857,8 +861,8 @@ export const defaultTailwindConfig = {
|
857 | 861 | none: 'none',
|
858 | 862 | all: 'all',
|
859 | 863 | DEFAULT:
|
860 |
| - 'background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter', |
861 |
| - colors: 'background-color, border-color, color, fill, stroke', |
| 864 | + 'color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter', |
| 865 | + colors: 'color, background-color, border-color, text-decoration-color, fill, stroke', |
862 | 866 | opacity: 'opacity',
|
863 | 867 | shadow: 'box-shadow',
|
864 | 868 | transform: 'transform',
|
|
0 commit comments