-
Notifications
You must be signed in to change notification settings - Fork 12
/
tailwind.config.js
56 lines (56 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
corePlugins: {
preflight: false,
},
darkMode: ["class", '[data-theme="dark"]'],
theme: {
extend: {
colors: {
backgroundDark: "#161616",
backgroundLight: "#161616",
main: {
DEFAULT: "#FB40C1",
50: "#FFF4FB",
100: "#FEE0F5",
200: "#FEB8E8",
300: "#FD90DB",
400: "#FC68CE",
500: "#FB40C1",
600: "#FA09AF",
700: "#C7048A",
800: "#900364",
900: "#59023E",
},
secondary: {
DEFAULT: "#00F6FF",
50: "#B8FCFF",
100: "#A3FCFF",
200: "#7AFAFF",
300: "#52F9FF",
400: "#29F7FF",
500: "#00F6FF",
600: "#00C0C7",
700: "#008A8F",
800: "#005457",
900: "#001E1F",
},
gray: {
DEFAULT: "#73777A",
50: "#ededee",
100: "#C6C8CA",
200: "#B1B4B6",
300: "#9CA0A2",
400: "#878B8E",
500: "#73777A",
600: "#585B5D",
700: "#3D3F40",
800: "#212223",
900: "#060606",
},
},
},
},
plugins: [require("prettier-plugin-tailwindcss")],
};