-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (34 loc) · 904 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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./app/Http/Livewire/MainLobby.php",
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
green: colors.green,
red: colors.red,
pink: colors.pink,
yellow: colors.yellow,
sky: colors.sky,
'primary': {
200: '#cbdef8',
800: '#062249',
900: '#041b3b'
},
},
extend: {
fontFamily: {
'nunito': ['Nunito', 'cursive'],
'poppins': ['Poppins', 'sans-serif']
}
},
},
plugins: [],
}