32 lines
646 B
JavaScript
32 lines
646 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const { colors } = require('./src/core/colors');
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./App.tsx",
|
|
"./app/**/*.{js,jsx,ts,tsx}",
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
presets: [require("nativewind/preset")],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors,
|
|
fontFamily: {
|
|
sans: ["System", "sans-serif"],
|
|
},
|
|
spacing: {
|
|
"safe-top": "env(safe-area-inset-top)",
|
|
"safe-bottom": "env(safe-area-inset-bottom)",
|
|
},
|
|
borderRadius: {
|
|
"xl": "12px",
|
|
"2xl": "16px",
|
|
"3xl": "24px",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|