-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.ts
45 lines (44 loc) · 1.45 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
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}"
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))"
},
borderColor: {
"card-border-color": "rgba(31, 35, 40, 0.15)",
"border-blue": "#0969DA",
"comment-card-border": "#D0D7DE"
},
backgroundColor: {
"card-bg": "#F6F8FA",
"secondary-blue": "#0969DA",
"secondary-orange": "#EF7A0E",
"grid-green": "#39D353",
"grid-blue": "#0783F5",
"grid-yellow": "#E7C23E",
"grid-gray": "#EEEEEE"
},
boxShadow: {
"card-shadow": "0px 1px 0px 0px rgba(27, 31, 35, 0.04)"
},
colors: {
card: {
"light-black": "#636C76",
"text-black": "#24292F",
"comment-card-black": "#1F2328",
"secondary-blue": "#0969DA"
}
}
}
},
plugins: []
}
export default config