32 lines
690 B
JavaScript
32 lines
690 B
JavaScript
/** @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: [],
|
|
}
|