-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (49 loc) · 1.06 KB
/
tailwind.config.js
File metadata and controls
50 lines (49 loc) · 1.06 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
50
import tailwindScrollbar from "tailwind-scrollbar";
import tailwindDebugScreens from "tailwindcss-debug-screens";
import defaultTheme from "tailwindcss/defaultTheme";
import defaultColors from "tailwindcss/colors";
/**
* @type {import("tailwindcss").Config}
*/
export default {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
screens: {
xs: "420px",
...defaultTheme.screens,
},
extend: {
borderWidth: {
1: "1px",
},
colors: {
"unity-yellow": {
"600": "var(--unity-yellow)",
},
"unity-green": {
"600": "var(--unity-green)",
},
"unity-purple": {
"600": "var(--unity-purple)",
},
"unity-red": {
"600": "var(--unity-red)",
},
"primary": {
"500": "var(--accent)",
"600": "#255f65",
"700": "#18464b",
"800": "#0e2d31",
"900": "#082023",
},
},
},
},
plugins: [
tailwindDebugScreens,
tailwindScrollbar,
],
};