forked from asyncapi/conference-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (49 loc) · 1.05 KB
/
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
46
47
48
49
50
51
52
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",
},
},
extend: {
colors: {
...colors,
dark: dark,
"fainted-white": "#797393",
"fainted-paint": "#ad7dfa",
"dark-gray": "#3A304F",
"dark-paint": "#C6BED9",
"fainted-gray": "#151034",
"tetiary-pink": "#E50E99",
},
},
screens: {
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1118px" },
// => @media (max-width: 1023px) { ... }
sm: { max: "590px" },
// => @media (max-width: 639px) { ... }
},
fontFamily: {
'secondary': ['Fira Code', 'monospace']
}
},
plugins: [],
};