-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
56 lines (55 loc) · 1.38 KB
/
tailwind.config.ts
File metadata and controls
56 lines (55 loc) · 1.38 KB
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: ["class"],
theme: {
extend: {
backgroundColor: {
"white-bg": "rgb(254,255,254)",
"dark-bg": "rgb(15, 15, 15)",
"blur-black": "rgba(15, 15, 15, 0.4)",
"blur-white": "rgba(255, 255, 255, 0.4)",
"content-header-black": "#1B1A1E",
"content-header-white": "#F2F6FF",
},
width: {
"276": "68rem",
},
height: {
"2vh": "120dvh",
},
colors: {
"gradient-start": "#93A1F7",
"gradient-end": "#52C7C6",
},
borderWidth: {
"1": "1px",
},
maxWidth: {
"138": "38rem",
"186": "50rem",
"276": "68rem",
},
typography: {
quoteless: {
css: {
"blockquote p:first-of-type::before": { content: "none" },
"blockquote p:first-of-type::after": { content: "none" },
"p code::before": { content: "none" },
"p code::after": { content: "none" },
},
},
},
listStyleType: {
square: "square",
roman: "upper-roman",
},
},
},
plugins: [require("@tailwindcss/typography")],
};
export default config;