You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
2 months ago
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: [
|
||
|
"./index.html",
|
||
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
spacing: {
|
||
|
"42px": "42px",
|
||
|
"108px": "108px",
|
||
|
"690px": "690px",
|
||
|
"60px": "60px",
|
||
|
},
|
||
|
fontFamily: {
|
||
|
sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'sans-serif'],
|
||
|
},
|
||
|
colors: {
|
||
|
primary: {
|
||
|
50: '#eff6ff',
|
||
|
100: '#dbeafe',
|
||
|
200: '#bfdbfe',
|
||
|
300: '#93c5fd',
|
||
|
400: '#60a5fa',
|
||
|
500: '#3b82f6',
|
||
|
600: '#2563eb',
|
||
|
700: '#1d4ed8',
|
||
|
800: '#1e40af',
|
||
|
900: '#1e3a8a',
|
||
|
},
|
||
|
},
|
||
|
animation: {
|
||
|
'fade-in': 'fadeIn 0.5s ease-in-out',
|
||
|
'slide-up': 'slideUp 0.5s ease-out',
|
||
|
},
|
||
|
keyframes: {
|
||
|
fadeIn: {
|
||
|
'0%': { opacity: '0' },
|
||
|
'100%': { opacity: '1' },
|
||
|
},
|
||
|
fontSize: {
|
||
|
'2xs': ['10px', '15px'],
|
||
|
'3xs': ['8px', '13px'],
|
||
|
"42px": "42px",
|
||
|
},
|
||
|
slideUp: {
|
||
|
'0%': { transform: 'translateY(20px)', opacity: '0' },
|
||
|
'100%': { transform: 'translateY(0)', opacity: '1' },
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|