-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.56 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
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
'btn-signup': '#74C5F8',
'btn-login': '#DC832B',
link: '#5F8297',
content: '#080717',
},
spacing: {
30: '7.5rem',
85: '21.25rem',
},
boxShadow: {
base: '0px 0px 20px 0px rgba(0,0,0,0.03)',
},
backgroundImage: {
'dark-gradient':
'linear-gradient(115.09deg, rgba(47, 24, 6, 0.9) 2.26%, rgba(0, 0, 0, 0.9) 51.07%, rgba(5, 40, 46, 0.9) 98.92%)',
'custom-gradient':
'linear-gradient(158.98deg, #FFFFFF 0%, #E2E2E2 49.14%, #FFFFFF 99.27%)',
},
lineHeight: {
'slightly-loose': '1.8',
},
},
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
daisyui: {
themes: [
{
dark: {
...require('daisyui/src/theming/themes')[
'[data-theme=dark]'
],
primary: '#FF892A',
'primary-content': '#FFFFFF',
secondary: '#52ACBC',
'secondary-content': '#FFFFFF',
accent: '#3D3D3D',
error: '#FF1D1D',
'--rounded-btn': '0.75rem',
},
},
],
},
}