-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 972 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [],
content: [
'./src/**/*.{html,js,jsx,ts,tsx}',
'./public/index.html',
],
theme: {
extend: {
container: {
center: true,
padding: '32px',
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
}
},
colors: {
'blue': '#0C0C1F',
'dark-blue': '#030311',
'riot-blue': '#0096A8',
'riot-red': '#C62139',
'gold': '#FDC80C',
'purple': '#A45EFF',
'gray': '#E5E5E5',
'dark-gray': '#555555',
'black': '#1A1A1A',
},
fontFamily: {
sans: ['Kanit', 'sans-serif'],
serif: ['Halant', 'serif'],
},
boxShadow: {
'big': '0px 4px 20px rgba(0, 0, 0, 0.3)',
},
dropShadow: {
'big': '0px 4px 20px rgba(0, 0, 0, 0.3)',
},
},
},
plugins: [],
}