-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
47 lines (46 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ["Work Sans", "sans-serif"],
},
textShadow: {
sm: "0 1px 2px var(--tw-shadow)",
DEFAULT: "0 2px 4px var(--tw-shadow)",
lg: "0 8px 16px var(--tw-shadow)",
},
keyframes: {
"progress-bar-fill": {
"0%": {
transform: "scaleX(0)",
},
"100%": {
transform: "scaleX(1)",
},
},
},
animation: {
"progress-bar-fill": "progress-bar-fill 3s ease-in-out",
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
"text-shadow": (value) => ({
textShadow: value,
}),
},
{ values: theme("textShadow") },
);
}),
],
};