-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
72 lines (72 loc) · 1.87 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,njk,md,js}"],
theme: {
extend: {
aspectRatio: {
'21/9': '21 / 9',
'21/8': '20 / 7',
'3/4': '3 / 4',
},
screens: {
'tn': '400px',
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('daisyui'),
],
daisyui: {
themes: [
{
light: {
"primary": "#2472c8",
"primary-content": "#ffffff",
"secondary": "#3b8eea",
"secondary-content": "#ffffff",
"accent": "#f14c4c",
"accent-content": "#ffffff",
"neutral": "#ffffff",
"neutral-content": "#1e1e1e",
"base-100": "#ffffff",
"base-200": "#f2f2f2",
"base-300": "#e5e5e5",
"base-content": "#161516",
"info": "#4283c3",
"info-content": "#000416",
"success": "#0dbc79",
"success-content": "#00160e",
"warning": "#f8ae32",
"warning-content": "#0f0800",
"error": "#cd3131",
"error-content": "#ffffff",
},
},
{
dark: {
"primary": "#2472c8",
"primary-content": "#000b14",
"secondary": "#3b8eea",
"secondary-content": "#000a16",
"accent": "#f14c4c",
"accent-content": "#000000",
"neutral": "#1a1a1a",
"neutral-content": "#ccccc9",
"base-100": "#1f1f1f",
"base-200": "#1a1a1a",
"base-300": "#141414",
"base-content": "#d0d0d0",
"info": "#4283c3",
"info-content": "#ffffff",
"success": "#0dbc79",
"success-content": "#010e01",
"warning": "#f8ae32",
"warning-content": "#000000",
"error": "#cd3131",
"error-content": "#000000",
},
},
],
},
}