-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtailwind.config.js
52 lines (42 loc) · 1.41 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
module.exports = {
content: [
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/ts/**/*.{vue,js,ts}',
],
theme: {
extend: {
colors: {
transparent: 'transparent',
black: '#313131',
'black-light': '#353744',
'black-lighter': '#393e43',
'black-lightest': '#475509',
'grey-darkest': '#4b5c69',
'grey-darker': '#606f7b',
'grey-dark': '#8795a1',
grey: '#dde1e5',
'grey-light': '#dae1e7',
'grey-lighter': '#f1f5f8',
'grey-lightest': '#f8fafc',
'grey-blue-darkest': '#4b5f77',
'grey-blue-darker': '#83909d',
'grey-blue-dark': '#616f75',
'grey-blue': '#dce3e7',
'grey-blue-light': '#e7ebef',
white: '#ffffff',
indigo: '#3f50bb',
'indigo-light': '#4650b6',
'indigo-muted': '#9396ab',
'indigo-hover': '#EEF2FF',
frost: '#f4f5f7',
smoke: '#e7e8e8',
clouds: '#d1d7da',
red: '#DC2626',
orange: '#F59E0B',
green: '#16A34A',
'halloween-orange': '#e4730b',
},
},
},
};