You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
website/tailwind.config.js

41 lines
820 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
pacifico: ['var(--font-pacifico)', 'cursive']
},
"backgroundSize": {
"600": "600%"
},
animation: {
"bg-scroll": "bgscroll 15s ease infinite"
},
keyframes: {
"bgscroll": {
"0%, 100%": {
"background-position": "0 50%"
},
"50%": {
"background-position": "100% 50%"
}
}
}
},
},
plugins: [
require('@catppuccin/tailwindcss')({
prefix: false,
defaultFlavour: "mocha"
}),
require('tailwindcss-animate')
],
}