Initial commit: expo-popcore-app
This commit is contained in:
31
tailwind.config.js
Normal file
31
tailwind.config.js
Normal 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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user