24 lines
686 B
JavaScript
24 lines
686 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"
|
|
}
|
|
}
|
|
},
|
|
safelist: ["bg-emerald-400"],
|
|
plugins: []
|
|
};
|