CoolFace
Apppublic

spdniloy/anycoder-380d34cb

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
tailwind.config.js57 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  ],7  theme: {8    extend: {9      colors: {10        // Calm, trustworthy color palette11        primary: {12          50: '#f0f7fa',13          100: '#dbeef5',14          200: '#bce0eb',15          300: '#8ecbde',16          400: '#5aafca',17          500: '#3893b5',18          600: '#2875a0',19          700: '#235f85',20          800: '#1f4d6e',21          900: '#1b4059',22        },23        income: {24          light: '#e8f5e9',25          DEFAULT: '#4caf50',26          dark: '#2e7d32',27        },28        expense: {29          light: '#fce4ec',30          DEFAULT: '#e57373',31          dark: '#c62828',32        },33        profit: {34          light: '#e3f2fd',35          DEFAULT: '#1976d2',36          dark: '#0d47a1',37        },38        neutral: {39          50: '#fafafa',40          100: '#f5f5f5',41          200: '#eeeeee',42          300: '#e0e0e0',43          400: '#bdbdbd',44          500: '#9e9e9e',45          600: '#757575',46          700: '#616161',47          800: '#424242',48          900: '#212121',49        },50      },51      fontFamily: {52        sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],53      },54    },55  },56  plugins: [],57}