-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (69 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
width: {
'inherit': 'inherit',
},
height: {
'inherit': 'inherit',
'26': '6.5rem',
},
aspectRatio: {
'4/3': '4 / 3',
'phone': '393 / 851',
},
padding: {
'space-for-keyboard': '263px',
'21': '5.25rem',
'38': '9.5rem',
},
borderWidth: {
'3': '3px',
'6': '6px',
'12': '12px',
'16': '16px',
},
colors: {
'google': '#EA5843',
'google-focus': '#e13219',
'facebook': '#4267B2',
'facebook-focus': '#34518d',
// primary: {
// 50: '#dbe8ff',
// }
'primary-100': '#dbe8ff',
},
transitionProperty: {
'height': 'height',
'spacing': 'margin, padding',
},
translate: {
'4/10': '40%',
},
dropShadow: {
'md-blue-800': '0 4px 3px rgba(30, 64, 175, 0.1)',
}
},
},
daisyui: {
themes: [
{
mytheme: {
'primary': '#5393FF',
'primary-focus': '#2073FF',
'primary-content': '#FFFFFF',
'secondary': '#C8DFEC',
'base-100': '#E9EDFE',
'base-200': '#83B1FE',
'error': '#ef4444',
},
},
],
},
plugins: [require('daisyui')],
};