-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (39 loc) · 863 Bytes
/
tailwind.config.ts
File metadata and controls
40 lines (39 loc) · 863 Bytes
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
import type { Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
"code::before": {
content: "none",
},
"code::after": {
content: "none",
},
},
},
}),
colors: {
prime: "rgb(90, 90, 245)",
secondary: "rgb(40, 42, 57)",
tertiary: "rgb(245, 245, 245)",
"prime-dark": "rgb(63, 63, 219)",
},
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
"3xl": "1792px",
"4xl": "2048px",
},
},
plugins: [require("@tailwindcss/typography")],
future: {
hoverOnlyWhenSupported: true,
},
} satisfies Config;