-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 1009 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (34 loc) · 1009 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
30
31
32
33
34
35
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./pages/**/*.{ts,js,tsx,jsx}',
'./components/**/*.{ts,js,tsx,jsx}',
],
theme: {
fontFamily: {
sans: ['Poppins', ...defaultTheme.fontFamily.sans],
serif: [...defaultTheme.fontFamily.serif],
mono: [...defaultTheme.fontFamily.mono],
poppins: 'Poppins',
},
},
daisyui: {
themes: [
{
mytheme: {
primary: '#A6242C',
secondary: '#DF851B',
accent: '#890A4F',
neutral: '#36312B',
'base-100': '#ffffff',
info: '#3ABFF8',
success: '#36D399',
warning: '#FBBD23',
error: '#F87272',
},
},
],
},
plugins: [require('daisyui')],
};