forked from JungHBae/FE-WithIn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (41 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
43 lines (41 loc) · 1.2 KB
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
/** @type {import('tailwindcss').Config} */
const colors = {
mainPurple: "#583f72",
palePurple: "#EDE9FE",
textPurple: "#b185dd",
infoTextGray: "#4B5563",
commonDarkText: "#292611",
colorForAreaTest: "#FBBF24",
secondaryBgColor: "#EBE0FF",
sectionPurple: "#e7d4ff",
};
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
backgroundColor: {
mainPurple: colors.mainPurple,
backgroundPurple: colors.palePurple,
buttonPurple: colors.mainPurple,
white: "#fff",
colorForAreaTest: colors.colorForAreaTest,
secondaryBgColor: colors.secondaryBgColor,
sectionPurple: colors.sectionPurple,
},
textColor: {
textPurple: colors.textPurple,
darkPurple: colors.mainPurple,
white: "#fff",
questionTextGray: colors.infoTextGray,
commonTextColor: colors.commonDarkText,
},
borderColor: {
mainPurple: colors.mainPurple,
},
ringColor: {
mainPurple: colors.mainPurple,
// default: colors.mainPurple,
},
extend: {},
},
plugins: [],
};