-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
57 lines (56 loc) · 1.35 KB
/
tailwind.config.ts
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
56
57
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/assets/**/*.{png,svg,jpeg}",
],
theme: {
screens: {
xs: { max: "390px" },
mobile: "290px",
tablet: "834px",
desktop: "1440px",
},
variants: {
fill: ["hover", "focus"],
},
container: {
center: true,
},
fontFamily: {
zilla_slab: ["var(--font-zilla-slab)"],
koulen: ["var(--font-koulen)"],
unbutton: ["var(--font-unbutton)"],
alegreya_sans: ["var(--font-alegreya-sans)"],
},
extend: {
colors: {
background: "#FFF5DA",
white: "#FFFFFF",
"dark-blue": "#003049",
sage: "#B6B980",
purple: "#827191",
bordeux: "#7D1D3F",
blue: "#84ACCE",
yellow: "#F4AC45",
grey: "#C4C4C4",
},
fontSize: {
"2.5xl": ["2rem", { lineHeight: "44.8px" }],
},
animation: {
"bounce-horizontal": "bounce-horizontal 1s infinite",
},
keyframes: {
"bounce-horizontal": {
"0%, 100%": { transform: "translateX(0)" },
"50%": { transform: "translateX(25%)" },
},
},
},
},
plugins: [],
};
export default config;