/* eslint-disable */ const colors = require("tailwindcss/colors"); const plugin = require("tailwindcss/plugin"); function rgba(color) { return "rgb(var(" + color + ") / )"; } module.exports = { prefix: "tw-", content: [ "./src/**/*.{html,ts}", "../../libs/components/src/**/*.{html,ts}", "../../libs/auth/src/**/*.{html,ts}", ], safelist: [], corePlugins: { preflight: false }, theme: { colors: { transparent: { DEFAULT: colors.transparent, hover: "var(--color-transparent-hover)", }, current: colors.current, black: colors.black, shadow: rgba("--color-shadow"), primary: { 100: rgba("--color-primary-100"), 300: rgba("--color-primary-300"), 500: rgba("--color-primary-500"), 600: rgba("--color-primary-600"), 700: rgba("--color-primary-700"), }, secondary: { 100: rgba("--color-secondary-100"), 300: rgba("--color-secondary-300"), 500: rgba("--color-secondary-500"), 600: rgba("--color-secondary-600"), 700: rgba("--color-secondary-700"), }, success: { 100: rgba("--color-success-100"), 600: rgba("--color-success-600"), 700: rgba("--color-success-700"), }, danger: { 100: rgba("--color-danger-100"), 600: rgba("--color-danger-600"), 700: rgba("--color-danger-700"), }, warning: { 100: rgba("--color-warning-100"), 600: rgba("--color-warning-600"), 700: rgba("--color-warning-700"), }, info: { 100: rgba("--color-info-100"), 600: rgba("--color-info-600"), 700: rgba("--color-info-700"), }, notification: { 100: rgba("--color-notification-100"), 600: rgba("--color-notification-600"), }, art: { primary: rgba("--color-art-primary"), accent: rgba("--color-art-accent"), }, text: { main: rgba("--color-text-main"), muted: rgba("--color-text-muted"), contrast: rgba("--color-text-contrast"), alt2: rgba("--color-text-alt2"), code: rgba("--color-text-code"), headers: rgba("--color-text-headers"), }, background: { DEFAULT: rgba("--color-background"), alt: rgba("--color-background-alt"), alt2: rgba("--color-background-alt2"), alt3: rgba("--color-background-alt3"), alt4: rgba("--color-background-alt4"), }, "marketing-logo": rgba("--color-marketing-logo"), }, textColor: { main: rgba("--color-text-main"), muted: rgba("--color-text-muted"), contrast: rgba("--color-text-contrast"), headers: rgba("--color-text-headers"), alt2: rgba("--color-text-alt2"), code: rgba("--color-text-code"), black: colors.black, success: { DEFAULT: rgba("--color-success-600"), 600: rgba("--color-success-600"), 700: rgba("--color-success-700"), }, danger: { DEFAULT: rgba("--color-danger-600"), 600: rgba("--color-danger-600"), 700: rgba("--color-danger-700"), }, warning: { DEFAULT: rgba("--color-warning-600"), 600: rgba("--color-warning-600"), 700: rgba("--color-warning-700"), }, info: { DEFAULT: rgba("--color-info-600"), 600: rgba("--color-info-600"), 700: rgba("--color-info-700"), }, primary: { 300: rgba("--color-primary-300"), 600: rgba("--color-primary-600"), 700: rgba("--color-primary-700"), }, secondary: { 300: rgba("--color-secondary-300"), 700: rgba("--color-secondary-700"), }, notification: { 600: rgba("--color-notification-600"), }, }, ringOffsetColor: ({ theme }) => ({ DEFAULT: theme("colors.background"), ...theme("colors"), }), extend: { width: { "50vw": "50vw", "75vw": "75vw", }, minWidth: { 52: "13rem", }, maxWidth: ({ theme }) => ({ ...theme("width"), "90vw": "90vw", }), }, }, plugins: [ plugin(function ({ matchUtilities, theme, addUtilities, addComponents, e, config }) { matchUtilities( { "mask-image": (value) => ({ "-webkit-mask-image": value, "mask-image": value, }), "mask-position": (value) => ({ "-webkit-mask-position": value, "mask-position": value, }), "mask-repeat": (value) => ({ "-webkit-mask-repeat": value, "mask-repeat": value, }), }, {}, ); }), plugin(function ({ addVariant }) { for (const state of [ "active", "hover", "focus", "focus-within", "focus-visible", "target", "visited", ]) { addVariant(state, [`&:${state}`, `&.test-${state}`]); } }), /** Plugin for compact mode */ plugin(function ({ addVariant }) { addVariant("bit-compact", ".bit-compact &"); }), ], };