-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
50 lines (49 loc) · 1.07 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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
xs: "380px",
sm: "640px",
md: "880px",
lg: "1290px",
xl: "1920px",
},
fontFamily: {
"bebas-neue": "var(--font-bebas-neue), sans-serif",
"rethink-sans": "var(--font-rethink-sans), sans-serif",
},
colors: {
surface: "#0A0A0A",
primary: "#ffffff",
secondary: "#b3b3b3",
tertiary: "#969696",
stroke: "#555555",
transparent: "transparent",
},
fontSize: {
xs: "0.895rem",
sm: "0.925rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.75rem",
"4xl": "2rem",
"5xl": "2.5rem",
"6xl": "3rem",
"7xl": "3.5rem",
"8xl": "4rem",
"9xl": "4.5rem",
"10xl": "5.25rem",
},
},
plugins: [],
corePlugins: {
preflight: false,
},
} satisfies Config;