Created
May 11, 2022 18:29
-
-
Save alexandervantrijffel/1625a25b04873fbc9a720fbd507dbf83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
content: [ | |
"./pages/**/*.{ts,tsx,js,jsx}", | |
"./src/**/*.{ts,tsx,js,jsx}", | |
"./components/**/*.{js,jsx,ts,tsx}", | |
"./anima/**/*.{js,jsx,ts,tsx}", | |
], | |
theme: { | |
screens: { | |
sm: "360px", | |
md: "700px", | |
lg: "1280px", | |
xl: "1920px", | |
}, | |
extend: { | |
colors: { | |
silver: "#CCCCCC", | |
shark: "#272727", | |
gradientgoldstart: "#FFD043", | |
gradientgoldend: "#F3BE1F", | |
}, | |
}, | |
fontFamily: { | |
mogra: ["Mogra", "Helvetica"], | |
poppins: ["Poppins", "Helvetica"], | |
}, | |
}, | |
plugins: [require("@tailwindcss/line-clamp")], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment