-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
45 lines (45 loc) · 990 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
39
40
41
42
43
44
45
/** @type {import('tailwindcss').Config} */
module.exports = {
important: true,
darkMode: "class",
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
primary: "#155EEF",
transparent: "transparent",
current: "currentColor",
},
maxWidth: {
"8xl": "1920px",
},
textColor: {
base: "var(--text-base)",
primary: "var(--text-primary)",
secondary: "var(--text-secondary)",
},
lineHeight: {
"extra-loose": "2.2",
},
scale: {
120: "1.2",
},
screens: {
// devias kit material breakpoints
xs: "0px",
sm: "600px",
md: "900px",
lg: "1200px",
xl: "1440px",
// tailwind default breakpoints
// xs: "0px",
// sm: "320px",
// md: "768px",
// lg: "1024px",
// xl: "1440px",
// "2xl": "1536px",
},
},
},
plugins: [],
};