-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
52 lines (52 loc) · 1.06 KB
/
tailwind.config.cjs
File metadata and controls
52 lines (52 loc) · 1.06 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: ['./src/**/*.{html,js,svelte,ts}'],
plugins: [require('daisyui')],
theme: {
extend: {
boxShadow: {
'primary': '0px 6px 6px #8E6ECA',
},
colors: {
'background' : '#F8F8FB',
task: {
DEFAULT: '#FDDDD5',
date: '#DED4F0',
estimation: '#FDDDD5',
todo: '#B3DFFF',
ongoing: '#FFA800',
done: '#8BCA6E',
blocked: '#F68B71',
normal: '#FDDDD5',
high: '#B83E51',
low: '#B3DFFF',
},
'secondary-gradient': 'rgba(246,139,113,0.53)',
}
}
},
safelist: [{
pattern: /(bg|text|border)-task-(date|estimation|todo|ongoing|done|blocked|normal|high|low)/
}],
daisyui: {
themes: [
{
mytheme: {
primary: '#8E6ECA',
secondary: '#F68B71',
accent: '#5C4580',
neutral: '#878499',
'base-100': '#fff',
'base-200': '#E4E8FA',
'base-300': '#D9D9D9',
'base-content': '#000',
info: '#FFA800',
success: '#8EB83E',
warning: '#FFA800',
error: '#B83E51'
}
}
]
}
}