-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.02 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
width: {
sm: "415px",
desc: "calc(100% - (415px + 60px))",
},
flexBasis: {
sm: "415px",
desc: "calc(100% - 415px)",
},
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "1.25rem",
},
},
fontFamily: {
roboto: ["Roboto", "sans-serif"],
},
screens: {
xs: "415px",
sm: "600px",
md: "768px",
lg: "992px",
xl: "1280px",
},
borderRadius: {
2: "2px",
5: "5px",
10: "10px",
},
backgroundImage: {
checkmark: "url('/src/assets/images/checkmarkVerified.svg')",
},
colors: {
white: "#ffffff",
black: "000000",
prime: "#005DF9",
text_color: "#8F9BB3",
dark: "#15192A",
"dark-2": "#191F30",
surface: "#1F273C",
},
},
plugins: [
require("tailwindcss"),
require("postcss"),
require("autoprefixer"),
],
};