-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
63 lines (60 loc) · 1.46 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
darkMode: "class",
content: ["./src/**/*.html"],
theme: {
fontFamily: {
sans: ['"Inter", sans-serif'],
},
fontSize: {
sm: "0.75rem",
base: "0.875rem",
lg: "1.125rem",
xl: "1.5rem",
"2xl": "1.875rem",
"3xl": "2.25rem",
"4xl": "2.441rem",
"5xl": "3.052rem",
},
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
color: "#637381",
a: {
color: "#637381",
"&:hover": {
color: "#624BFF",
},
},
},
},
}),
colors: {
gray: {
100: "#f1f5f9",
200: "#f4f6f8",
300: "#dfe3e8",
400: "#c4cdd5",
500: "#919eab",
600: "#637381",
700: "#454f5b",
800: "#212b36",
900: "#161c24",
},
indigo: {
600: "#624bff",
800: "#5340d9",
},
},
},
},
variants: {},
plugins: [
require("@tailwindcss/forms")({
strategy: "base", // only generate global styles
}),
require("@tailwindcss/typography"),
],
};