31 lines
970 B
TypeScript
31 lines
970 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config = {
|
|
content: ['./src/**/*.{ts,tsx}'],
|
|
prefix: 'tw-',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
lightcolor: '#fcf4ff',
|
|
darkcolor: '#2a004a',
|
|
darktheme: '#11001f',
|
|
},
|
|
fontFamily: {
|
|
Outfit: ['Outfit', 'sans-serif'],
|
|
Ovo: ['Ovo', 'serif'],
|
|
},
|
|
boxShadow: {
|
|
black: '4 4 0 #000',
|
|
white: '4 4 0 #fff',
|
|
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;
|