-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (49 loc) · 1.5 KB
/
tailwind.config.js
File metadata and controls
49 lines (49 loc) · 1.5 KB
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontSize: {
bigger: "10rem",
huge: "12rem",
},
fontFamily: {
sans: ["Helvetica", "sans-serif"],
},
colors: {
"b-red": "#f1522b",
"b-blue": "#0077b7",
"b-yellow": "#ffc81c",
"b-white": "#fffdff",
"b-black": "#2e252c",
},
backgroundImage: {
hstripes:
"repeating-linear-gradient(0deg, #fffdff, #fffdff 15px, #00000000 15px,#00000000 30px);",
vstripes:
"repeating-linear-gradient(90deg, #fffdff, #fffdff 15px, #00000000 15px,#00000000 30px);",
},
boxShadow: {
hard: "0 0 0 0 #2e252c",
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
// Class name
"animation-delay": (value) => {
return {
"animation-delay": value, // Desired CSS properties here
};
},
},
{
values: theme("transitionDelay"),
},
);
}),
],
};