31 lines
681 B
JavaScript
31 lines
681 B
JavaScript
import frappeUIPreset from "frappe-ui/src/tailwind/preset"
|
|
|
|
export default {
|
|
presets: [frappeUIPreset],
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
"./node_modules/frappe-ui/src/components/**/*.{vue,js,ts,jsx,tsx}",
|
|
"../node_modules/frappe-ui/src/components/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"ins-indigo": "#4f46e5",
|
|
"ins-positive": "#059669",
|
|
"ins-negative": "#dc2626",
|
|
"ins-warning": "#d97706",
|
|
"ins-info": "#2563eb",
|
|
},
|
|
fontFamily: {
|
|
manrope: ["Manrope", "sans-serif"],
|
|
mono: ["Source Code Pro", "monospace"],
|
|
},
|
|
maxWidth: {
|
|
content: "1480px",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|