-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (50 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
colour: {
primary: {
100: '',
200: '',
300: '',
400: '',
500: '#5c27ce',
600: '#1c0d42',
700: '',
800: '#0F0622',
900: '#080311'
},
text: {
100: '',
200: '',
300: '',
400: '#b9b9c3',
500: '#ffffff'
},
bg : {
100: '#2e2e2e',
200: '#212121',
300: '#1e1e1e',
400: '#0f0f0f',
500: '#0b0b0b'
}
}
},
boxShadow: {
'nav': '0 4px rgba(0, 0, 0, 0.4)',
},
borderWidth: {
'16': '16px',
},
gridTemplateColumns: {
'auto-fill-80': 'repeat(auto-fill, minmax(20rem, 1fr))'
},
},
},
plugins: [],
}