forked from fsr5-fhaachen/portals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (53 loc) · 1.21 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 = {
content: [
"./resources/**/*.js",
"./resources/**/*.ts",
"./resources/**/*.vue",
"./resources/**/*.blade.php",
"./database/seeders/*.php",
],
darkMode: "class",
theme: {
extend: {
keyframes: {
wiggle: {
"0%, 100%": {
transform: "rotate(-15deg)",
},
"50%": {
transform: "rotate(15deg)",
},
},
fly: {
from: {
transform: "translateY(100vh)",
},
to: {
transform: "translateY(-100%)",
},
},
},
animation: {
wiggle: "wiggle 2s ease-in-out infinite",
fly: "fly 75s infinite linear alternate",
},
colors: {
fhac: {
mint: "#00b5ad",
"mint-dark": "#22948C",
},
},
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
"eighty-miles": ['"EIGHTY MILES"'],
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@formkit/themes/tailwindcss"),
require("@tailwindcss/typography"),
],
};