← Back
/** @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: [],
}

📜 Git History

a71acbcfix(v2): add missing frontend files (index.html, main.jsx, css)4 months ago
Show last diff
Loading...