-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
daisyui: {
themes: [
{
light: {
...require('daisyui/src/colors/themes')['[data-theme=light]'],
primary: '#27a0af',
secondary: '#95b9c7',
accent: '#67D2E1',
info: '#547FC9',
success: '#1EE671',
warning: '#D9B917',
error: '#EF4444',
'base-content': '#0A0A0A',
},
dark: {
...require('daisyui/src/colors/themes')['[data-theme=dark]'],
primary: '#27a0af',
secondary: '#0E333F',
accent: '#67D2E1',
info: '#547FC9',
success: '#1EE671',
warning: '#D9B917',
error: '#EF4444',
'base-content': '#FAFAFA',
'base-100': '#001321',
'base-200': '#182c34',
'base-300': '#122126',
},
},
],
},
plugins: [require('daisyui')],
theme: {
container: {
center: true,
},
},
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
],
}