Initial commit: expo-popcore-app

This commit is contained in:
imeepos
2025-12-25 16:25:55 +08:00
commit 02d0c807cd
160 changed files with 39560 additions and 0 deletions

31
tailwind.config.js Normal file
View File

@@ -0,0 +1,31 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
'./@share/**/*.{js,jsx,ts,tsx}',
'./lib/**/*.{js,jsx,ts,tsx}',
],
presets: [require('nativewind/preset')],
darkMode: 'class',
safelist: ['dark'],
theme: {
extend: {
fontFamily: {},
fontSize: {},
screens: {
xs: '400px',
sm: '640px',
md: '768px',
lg: '1024px',
},
colors: {
primary: '#16181B',
},
backgroundImage: {
'primary-gradient': 'linear-gradient(to left, #8b5cf6, #ec4899, #f97316)',
},
},
},
plugins: [],
}