30 lines
680 B
JavaScript
30 lines
680 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./playground/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
animation: {
|
|
'spin-slow': 'spin 3s linear infinite',
|
|
'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
|
},
|
|
backdropBlur: {
|
|
'xs': '2px',
|
|
},
|
|
colors: {
|
|
'tiktok-red': '#FE2C55',
|
|
'tiktok-blue': '#25F4EE',
|
|
'tiktok-dark': '#161823',
|
|
},
|
|
fontFamily: {
|
|
'tiktok': ['Proxima Nova', 'system-ui', 'sans-serif'],
|
|
},
|
|
aspectRatio: {
|
|
'9/16': '9 / 16',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |