monorepo/apps/web/tailwind.config.ts

20 lines
614 B
TypeScript
Raw Normal View History

2024-06-25 21:59:50 +08:00
import type { Config } from 'tailwindcss';
const config = {
content: ['./src/**/*.{ts,tsx}'],
2024-08-19 10:13:50 +08:00
prefix: 'tw-',
2024-06-25 21:59:50 +08:00
theme: {
extend: {
2024-09-17 18:34:19 +08:00
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)',
2024-06-25 21:59:50 +08:00
},
},
},
} satisfies Config;
export default config;