forked from BlockheaderWeb3-Community/autoswappr-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
35 lines (34 loc) · 828 Bytes
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontFamily: {
sans: ["Open Sans", "sans-serif"],
},
extend: {
colors: {
"accent": "var(--accent)",
"grey": {
300: "var(--grey-300)",
700: "var(--grey-700)",
900: "var(--grey-900)",
1100: "var(--grey-1100)",
}
},
screens: {
sm: "576px",
md: "960px",
lg: "1440px",
},
backgroundImage: {
"main-bg": "url('/background.png')",
"main-bg-mobile": "url('/mobile-background.svg')",
},
},
},
plugins: [require("tailwind-scrollbar-hide")],
} satisfies Config;