-
Notifications
You must be signed in to change notification settings - Fork 25
/
landing.config.js
60 lines (60 loc) · 1.54 KB
/
landing.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
// tailwind.config.js
module.exports = {
important: true,
purge: [
'./resources/views/layouts/landing.blade.php',
'./resources/views/landing/*.blade.php',
'./resources/views/landing/**/*.blade.php'
],
corePlugins: {
animation: false,
},
theme: {
boxShadow: {
default: '0 4px 10px 0 rgba(0, 0, 0, 0.25)',
lg: '0 7px 20px 0 rgba(0, 0, 0, 0.275)',
},
fontFamily: {
sans: [
'Montserrat',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji'
],
},
borderRadius: {
default: '6px',
full: '9999px',
},
colors: {
transparent: 'transparent',
black: '#272727',
white: '#F6F6F6',
'super-white': '#FFFFFF',
blue: {
light: '#8BAFE5',
primary: '#007DF1',
dark: '#003380',
},
gray: {
light: '#c4c4c4',
primary: '#6D6D6D',
dark: '#272727',
},
}
},
variants: {
margin: ['responsive', 'first']
},
plugins: [],
};