-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (39 loc) · 898 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
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{html, js,ts,jsx,tsx}'],
theme: {
extend: {},
fontFamily: {
display: ['Oswald'],
body: ['Open Sans', 'sans-serif']
},
fontSize: {
sm: '0.8rem',
base: '1rem',
xl: '1.25rem',
'2xl': '1.563rem',
'3xl': '1.953rem',
'4xl': '2.441rem',
'5xl': '3.052rem'
}
},
daisyui: {
themes: [
{
mytheme: {
primary: '#207BFF',
secondary: '#4EA5FF',
accent: '#4EA5FF',
neutral: '#2C3333',
'base-100': '#2A303C',
info: '#3ABFF8',
success: '#36D399',
warning: '#FBBD23',
error: '#F87272',
'table-grey': '#262B36'
}
}
]
},
plugins: [require('@tailwindcss/typography'), require('daisyui')]
};