8d9baf8d7d
Deploy app frontend / app frontend (push) Successful in 1m57s
Deploy db-migrations / db-migrations (push) Successful in 58s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Successful in 1m26s
Deploy service tg-bot / service tg-bot (push) Successful in 1m27s
28 lines
841 B
TypeScript
28 lines
841 B
TypeScript
import tailwindScrollbar from 'tailwind-scrollbar'
|
|
import tailwindcssPrimeUI from 'tailwindcss-primeui'
|
|
import tailwindcssSafeArea from 'tailwindcss-safe-area'
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// primary: {
|
|
// 400: '#FFA726', // Светлый акцентный цвет для темной темы
|
|
// 600: '#FB8C00', // Основной акцентный цвет для светлой темы
|
|
// },
|
|
// orange: {
|
|
// 600: '#FB923C',
|
|
// 700: '#F97316',
|
|
// },
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
tailwindScrollbar({ nocompatible: true, preferredStrategy: 'pseudoelements' }),
|
|
tailwindcssPrimeUI,
|
|
tailwindcssSafeArea,
|
|
],
|
|
}
|