etfoglasi-frontend/tailwind.config.js
2025-10-31 23:09:46 +01:00

16 lines
377 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all files that contain Nativewind classes.
content: ["./app/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
primary: '#43ff64d9',
secondary: '#3885BA',
}
},
},
plugins: [],
}