monorepo/apps/web2/tailwind.config.ts

20 lines
614 B
TypeScript

import type { Config } from 'tailwindcss';
const config = {
content: ['./src/**/*.{ts,tsx}'],
prefix: 'tw-',
theme: {
extend: {
boxShadow: {
nysm: '0 0 2px 0 rgb(0 0 0 / 0.05)',
ny: '0 0 3px 0 rgb(0 0 0 / 0.1), 0 0 2px - 1px rgb(0 0 0 / 0.1)',
nymd: '0 0 6px -1px rgb(0 0 0 / 0.1), 0 0 4px -2px rgb(0 0 0 / 0.1)',
nylg: '0 0 15px -3px rgb(0 0 0 / 0.1), 0 0 6px -4px rgb(0 0 0 / 0.1)',
spread: '0 5px 40px rgb(0 0 0 / 0.1)',
},
},
},
} satisfies Config;
export default config;