anycoder-804f2c8b / tailwind.config.js
Rms666777's picture
Upload tailwind.config.js with huggingface_hub
9df6e6d verified
raw
history blame contribute delete
795 Bytes
/** @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: [],
};