forked from ESNGermany/esn-germany-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (66 loc) · 1.59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const { guessProductionMode } = require("@ngneat/tailwind");
process.env.TAILWIND_MODE = guessProductionMode() ? 'build' : 'watch';
module.exports = {
content: [
'./src/**/*.{html,ts,css,scss,sass,less,styl}',
],
theme: {
extend: {
screens: {
// "sm": "640px",
// "md": "768px",
"lg": "1172px",
// "xl": "1280px",
"2lg": "1400px",
"2xl": "1570px",
},
spacing: {
1: "0.5rem",
22: "5rem",
26: "6.5rem",
36: "10rem",
56: "14rem",
72: "18rem",
80: "20rem",
84: "21rem",
96: "24rem",
104: "26rem"
},
inset: {
"1/8": "12.5%",
},
boxShadow: {
strong:
"0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 -25px 50px -12px rgba(0, 0, 0, 0.75)",
},
colors: {
"esn-green": "#7ac143",
"esn-dark-green": "#558f29",
"esn-blue": "#00aeef",
"esn-pink": "#ec008c",
"esn-lightpink": "#ffaabb",
"esn-orange": "#f47b20",
"esn-dark-blue": "#2e3192",
black: "#000",
gray: "#d3d3d3",
graylight: "#eaeaea",
graymap: "#5a5a5a",
bluelight: "#afb2ff",
white: "#fff",
whitebg: "#efefef",
footer: "#3a3a3a",
transparent: "#ffffffff",
},
},
fontFamily: {
body: ["Lato", "sans-serif"],
heading: ["Oswald", 'system-ui', "sans-serif"],
comic: ["Comic Sans"],
},
gridAutoRows: {
images: "280px",
},
},
variants: {},
plugins: [require("@tailwindcss/typography")],
};