-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (33 loc) · 992 Bytes
/
tailwind.config.js
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
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: "#4B0082", // purple
secondary: "#3B3B3B", // slate gray
accent: "#E6E6FA", // lavender
background: "#e0dede", // Light grey
foreground: "#2C2C2C", // Dark Gray
},
fontFamily: {
raleway: ["Raleway", "sans-serif"],
},
transitionDuration: {
2000: "2000ms",
},
backgroundImage: {
'hero': "url('/images/hero.svg')",
'illustration-2': "url('/images/illustration02.svg')",
'gradient-conic': 'conic-gradient( var(--tw-gradient-stops))',
'gradient-border': 'linear-gradient(to bottom, var(--tw-gradient-from) 50%, var(--tw-gradient-to) 50%)'
},
},
},
variants: {
extend: {
// transitionProperty: { top: "top", right: "right" },
},
},
plugins: [],
};