39 lines
1015 B
JavaScript
39 lines
1015 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: [
|
||
|
|
'./index.html',
|
||
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
primary: '#165DFF',
|
||
|
|
secondary: '#36CFC9',
|
||
|
|
dark: '#1D2129',
|
||
|
|
light: '#F2F3F5',
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
inter: ['Inter', 'system-ui', 'sans-serif'],
|
||
|
|
},
|
||
|
|
boxShadow: {
|
||
|
|
'primary/10': '0 4px 6px -1px rgba(22, 93, 255, 0.1), 0 2px 4px -1px rgba(22, 93, 255, 0.06)',
|
||
|
|
},
|
||
|
|
animation: {
|
||
|
|
'fadeIn': 'fadeIn 0.3s ease-in-out',
|
||
|
|
'bounce-slow': 'bounce 2s infinite',
|
||
|
|
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
||
|
|
},
|
||
|
|
keyframes: {
|
||
|
|
fadeIn: {
|
||
|
|
'0%': { opacity: '0', transform: 'translateY(10px)' },
|
||
|
|
'100%': { opacity: '1', transform: 'translateY(0)' },
|
||
|
|
}
|
||
|
|
},
|
||
|
|
transitionProperty: {
|
||
|
|
'height': 'height',
|
||
|
|
'spacing': 'margin, padding',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
}
|