-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.1 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
dark: "#050505",
primary: "#487CE2",
secondary: "#95B3EE",
tertiary: "#DCF9EF",
intern: "#7246D1",
alttertiary: "#DCF9EF",
},
fontSize: {
xxxl3: "260px",
xxxl2: "190px",
xxxl: "170px",
xxl2: "140px",
xxl: "110px",
},
width: {
xxxl3: "260px",
xxxl2: "190px",
xxxl: "170px",
xxl2: "140px",
xxl: "110px",
},
height: {
xxxl3: "260px",
xxxl2: "190px",
xxxl: "170px",
xxl2: "140px",
xxl: "110px",
},
backgroundImage: {
"custom-radical-gradient":
"radial-gradient(145.88% 145.88% at 50% -14.69%, #00D4FF 0%, #3B82F6 29.63%, #000000 100%);",
},
screens: {
por: {
raw: "(orientation: portrait)",
},
lan: {
raw: "(orientation: landscape)",
},
},
},
},
plugins: [],
};