Spaces:
Build error
Build error
File size: 795 Bytes
9df6e6d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | /** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
telegram: {
bg: '#0e1621',
sidebar: '#17212b',
message: '#182533',
blue: '#2b5278',
accent: '#0088cc',
text: '#f5f5f5',
secondary: '#6c7883',
incoming: '#182533',
outgoing: '#2b5278',
},
},
animation: {
'fade-in': 'fadeIn 0.3s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
}; |