forked from asyncapi/conference-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (43 loc) · 862 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
34
35
36
37
38
39
40
41
42
43
44
45
const colors = require("tailwindcss/colors");
const dark = {
300: "#E8E2F4",
400: "#C6BED9",
500: "#9081B0",
600: "#675788",
700: "#453763",
};
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
container: {
padding: {
DEFAULT: '12rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
},
backgroundImage: {
madrid: "url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80')"
},
extend: {
colors: {
...colors,
dark: dark,
},
},
screens: {
xl: { max: '1279px' },
lg: { max: '1118px' },
sm: { max: '590px' },
},
fontFamily: {
secondary: ['Fira Code', 'monospace'],
},
},
plugins: [],
};