-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 933 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
40
41
42
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./layouts/**/*.{js,ts,jsx,tsx,mdx}",
"./res/**/*.mdx"
],
theme: {
extend: {
colors: {
primary: {
"100": "#130007",
"200": "#380116",
"400": "#5D0124",
"600": "#70012B",
"700": "#B60045",
"900": "#FF0060",
"contrast": {
DEFAULT: "#fff",
"low": "#bbb"
}
},
secondary: "#FFF",
current: "currentColor"
},
screens: {
wide: "2000px",
uw: "2800px"
}
},
},
plugins: [
require("@headlessui/tailwindcss"),
require("./plugins/tailwind-text-shadow"),
plugin(({ addVariant }) => {
addVariant("is", ":is(&)");
addVariant("where", ":where(&)");
})
]
};