forked from udfujipratama/fujiboxglobal.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 897 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
module.exports = {
content: ['./app/**/*.{js,ts,jsx,tsx}'],
plugins: [require('@tailwindcss/typography'), require('daisyui')],
daisyui: {
styled: true,
themes: [
{
corporate: {
...require('daisyui/src/colors/themes')['[data-theme=corporate]'],
primary: '#2f5f99',
'primary-focus': '#436fa3',
'--rounded-box': '1rem',
'--rounded-btn': '0.5rem',
'--rounded-badge': '1.9rem',
'--border-btn': '0',
},
},
],
base: true,
utils: true,
logs: true,
rtl: false,
prefix: '',
darkTheme: 'dark',
},
theme: {
extend: {
h2: {
marginTop: '0px',
},
container: {
center: true,
},
minHeight: {
hero: '500px',
},
colors: {
fujibox: '#2f5f99',
whatsapp: '#48BB78',
},
},
},
}