-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (42 loc) · 1.18 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
'pink-pattern': "url('../lopi_assets/cute-pink-background-grid-pattern-pastel-minimal.avif')",
},
colors: {
'lopi-purple': {
'50': '#fbf4ff',
'100': '#f5e7ff',
'200': '#eed3ff',
'300': '#e0b0ff',
'400': '#cd7eff',
'500': '#ba4cff',
'600': '#a829f4',
'700': '#9219d7',
'800': '#7b1aaf',
'900': '#561378',
},
}
},
},
variants: {
extend: {
backgroundColor: ['active'],
}
},
content: [
'./app/**/*.php',
'./resources/**/*.html',
'./resources/**/*.js',
'./resources/**/*.php',
],
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}