forked from maggie-j-liu/lelandcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
74 lines (74 loc) · 1.61 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
73
74
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
xs: "475px",
...defaultTheme.screens,
},
extend: {
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
mono: ["Roboto Mono", ...defaultTheme.fontFamily.mono],
},
colors: {
fuchsia: {
...colors.fuchsia,
DEFAULT: "#ff00ff",
},
blue: {
...colors.blue,
DEFAULT: "#0044ff",
},
},
animation: {
title1: "title1 8s infinite",
title2: "title2 8s infinite",
title3: "title3 8s infinite",
"pulse-gradient": "gradientpulse 3s infinite",
},
keyframes: {
title1: {
"0%, 16.667%, 100%": {
opacity: 1,
},
"33.333%, 83.333%": {
opacity: 0,
},
},
title2: {
"0%, 16.667%, 66.667%, 100%": {
opacity: 0,
},
"33.333%, 50%": {
opacity: 1,
},
},
title3: {
"0%, 50%, 100%": {
opacity: 0,
},
"66.667%, 83.333%": {
opacity: 1,
},
},
gradientpulse: {
"0%, 100%": {
opacity: "30%",
},
"50%": {
opacity: "100%",
},
},
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};