forked from tailscale/golink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1018 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
41
42
43
44
45
46
47
48
49
module.exports = {
content: ["./tmpl/*.html"],
theme: {
colors: {
blue: {
50: "rgba(228, 233, 240, 0.15)",
100: "rgba(220, 233, 242, 0.6)",
200: "rgba(43, 123, 185, 0.15)",
300: "#80bdff",
500: "#4a7ddd",
600: "#4D78C8",
700: "#496495",
800: "#2A4067",
},
gray: {
50: "#faf9f8",
100: "#f6f4f2",
200: "#E6E4E2",
300: "#D6D2CC",
400: "#B6B0AD",
500: "#9F9995",
600: "#666361",
700: "#474645",
800: "#343433",
900: "#242424",
},
white: '#fff',
current: 'currentColor',
},
extend: {
typography: {
DEFAULT: {
css: {
'code::before': {
'content': '',
},
'code::after': {
'content': '',
},
},
},
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}