-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (48 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
49 lines (48 loc) · 1.12 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
44
45
46
47
48
49
// tailwind.config.js
module.exports = {
purge: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
darkslategray: "#312f37",
white: "#ffffff",
black: "#000000",
primary: "#160A4C",
secondary: "#6049CD",
accent: "#84E9F5",
success: "#70CF97",
error: "#F76659",
gray: "#48535B",
gray100: "#F6F8F9",
gray200: "#EEF0F2",
gray300: "#E5E9EB",
gray400: "#DDE2E4",
gray500: "#B0BABF",
gray600: "#84919A",
gray800: "#48535B",
purple100: "#ECE8FF",
purple150: "#CBC0FF",
purple200: "#B0A4E6",
purple300: "#6049CD",
purple400: "#4529C9",
purple500: "#160A4C",
yellow100: "#FFF5E8",
yellow300: "#FFC704",
gold: "#ffc704",
green: "#4fd14f",
green100: "#F3FDFC",
green200: "#70CF97",
green300: "#189F9A",
teal: "#189F9A",
red50: "#FBE4E3",
red100: "#F76659",
red200: "#DE0E0E",
blue100: "#d1fffe",
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};