-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
39 lines (37 loc) · 981 Bytes
/
tailwind.config.ts
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
import * as daisyui from 'daisyui'
/** @type {import('tailwindcss').Config} */
let config: import('tailwindcss').Config = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
theme: {
extend: {
colors: {
'epik-orange': '#f39c12'
}
},
},
plugins: [daisyui],
daisyui: {
themes: [
{
sv: {
"primary": "#ffdd19",
"secondary": "#2f80ed",
"accent": "#68ff54",
"neutral": "#1C222B",
"base-100": "#2f3640",
"info": "#38bdf8",
"success": "#4cd137",
"warning": "#e67e22",
"error": "#e84118",
}
}
]
}
};
export default config