-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
82 lines (79 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import type { Config } from "tailwindcss";
const plugin = require("tailwindcss/plugin");
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
export default {
content: ["./app/**/*.{js,jsx,ts,tsx}"],
theme: {
screens: {
lm: "400px",
desktop: "1200px",
desktopMax: "1900px",
...defaultTheme.screens,
},
extend: {
backgroundImage: {
loggedOut: `url('/images/book-stack-bg.png')`,
loggedOutMobile: `url('/images/book-stack-bg-right.jpg')`,
},
backgroundSize: {
loggedOutSize: "45% 100%",
loggedOutSizeSmMobile: "106% 100%",
loggedOutSizeMobile: "106% 100%",
loggedOutSizeTablet: "105% 110%",
},
backgroundPosition: {
loggedOutPosMobile: "-1123% 0",
loggedOutPosSmMobile: "-1310% 0",
loggedOutPosTablet: "-1090% 0",
},
colors: {
rose: colors.rose,
rosyWorm: {
900: "#81334F",
DEFAULT: "#36003C",
},
grayWorm: {
100: "#EEE7E1",
200: "#EAE2DA",
300: "#333333",
800: "#D9D1C9",
DEFAULT: "#393131",
},
peachy: "#DDCCC8",
},
fontSize: {
hSmall: "3.875rem",
hMedium: "6rem",
hLarge: "8.4375rem",
h2Normal: "2rem",
},
lineHeight: {
tighter: "0.8",
},
padding: {
sectionMedium: "3rem",
},
gridTemplateColumns: {
"main-desktop": "5fr 3fr",
"header-desktop": "3fr 1fr 2fr 2fr 1fr",
"main-xl-desktop": "4fr 4fr 4fr",
"header-xl-desktop": "6fr 6fr",
},
},
fontFamily: {
fred: ['"Fredoka One"', "cursive"],
monty: ["Montserrat", "sans-serif"],
serifPro: ['"Source Serif Pro"', "serif"],
},
},
plugins: [
plugin(function ({
addVariant,
}: {
addVariant: (arg0: string, arg1: string) => void;
}) {
addVariant("initial", "html :where(&)");
}),
],
} satisfies Config;