-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.12 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
const { fontFamily } = require("tailwindcss/defaultTheme")
const colors = require("tailwindcss/colors")
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx,md,mdx}"],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-poppins)", ...fontFamily.sans],
},
colors: {
primary: {
DEFAULT: "#2FCD9A",
50: "#C2F1E2",
100: "#B2EDDA",
200: "#91E6CA",
300: "#6FDEBA",
400: "#4ED6AB",
500: "#2FCD9A",
600: "#259F78",
700: "#1A7255",
800: "#104433",
900: "#051611",
},
dark: {
DEFAULT: "#1a1a1a",
50: "#f8f0f2",
100: "#d9d9d9",
200: "#bfbfbf",
300: "#a6a6a6",
400: "#8c8c8c",
500: "#737373",
600: "#595959",
700: "#404040",
800: "#2e2e2e",
900: "#120b0d",
},
light: {
...colors.zinc,
DEFAULT: colors.zinc[50],
},
},
},
},
plugins: [
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/line-clamp"),
],
}