-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (39 loc) · 1.04 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
import daisyui from 'daisyui';
import tailwindScrollbar from 'tailwind-scrollbar';
// eslint-disable-next-line no-undef
module.exports = {
content: ['./src/**/*.tsx'],
theme: {
extend: {},
},
plugins: [daisyui, tailwindScrollbar],
daisyui: {
themes: [
{
netflix: {
primary: '#E50914',
'primary-focus': '#E50914',
'primary-content': '#ffffff',
secondary: '#000000',
'secondary-focus': '#E50914',
// 'secondary-focus': '#f1f5f94c',
'secondary-content': '#ffffff',
accent: '#E50914',
'accent-focus': '#E50914',
'accent-content': '#ffffff',
neutral: '#1F2937',
'neutral-focus': '#1F2937',
'neutral-content': '#ffffff',
'base-100': '#ffffff',
'base-200': '#f9fafb',
'base-300': '#d1d5db',
'base-content': '#1f2937',
info: '#2094f3',
success: '#009485',
warning: '#ff9900',
error: '#ff5724',
},
},
],
},
};