-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (38 loc) · 1.16 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
import typography from "@tailwindcss/typography";
import aspectRatio from "@tailwindcss/aspect-ratio";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
`./src/pages/**/*.{js,jsx,ts,tsx}`,
`./src/components/**/*.{js,jsx,ts,tsx}`,
],
theme: {
extend: {
colors: {
dayliezPurple: "#5e20ff",
dayliezOrange: "#ff5e20",
dayliezOffWhite: "rgba(255, 255, 255, 0.7)",
},
fontFamily: {
outfit: ["Outfit", "sans-serif"],
},
backgroundImage: () => ({
dayliezOrangeLinear:
"linear-gradient(180deg,#ff5e20 0%,hsl(24,100%,58%) 100%)",
}),
letterSpacing: {
tighter: "-0.6px",
},
animation: {
"slide-in-bottom": "slideInFromBottom 120ms ease-out",
},
gridTemplateRows: {
layout: "max-content 1fr max-content",
},
gridTemplateColumns: {
full: "1fr",
},
},
},
plugins: [typography, aspectRatio],
};