-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
61 lines (50 loc) · 1.4 KB
/
tailwind.config.cjs
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
const config = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
"github-primary": "#AFB5BB",
"linkedin-primary": "#0A66C2",
"gmail-primary": "#EA4335",
}
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
'dark': {
'primary' : '#3974fe',
'primary-focus' : '#185cfb',
'primary-content' : '#fcfcfc',
'secondary' : '#e265cd',
'secondary-focus' : '#d548bc',
'secondary-content' : '#fcfcfc',
'accent' : '#3cb2b4',
'accent-focus' : '#389d9f',
'accent-content' : '#fcfcfc',
'neutral' : '#272d35',
'neutral-focus' : '#24272d',
'neutral-content' : '#fcfcfc',
'base-100' : '#1f2223',
'base-200' : '#121516',
'base-300' : '#0c0d0e',
'base-content' : '#e7e9e9',
'info' : '#38b6ff',
'success' : '#37d78d',
'warning' : '#eaa443',
'error' : '#ff5c74',
'--rounded-box': '1rem',
'--rounded-btn': '0.5rem',
'--rounded-badge': '1rem',
'--animation-btn': '0.15s',
'--animation-input': '0.05s',
'--btn-text-case': 'uppercase',
'--navbar-padding': '0.5rem',
'--border-btn': '2px',
},
},
],
},
};
module.exports = config;