23 lines
605 B
JavaScript
23 lines
605 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
fira: ["Fira"]
|
|
},
|
|
backgroundImage: {
|
|
'rect-pattern': "url('/img/RectLight.svg')",
|
|
'small-rect-pattern': "url('/img/RectLightSmall.svg')",
|
|
'thin-rect-pattern': "url('/img/RectLightThin.svg')",
|
|
'polygon-luminary': "url('/img/PolygonLuminary.svg')",
|
|
'simple-shiny': "url('/img/SimpleShiny.svg')",
|
|
},
|
|
animation: {
|
|
'pulse-custom': 'pulse-custom .8s ease infinite',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|