-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
69 lines (66 loc) · 1.23 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
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
const twitchColors = [
"blue",
"coral",
"dodgerblue",
"springgreen",
"yellowgreen",
"green",
"orangered",
"red",
"goldenrod",
"hotpink",
"cadetblue",
"seagreen",
"chocolate",
"blueviolet",
"firebrick",
];
const actualColors = [
"rgb(0, 255, 127)",
"rgb(154, 205, 50)",
"rgb(49, 154, 36)",
"rgb(180, 84, 255)",
"rgb(165, 107, 166)",
"rgb(124, 124, 225)",
"rgb(139, 88, 255)",
"rgb(95, 158, 160)",
"rgb(79, 248, 255)",
"rgb(85, 231, 250)",
"rgb(30, 144, 255)",
"rgb(122, 122, 122)",
"rgb(124, 124, 124)",
"rgb(218, 165, 32)",
"rgb(226, 163, 102)",
"rgb(255, 241, 71)",
"rgb(220, 217, 0)",
"rgb(220, 222, 148)",
"rgb(252, 242, 204)",
"rgb(231, 209, 255)",
"rgb(242, 181, 241)",
"rgb(255, 105, 180)",
"rgb(255, 0, 0)",
"rgb(219, 74, 63)",
"rgb(255, 127, 80)",
];
/**
* @type {import('tailwindcss').Config}
*/
module.exports = {
content: [
"./src/entrypoints/**/*.{html,vue,js,ts,jsx,tsx}",
"./src/components/**/*.{html,vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
corePlugins: {
preflight: false,
},
plugins: [
"prettier-plugin-tailwindcss",
// require('@tailwindcss/typography'),
// require('@tailwindcss/forms'),
// require('daisyui'),
],
};