/** @type {import('tailwindcss').Config} */ import {nextui} from "@nextui-org/react"; module.exports = { content: [ './pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}', "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { 'n-1' : '#D4D4D4', 'b-1' : '#FAFAFA', 'black-1' : '#171717', 'blue-10' : '#020814', 'blue-5' : '#4D8BF0', }, backgroundImage: { 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', }, animation: { text: 'text 10s ease infinite', }, keyframes: { text: { '0%, 100%': { 'background-size': '200% 200%', 'background-position': 'left center', }, '50%': { 'background-size': '200% 200%', 'background-position': 'right center', }, }, }, }, }, plugins: [require("tailwind-gradient-mask-image"), nextui()], }