-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (39 loc) · 962 Bytes
/
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
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false, // disable Tailwind reset to avoid overriding Docusaurus styles
},
content: ["./src/**/*.{js,jsx,ts,tsx}", "../docs/**/*.mdx"],
darkMode: ["class", '[data-theme="dark"]'], // hooks into docusaurus' dark mode settings
theme: {
colors: {
white: "#fff",
primary: {
300: "#13cc72",
400: "#11b565",
500: "#10ad61",
600: "#0f9d58",
default: "#0f9d58",
700: "#0d8d4f",
800: "#0d854b",
900: "#0a6e3e",
},
secondary: {
300: "#ededed",
400: "#d4d4d4",
500: "#adadad",
600: "#878787",
default: "#878787",
700: "#616161",
800: "#141414",
900: "#0d0d0d",
},
success: "#0d8d4f",
warning: "#f4b400",
danger: "#db4437",
},
extend: {},
},
plugins: [],
};