-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
70 lines (69 loc) · 1.89 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
module.exports = {
content: ["./src/**/*.{ts,tsx}"],
theme: {
fontFamily: {
body: [
"-apple-system,BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Oxygen-Sans",
"Ubuntu",
"Cantarell",
"Helvetica Neue",
"sans-serif",
],
},
extend: {
boxShadow: {
card: '0px 10px 32px -4px rgba(35, 40, 45, 0.1), 0px 6px 14px -6px rgba(35, 40, 45, 0.12)',
input: '0 1px 2px rgba(34, 113, 177, 0.1)',
'input-focused': '0 1px 2px rgba(34, 113, 177, 0.22)',
},
colors: {
black: {
DEFAULT: "#23282D",
400: '#5A5F63',
600: "#6F7F86",
800: "#D9DDDF",
900: "#F0F1F2",
},
primary: {
300: '#226297',
DEFAULT: "#2271B1",
},
},
fontSize: {
xs: [
"0.75rem",
{
lineHeight: 1.1,
},
],
sm: [
"0.8125rem",
{
lineHeight: 1.1,
},
],
md: [
"0.875rem",
{
lineHeight: 1.1,
},
],
base: [
"0.9375rem",
{
lineHeight: 1.35,
},
],
lg: [
"1.125rem",
{
lineHeight: 1.35,
},
],
},
},
},
}