lobstertube / tailwind.config.js
lolakd's picture
Создай полноценный frontend для проекта **LobsterTube** — полной копии YouTube, с современным дизайном, максимально приближённым к оригиналу YouTube (2025 года).
a7aae55 verified
raw
history blame contribute delete
494 Bytes
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
brand: {
50: '#f4f7ff',
100: '#e6edff',
200: '#c8d7ff',
300: '#a5bbff',
400: '#7f9cff',
500: '#627cff',
600: '#465fde',
700: '#3348a8',
800: '#273f8a',
900: '#1f346f'
}
}
}
},
plugins: []
}