-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (39 loc) · 973 Bytes
/
tailwind.config.js
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
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./utils/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "selector",
theme: {
extend: {
width: {
container: "1100px",
blog: "900px",
},
colors: {
...colors,
black: "#000",
text: "#1F1F1F",
primary: "#4781FF",
disable: "#C2C2C2",
lightGray: "#f0f0f0",
white: "#fff",
twitter: "#1DA1F2",
github: "#1D2227",
instagram: "#000000",
linkedin: "#2567C2",
contact: "#222",
darkBlack: "#12131B",
darkText: "#cecece",
darkDisable: "#AEAEAE",
},
backgroundImage: {
"bg-gradient":
"linear-gradient(180deg, rgba(187, 20, 130, 0) 0%, rgb(241 129 189 / 42%) 36%, rgba(71, 129, 255, 0.7) 80.5%);",
},
},
},
plugins: [],
};