-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
120 lines (119 loc) · 2.52 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
borderWidth: {
1: "1px",
2: "2px",
3: "3px"
},
extend: {
screens: {
mobile: "520px",
biggest: "1920px",
},
spacing: {
1920: "1920px",
360: "35rem",
390: "24.3rem",
1360: "85rem",
1500: "94rem",
990: "75rem",
900: "56rem",
830: "52rem",
280: "17.5rem",
640: "40rem",
550: "35rem",
},
padding: {
4.5: "1.125rem",
},
width: {
990: "62rem",
830: "52rem",
325: "20rem",
280: "17.5rem",
390: "24.3rem",
495: "31rem",
340: "21.25rem",
310: "19.4rem",
},
height: {
830: "52rem",
370: "23rem",
425: "27rem",
700: "43.75rem",
74 : "4.6rem"
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
accents: {
pink: "#F8979C",
orange: "#F69B7C",
yellow: "#E2B029",
green: "#929965",
blue: "#357F82",
},
text: {
darkBody: "#2A231E",
darkSub: "#3D3733",
lightBody: "#FFFCF3",
lightSub: "#C9BFB7",
copyright: "#747474",
},
bck: {
white: "#FFFCF3",
grey: "#2A231E",
card: "#322C27",
},
grey: {
60: "#928987",
40: "#544F4A",
90: "#443D37",
},
},
fontSize: {
h1: "3rem",
h2: "2.25rem",
h3: "1.875rem",
h4: "1.5rem",
subheading: "1.2rem",
body: "1rem",
bodyLarge: "1.25rem",
button: "1.125rem",
small : "0.875rem"
},
fontFamily: {
suse: "var(--font-suse)",
neraphic: "var(--font-neraphic)",
},
letterSpacing: {
logo: "-0.0625rem",
},
scale: {
97: "97%",
102: "102%",
},
aspectRatio: {
"4/3": "4 / 3",
"16/7": "16 / 7",
"3/2": "3 / 2",
"2/1": "2 / 1",
"15/16": "15 / 16",
"16/9" : "16 / 9",
"4/3" : "4 / 3",
"5/3" : "5 / 3"
},
gridTemplateColumns: {
two: "repeat(2, (2fr, 1fr));",
projects: "1fr, 1fr, 1fr 4fr",
},
},
},
plugins: [],
};