-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (31 loc) · 879 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
32 lines (31 loc) · 879 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}",],
darkMode: "class",
theme: {
extend: {
colors: {
"primary-green": "#09e5ab",
"nav-border": "#f0f0f0",
"muted": "#757575",
"light-gray": "#757575",
"primary-blue": "#0de0fe",
"dark-blue": "#15558d",
"primary-yellow": "#FFAE00",
"dark-muted": "#9198A6",
"dark-input-border": "#0D0063",
"dark-blue-input": "#030017",
"dark-placeholder": "#84938B",
"dark-card": "#050021",
"dark-footer": "#030017",
"dark-input-text": "#828FA0",
"modal-heading": "#272b41",
},
boxShadow: {
"light": "2px 2px 13px rgb(0 0 0 / 10%)",
"input-box": "0px 24px 24px rgb(212 237 255 / 30%)",
}
},
},
plugins: [],
}