-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (58 loc) · 1.53 KB
/
tailwind.config.js
File metadata and controls
59 lines (58 loc) · 1.53 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
Pink: "#ff7191",
purple: "#6c56c2",
yellow: "#fdbf11",
primary: "#fefefd",
secondary: "#303030",
blue: "#6cb5de",
pink: "#f0a8ab",
Yellow: "#ebe283",
grey: "#e9e9e9",
},
fontFamily: {
font: ["Poppins", "sans-serif"],
fontsp: ["Catamaran", "sans-serif"],
},
width: {
w: "48rem",
wz: "22rem",
wt: "40rem",
wit: "33rem",
wtt: "100rem",
},
height: {
h: "26rem",
ht: "46rem",
htt: "80rem",
},
screens: {
xxs: {
min: "250px",
max: "480px",
},
xms: {
min: "481px",
max: "767px",
},
smm: {
min: "768px",
max: "900px",
},
lgs: {
min: "901px",
max: "1100px",
},
xlgs: {
min: "1279px",
max: "1282px",
},
},
},
plugins: [],
},
};