-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
26 lines (26 loc) · 736 Bytes
/
tailwind.config.js
File metadata and controls
26 lines (26 loc) · 736 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
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
xs: "360px",
},
colors: {
"dark-grey-primary": "#111111",
"dark-grey-secondary": "#202124",
"dark-grey-accent": "#292A32",
"medium-grey": "#8C8796",
"dim-grey": "#68656F", //
"brand-purple-primary": " #5A4CAD",
"brand-purple-secondary": "#7892EE",
},
},
},
plugins: [],
};