-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
66 lines (66 loc) · 1.32 KB
/
tailwind.config.js
File metadata and controls
66 lines (66 loc) · 1.32 KB
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
module.exports = {
theme: {
colors: {
black: '#333',
white: '#fff',
grey: {
50: '#fafafa',
100: '#f5f5f5',
200: '#eee',
300: '#e0e0e0',
400: '#bdbdbd',
500: '#9e9e9e',
600: '#757575'
},
'blue-grey': {
20: '#f5f7f8',
100: '#cfd8dc',
300: '#90a4ae',
400: '#78909c',
600: '#546e7a'
},
orange: {
800: '#ff8f00',
900: '#e65100'
},
'light-blue': {
600: '#039be5'
},
blue: '#1a73e8',
navy: {
10: '#f6f7f9',
20: '#e5eaf0',
30: '#d4dce7',
40: '#c3cfdd',
50: '#b2c1d4',
100: '#8ea1b9',
200: '#6b829d',
300: '#476282',
400: '#385574',
500: '#2a4865',
600: '#1b3a57',
700: '#0c2d48',
800: '#051e34',
900: '#031525'
},
purple: {
50: '#ede7f6',
500: '#673ab7',
700: '#a0f'
}
},
fontFamily: {
base: ['Roboto', '"Helvetica Neue"', 'sans-serif'],
secondary: ['"Google Sans"', '"Helvetica Neue"', 'sans-serif'],
mono: ['"Roboto Mono"', 'monospace']
},
screens: {
sm: '320px',
md: '740px',
lg: '980px',
xl: '1300px'
}
},
variants: {},
plugins: []
};