-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
34 lines (33 loc) · 1.06 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
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./app/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
backgroundImage: {
'grid-pattern': "linear-gradient(to bottom, theme('colors.neutral.950 / 0%'), theme('colors.neutral.950 / 100%')), url('/images/noise.png')"
},
colors: {
neutral: colors.neutral
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans]
}
}
},
daisyui: {
themes: [
{
lofi: {
...require('daisyui/src/theming/themes')['lofi'],
primary: '#2bdcd2',
'primary-content': '#171717',
secondary: '#016968',
info: '#2bdcd2',
'info-content': '#171717',
}
}
]
},
plugins: [require('daisyui')]
};