-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
38 lines (37 loc) · 932 Bytes
/
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
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
const config: Config = {
content: ["./app/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
width: {
innerContainer: "954px",
},
maxWidth: {
innerContainer: "954px",
},
minWidth: {
innerContainer: "954px",
},
colors: {
blooper: "#0B2ACC",
purps: "#7BA0FF",
grayish: "#F5F5F5",
figureGray: "#D9D9D9",
almostDark: "#4B4B4B",
prettyDark: "#1D1D20",
},
fontFamily: {
sans: ["DM Sans", ...defaultTheme.fontFamily.sans],
serif: ["DM Serif Display", ...defaultTheme.fontFamily.serif],
blockquote: ["Playfair Display", ...defaultTheme.fontFamily.serif],
},
lineHeight: {
body: "26px",
},
},
},
plugins: [],
darkMode: "class",
};
export default config;