CoolFace
Apppublic

Risksray/anxiety-attack-detection-support-platform

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
tailwind.config.js27 linesDownload Raw Back to root
1/** @type {import('tailwindcss').Config} */2module.exports = {3  content: [4    './pages/**/*.{js,ts,jsx,tsx,mdx}',5    './components/**/*.{js,ts,jsx,tsx,mdx}',6    './app/**/*.{js,ts,jsx,tsx,mdx}',7  ],8  theme: {9    extend: {10      colors: {11        primary: {12          DEFAULT: '#4F46E5',13          light: '#6366F1',14        },15        secondary: {16          DEFAULT: '#10B981',17          light: '#34D399',18        },19        danger: {20          DEFAULT: '#EF4444',21          light: '#F87171',22        },23      },24    },25  },26  plugins: [],27}