-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (54 loc) · 1.36 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: "class",
content: [
"./resources/**/*.blade.php",
"./resources/**/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./node_modules/flowbite/**/*.js",
],
safelist: [
"text-stone-300",
"text-blue-400",
"text-red-500",
"text-pink-300",
"text-purple-500",
"text-yellow-400",
"text-violet-400",
"text-violet-300",
],
theme: {
extend: {
fontSize: {
"2xs": ".685rem",
},
fontFamily: {
sans: [
"Inter var",
"Inter",
"sans-serif",
...defaultTheme.fontFamily.sans,
],
},
colors: {
twitch: "#6441a5",
youtube: "#FF0000",
kick: "#53fc18",
douyu: "#ff5f3a",
huya: "#ffaa06",
},
},
},
variants: {
extend: {
textColor: ["group-hover"],
},
},
plugins: [
require("flowbite/plugin"),
require("tailwind-capitalize-first-letter"),
require("@tailwindcss/typography"),
],
};