-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
78 lines (77 loc) · 2.06 KB
/
tailwind.config.js
File metadata and controls
78 lines (77 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
"./markdown/**/*.{vue,js,jsx,ts,tsx,mjs}",
],
theme: {
extend: {
fontFamily: {
sans: ['Outfit', 'sans-serif'],
},
},
},
plugins: [
require('daisyui'),
],
daisyui: {
themes: [
{
async: {
"primary": "#4FA7F1",
"primary-content": "#ffffff",
"secondary": "#FF9142",
"secondary-content": "#ffffff",
"accent": "#2190ED",
"accent-content": "#ffffff",
"neutral": "#242220",
"neutral-content": "#ffffff",
"base-100": "oklch(97% 0.0035 67.78)",
"base-200": "oklch(95% 0.0081 61.42)",
"base-300": "oklch(90% 0.0081 61.42)",
"base-content": "oklch(40% 0.0081 61.42)",
"info": "#4FA7F1",
"info-content": "#ffffff",
"success": "#21BF61",
"success-content": "#ffffff",
"warning": "#FF9142",
"warning-content": "#ffffff",
"error": "#D63838",
"error-content": "#ffffff",
},
"async-dark": {
"primary": "#4FA7F1",
"primary-content": "#ffffff",
"secondary": "#FF9142",
"secondary-content": "#ffffff",
"accent": "#2190ED",
"accent-content": "#ffffff",
"neutral": "#242220",
"neutral-content": "#ffffff",
"base-100": "#3F3C38",
"base-200": "#312F2C",
"base-300": "#242220",
"base-content": "#E5E5E5",
"info": "#4FA7F1",
"info-content": "#ffffff",
"success": "#21BF61",
"success-content": "#ffffff",
"warning": "#FF9142",
"warning-content": "#ffffff",
"error": "#D63838",
"error-content": "#ffffff",
},
},
],
base: true,
styled: true,
utils: true,
prefix: "",
logs: false,
},
}