-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
79 lines (79 loc) · 1.87 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
plugins: [
function ({ addVariant }) {
addVariant("child", "& > *");
addVariant("child-hover", "& > *:hover");
},
],
theme: {
fontFamily: {
primary: "Inter",
},
container: {
padding: {
DEFAULT: "1rem",
lg: "0",
},
},
screens: {
xs: "450px",
sm: "640px",
md: "814px",
lg: "1024px",
xl: "1112px",
},
colors: {
fill: "#515151",
CMD: {
DEFAULT: "#232323",
100: "#4D4D4D",
200: "#000000",
},
gray: {
DEFAULT: "#D9D9D9",
100: "#B5B5B5",
200: "#8B8989",
300: "#676464",
},
yellow: "#EDC988",
pink: {
DEFAULT: "#FF7D6B",
100: "#FFE9E4",
200: "#FEAEA3",
},
portfolio: "#464A4B",
heading: "#1C0A0A",
paragraph: "#505050",
stroke: {
1: "#B0B4C0",
2: "#CFCFCF",
3: "#F4F5F7",
},
section: "#F5F6F9",
shape: "#E8EEF0",
white: "#FFFFFF",
transparent: "transparent",
primary: "#050816",
secondary: "#aaa6c3",
tertiary: "#151030",
"black-100": "#100d25",
"black-200": "#090325",
"white-100": "#f3f3f3",
},
extend: {
backgroundImage: {
circle: "url('/src/assets/img/hero/bg.png')",
cardsBg: "url('/src/assets/img/cards/bg.png')",
video: "url('/src/assets/img/video/video.png')",
contact: "url('/src/pages/Portfolio/assets/img/contact/bg.png')",
"hero-pattern": "url('/src/pages/Portfolio/assets/herobg.png')"
},
boxShadow: {
primary: "0px 18px 36px rgba(0, 0, 0, 0.05)",
card: "0px 35px 120px -15px #211e35",
},
},
},
plugins: [],
};