-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
59 lines (58 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
mode: "jit",
content: [
"./src/**/*.{ts,tsx,css,html}",
"./assets/**/*.{html,js}",
"./*.{ts,tsx,html}",
],
theme: {
extend: {
animation: {
marquee: "marquee 10s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-50%)" },
},
fadeIn: {
"0%": { opacity: "0", transform: "translate(-50%, 1rem)" },
"100%": { opacity: "1", transform: "translate(-50%, 0)" },
},
fadeOut: {
"0%": { opacity: "1", transform: "translate(-50%, 0)" },
"100%": { opacity: "0", transform: "translate(-50%, 1rem)" },
},
},
borderWidth: {
3: "3px",
},
borderStyle: {
"dashed-large": "dashed 3px",
},
colors: {
"tifoo-blue": "#1DA1F2",
"tifoo-dark-blue": "#0C7ABF",
"tifoo-light-blue": "#E8F5FE",
},
fontFamily: {
righteous: ["Righteous", "cursive"],
},
ringColor: {
"tifoo-blue": "#1DA1F2",
},
borderColor: {
"tifoo-blue": "#1DA1F2",
},
},
},
variants: {
extend: {
ringColor: ["focus"],
borderColor: ["focus"],
},
},
plugins: [require("tailwind-scrollbar")({ nocompatible: true })],
};