CoolFace
Apppublic

namuuuu12/react-native-titanium-foundation

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
tailwind.config.js22 linesDownload Raw Back to root
1module.exports = {2  content: [3    './src/**/*.{js,jsx,ts,tsx}',4    './App.{js,jsx,ts,tsx}',5  ],6  darkMode: 'class',7  theme: {8    extend: {9      colors: {10        primary: '#3B82F6', // blue-50011        primaryDark: '#60A5FA', // blue-40012        secondary: '#10B981', // emerald-50013        secondaryDark: '#34D399', // emerald-40014        background: '#FFFFFF',15        backgroundDark: '#1F2937', // gray-80016        text: '#111827', // gray-90017        textDark: '#F9FAFB', // gray-5018      },19    },20  },21  plugins: [],22};