-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (41 loc) · 1010 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (41 loc) · 1010 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['src/*.tsx'],
theme: {
extend: {},
},
plugins: [require('daisyui')],
daisyui: {
themes: [
{
day: {
primary: '#cc0fe0',
'primary-content': 'white',
secondary: '#7e1bcc',
'secondary-content': 'white',
accent: '#37cdbe',
neutral: '#f3f0f7',
'base-100': 'white',
'base-200': '#ccc',
'base-300': '#f3f0f7',
'--rounded-btn': '0.25rem',
},
},
{
dark: {
primary: '#cc0fe0',
'primary-content': 'white',
secondary: '#7e1bcc',
'secondary-content': 'white',
'base-100': '#35364f',
accent: 'oklch(74.51% 0.167 183.61)',
neutral: '#2a323c',
'neutral-content': '#A6ADBB',
'base-200': '#191e24',
'base-300': '#15191e',
'base-content': '#A6ADBB',
},
},
],
},
}