mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
28 lines
516 B
JavaScript
28 lines
516 B
JavaScript
|
module.exports = {
|
||
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||
|
theme: {
|
||
|
screen: {
|
||
|
sm: "576px",
|
||
|
md: "768px",
|
||
|
lg: "992px",
|
||
|
xl: "1200px",
|
||
|
},
|
||
|
container: {
|
||
|
center: true,
|
||
|
padding: "1rem",
|
||
|
},
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
poppins: ["Poppins", "sans-serif"],
|
||
|
roboto: ["Roboto", "sans-serif"],
|
||
|
},
|
||
|
colors: {
|
||
|
primary: "#fd3d57",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [
|
||
|
require("@tailwindcss/forms"),
|
||
|
],
|
||
|
};
|