-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (56 loc) · 1.37 KB
/
tailwind.config.js
File metadata and controls
57 lines (56 loc) · 1.37 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
const gradients = require('tailwindcss-plugins/gradients');
module.exports = {
theme: {
extend: {
borderWidth: {
1: '1px',
},
boxShadow: {
'3xl': '1px 3px 12px 4px rgba(0, 0, 0, 0.6)',
},
colors: {
black: {
900: '#121212',
},
grey: {
900: '#282828',
800: '#3E3E3E',
700: '#7B7B7B',
600: '#AAAAAA',
500: '#AEAEAE',
},
green: {
900: '#1DB954',
},
},
fontFamily: {
circular: ['Circular', 'sans-serif'],
},
fontSize: {
tiny: '0.7rem',
smaller: '0.86rem',
larger: '1.1875rem',
},
height: {
1.25: '0.3125rem',
18: '4.5rem',
},
},
gradients: () => ({
graydient: ['to top', '#181818', '#3E3E3E'],
}),
variants: {
fill: ['hover'],
},
},
variants: {
gradients: ['responsive', 'hover'],
},
plugins: [
gradients,
],
purge: [
'./public/**/*.html',
'./src/**/*.vue',
],
};