-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
71 lines (71 loc) · 1.49 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
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
borderRadius: {
'rd': '50px'
},
minWidth: {
'sel': '150px'
},
maxWidth: {
'sel': '240px',
'window': '400px',
'17/20': '85%'
},
width: {
'sel': '45%'
},
height: {
'menu': '40px',
},
padding: {
'full': '100%'
},
lineHeight: {
'6/5': '120%',
'double': '200%'
},
spacing: {
'4.5': '18px',
'6.5': '26px',
'header': '60px',
'footer': '70px',
'9/10': '90%',
'3/4vw': '75vw',
'3vw': '3vw'
},
fontSize: {
'14pt': '14pt'
}
},
colors: {
'primary': '#ff9800',
'small-text': '#757575',
'text': '#212121',
'accent': '#536dfe',
'excel': '#217346',
'boar': '#842929',
'trap': '#fbc02d',
'vaccine': '#0288d1',
'youton': '#30c737',
'report': '#757372',
'butanetsu': '#ab3838',
'danger': '#ff0000',
'background': '#fafafa',
'border': '#bdbdbd',
'disabled': '#bdbdbd',
'input-bg': '#ffffff',
'input-error-bg': '#ffcccc',
'index-trace': '#ece9c8',
'index-map': '#daecc8'
},
fontFamily: {
default: ["Helvetica Neue", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "sans-serif"]
}
},
plugins: [],
};