-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
74 lines (74 loc) · 1.61 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
'xs': '450px',
'max-1515': {'max': '1515px'},
'max-1280': {'max': '1280px'},
'max-633': {'max': '633px'},
'max-475': {'max': '475px'},
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
fontWeight: {
normal: 400,
semibold: 600,
},
fontSize: {
xs: "0.6rem",
sm: "0.8rem",
base: "1rem",
xl: "1.25rem",
"2xl": "1.563rem",
"3xl": "1.953rem",
"4xl": "2.441rem",
"5xl": "3.5rem",
},
colors: {
primary: {
light: "#03a696",
DEFAULT: "#038C8C",
},
secondary: {
DEFAULT: "#025159",
},
accent: {
DEFAULT: "#F28705",
},
gray: {
fieldBg: "#F9FAF9",
fieldBorder: "#D1D5DB",
},
actuator: "#6D6FB5",
sensor: "#B64C72",
mapping:"#0088A7",
topic: "#038C8C",
sidebar: "#F4F4F4",
appBg: "#F8F9FB",
cardBg: "#FEFEFE", // card background
topbar: "#012E40",
},
maxHeight: {
128: "32rem",
112: "28rem",
},
height: {
topBar: "3.125rem",
},
margin: {
topBar: "3.125rem",
},
borderRadius: {
btn: "5px",
top: "5px 5px 0px 0px",
},
boxShadow: {
'card': '0 3px 4px 0px rgba(0, 0, 0, 0.25)',
}
},
},
plugins: [],
};