-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (29 loc) · 810 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (29 loc) · 810 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
montserrat:['Montserrat', 'sans-serif'],
sans:['Open Sans', 'sans-serif'],
raleway:['Raleway', 'sans-serif'],
roboto:['Roboto', 'sans-serif'],
},
backgroundImage: {
'bodybackground' : 'linear-gradient(294.47deg, #130B2B 20.94%, #2E1371 100%)',
'navbarButton' : 'linear-gradient(91.38deg, #FB4A4A -10.93%, #2027CC 99.61%)',
},
colors: {
'signup': 'rgba(255, 255, 255, 0.1)',
'service': '#231450;',
},
boxShadow: {
'nav': '0px 10px 40px rgba(186, 64, 113, 0.35)',
},
},
},
plugins: [],
}