-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (40 loc) · 892 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
montserrat: [ "Montserrat", "sans-serif"],
roboto:['Roboto', "sans-serif"],
},
colors:{
transparent: 'transparent',
current: 'currentColor',
primary: "#090E34",
primaryOdd:"#0C1139",
secondary:"#476DF6",
nonActive: "#8793B1",
active:"#D9D9D9",
card: "#1D2144",
btn:"#101849",
wrapper:"#232B50",
btnHome:"#476DF6",
}
},
container: {
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
},
},
plugins: [],
}