-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 876 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 876 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: ['class', '[data-theme="dark"]'],
plugins: [],
theme: {
screens: {
"2xs": "390px",
xs: "500px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
"3xl": "2000px",
"4xl": "2250px",
"5xl": "3000px",
},
extend: {
colors: {
purpleish: {
100: "var(--ifm-color-primary)",
200: "var(--ifm-color-primary-darker)"
},
covey: {
50: "#FFF4F7",
100: "#FEE9EE",
200: "#FDC8D6",
300: "#FBA7BD",
400: "#F9668B",
500: "#F62459",
600: "#DD2050",
700: "#941635",
800: "#6F1028",
900: "#4A0B1B",
},
},
},
},
};