-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.js
86 lines (85 loc) · 1.87 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const colors = require("tailwindcss/colors");
module.exports = {
purge: {
enabled: true,
content: [
"./_includes/**/*.html",
"./_layouts/**/*.html",
"./_posts/**/*.md",
"./pages/**/*.md",
"*.html",
],
},
darkMode: false,
theme: {
container: {
padding: "2rem",
},
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: {
100: "#f5dade",
200: "#eab2ba",
300: "#df8a97",
400: "#d46273",
500: "#c93a4f",
600: "#a32d3e",
700: "#7B222F", // primary color
800: "#5b1923",
900: "#3b1017",
},
yellow: {
100: "#f5d5af",
200: "#f3c998",
300: "#f0bd81",
400: "#edb26a",
500: "#eaa654",
600: "#e89a3d",
700: "#E58E26", // primary color
800: "#c17417",
900: "#935812",
},
purple: {
100: "#eddaf3",
200: "#dbb4e6",
300: "#c88ed9",
400: "#b668cc",
500: "#a442bf",
600: "#84349a",
700: "#632774", // primary color
800: "#491d55",
900: "#2f1237",
},
mavidurak: {
100: "#a7deff",
200: "#74caff",
300: "#41b7ff",
400: "#0ea4ff",
500: "#0087da",
600: "#0068a7",
700: "#004874", // primary color
800: "#00385a",
900: "#001927",
},
},
fontFamily: {
sans: ["ui-sans-serif", "system-ui"],
serif: ["ui-serif", "Georgia"],
mono: ["ui-monospace", "SFMono-Regular"],
rubik: ["Rubik"],
poppins: ["Poppins", "sans-serif"],
cormorant: ["Cormorant Unicase"],
ubuntu: ["Ubuntu"],
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};