initial commit
This commit is contained in:
52
tailwind.config.js
Normal file
52
tailwind.config.js
Normal file
@ -0,0 +1,52 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
chocolate: {
|
||||
dark: '#3C2A21',
|
||||
medium: '#8B4513',
|
||||
light: '#D2691E',
|
||||
gold: '#DAA520',
|
||||
cream: '#F5E6D3',
|
||||
copper: '#CD7F32',
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
'renner': ['Renner*', 'Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'],
|
||||
'samantha': ['Samantha Signature', 'cursive'],
|
||||
'moneta': ['MonetaSans-Regular', 'sans-serif'],
|
||||
},
|
||||
animation: {
|
||||
'fade-in-up': 'fadeInUp 0.6s ease-out',
|
||||
'fade-in-left': 'fadeInLeft 0.6s ease-out',
|
||||
'fade-in-right': 'fadeInRight 0.6s ease-out',
|
||||
'scale-in': 'scaleIn 0.6s ease-out',
|
||||
},
|
||||
keyframes: {
|
||||
fadeInUp: {
|
||||
'0%': { opacity: '0', transform: 'translateY(30px)' },
|
||||
'100%': { opacity: '1', transform: 'translateY(0)' },
|
||||
},
|
||||
fadeInLeft: {
|
||||
'0%': { opacity: '0', transform: 'translateX(-30px)' },
|
||||
'100%': { opacity: '1', transform: 'translateX(0)' },
|
||||
},
|
||||
fadeInRight: {
|
||||
'0%': { opacity: '0', transform: 'translateX(30px)' },
|
||||
'100%': { opacity: '1', transform: 'translateX(0)' },
|
||||
},
|
||||
scaleIn: {
|
||||
'0%': { opacity: '0', transform: 'scale(0.9)' },
|
||||
'100%': { opacity: '1', transform: 'scale(1)' },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user