← Назад
/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { darkBg: '#0b0e14', darkSurface: '#151922', darkBorder: '#1e2430', bullishText: '#3b82f6', bullishBg: 'rgba(59, 130, 246, 0.1)', bearishText: '#fb923c', bearishBg: 'rgba(251, 146, 60, 0.1)', volatilityText: '#a855f7', volatilityBg: 'rgba(168, 85, 247, 0.1)' } }, }, plugins: [], }