forked from lucavallin/verto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (66 loc) · 1.41 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
64
65
66
67
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
prefix: "",
important: false,
separator: ":",
theme: {
extend: {
fontFamily: {
sans: ["var(--font-inter)", ...fontFamily.sans]
}
},
colors: {
transparent: "transparent",
primary: "#cb3364",
primary_light: "#b72e5a",
secondary: "#52575c",
light: {
100: "#ffffff",
200: "#f5f5f5",
300: "#eeeeee",
400: "#c0c1c3"
},
dark: {
100: "#373c49",
200: "#2c303a",
300: "#21242c",
400: "#16181d"
}
},
borderRadius: {
none: "0",
sm: "0.125rem",
md: "0.25rem",
lg: "0.375rem",
full: "9999px"
},
borderWidth: {
DEFAULT: "1px"
},
fontFamily: {
sans: ["Inter"],
serif: ["Georgia", "serif"],
mono: ["Menlo", "monospace"]
},
fontSize: {
xs: "0.75rem",
sm: "0.875rem",
base: "1rem",
lg: "1.25rem",
xl: "1.375rem",
"2xl": "1.75rem",
"3xl": "2.75rem",
"4xl": "4rem"
},
fontWeight: {
normal: "400",
medium: "500",
semibold: "600",
bold: "700"
}
},
corePlugins: {}
};