{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAEA,yCAAkC;AAClC,2CAAkD;AAClD,iDAA0C;AAE1C,MAAM,cAAc,GAAW;IAC7B,OAAO,EAAE,EAAE;IACX,KAAK,EAAE;QACL,MAAM,EAAE;YACN,MAAM,EAAE;gBACN,GAAG,eAAM;aACV;YACD,8DAA8D;YAC9D,SAAS,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC;gBACzB,GAAG,KAAK,CAAC,QAAQ,CAAC;gBAClB,GAAG,eAAM,CAAC,IAAI,EAAE,iDAAiD;aAClE,CAAC;YACF,eAAe,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC;gBAC/B,GAAG,KAAK,CAAC,QAAQ,CAAC;gBAClB,GAAG,eAAM,CAAC,UAAU,EAAE,mDAAmD;aAC1E,CAAC;YACF,WAAW,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC;gBAC3B,GAAG,KAAK,CAAC,QAAQ,CAAC;gBAClB,GAAG,eAAM,CAAC,MAAM,EAAE,uDAAuD;aAC1E,CAAC;YACF,GAAG,uBAAU;YACb,SAAS,EAAE,iBAAO;SACnB;KACF;IACD,OAAO,EAAE;QACP,sBAAY,EAAE,4DAA4D;KAC3E;CACF,CAAC;AAEF,kBAAe,cAAc,CAAC;AAC9B,MAAM,CAAC,OAAO,GAAG,cAAc,CAAC","sourcesContent":["import type { Config } from 'tailwindcss';\n\nimport { colors } from './colors';\nimport { shadows, shadowPlugin } from './shadows';\nimport { typography } from './typography';\n\nconst tailwindConfig: Config = {\n  content: [],\n  theme: {\n    extend: {\n      colors: {\n        ...colors,\n      },\n      // Reduces redundancy by enabling shorter Tailwind class names\n      textColor: ({ theme }) => ({\n        ...theme('colors'), // Incorporate existing color utilities like text-primary-default\n        ...colors.text, // e.g. text-default instead of text-text-default\n      }),\n      backgroundColor: ({ theme }) => ({\n        ...theme('colors'), // Incorporate existing color utilities like bg-primary-default\n        ...colors.background, // e.g. bg-default instead of bg-background-default\n      }),\n      borderColor: ({ theme }) => ({\n        ...theme('colors'), // Incorporate existing color utilities like border-primary-default\n        ...colors.border, // e.g. border-default instead of border-border-default\n      }),\n      ...typography,\n      boxShadow: shadows,\n    },\n  },\n  plugins: [\n    shadowPlugin, // Allows for combination of size and color shadow utilities\n  ],\n};\n\nexport default tailwindConfig;\nmodule.exports = tailwindConfig;\n"]}