personal-site/tailwind.config.js

36 lines
916 B
JavaScript
Raw Normal View History

2022-03-11 10:43:00 +00:00
module.exports = {
2023-07-19 14:49:15 +00:00
content: ["./components/**/*.{html,js,jsx}", "./pages/**/*.{jsx,tsx}", "./app/**/*.{html,js,jsx,tsx}", "./layouts/**/*.{jsx,tsx}"],
2022-03-11 10:43:00 +00:00
theme: {
screens: {
xs: "350px",
sm: "450px",
md: "600px",
sl: "800px",
lg: "976px",
xl: "1200px",
},
2023-07-19 14:49:15 +00:00
colors: {
primary: "#7174ff",
2023-07-20 20:21:46 +00:00
primary_light: "#9d9eff",
primary_dark: "#7072c9",
2023-07-19 14:49:15 +00:00
},
2022-03-11 10:43:00 +00:00
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
},
// extend: {
// spacing: {
// 128: "32rem",
// 144: "36rem",
// },
// borderRadius: {
// "4xl": "2rem",
// },
// },
},
plugins: [],
corePlugins: {
preflight: false,
},
};