forked from 2308-Bread/rails_bread_fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 969 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,js,jsx,ts,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./public/index.html",
],
theme: {
extend: {
textShadow: {
outline: "0 0 1px #000",
},
keyframes: {
flip: {
"0%, 100%": { transform: "rotateY(0)" },
"50%": { transform: "rotateY(180deg)" },
},
},
animation: {
flip: "flip .5s ease-in-out",
},
fontFamily: {
abel: ["Abel", "sans-serif"],
satisfy: ["Satisfy", "cursive"],
caveat: ["Caveat", "cursive"],
gluten: ["Gluten", "cursive"],
},
fontWeight: {
medium: "600",
bold: "700",
fat: "800",
fattest: "900",
},
},
colors: {
green: "#82AA9F",
white: "#FFFFFF",
},
},
plugins: [require("tailwindcss-textshadow")],
};