-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (34 loc) · 907 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (34 loc) · 907 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
//Primary Colors
"ecnmy-skyblue": "#19C2FA",
"ecnmy-mint": "#43D5A6",
"ecnmy-black": "#1D1D1B",
//Primary Colors
//background color
"ecnmy-charcoal": "#142A37",
"ecnmy-breeze": "#EEF0F1",
"ecnmy-white": "#FFFFFF",
//background color
//secondary highlight colors
"ecnmy-cranberry": "#EA4D4E",
"ecnmy-tawny": "#9E6214",
"ecnmy-slate": "#A0AFB5",
"ecnmy-mustard": "#DCBB06",
"ecnmy-grape": "#6F50FF",
"ecnmy-rose": "#ED7A8A",
"ecnmy-navy": "#036384",
"ecnmy-pumpkin": "#E57333",
//secondary highlight colors
},
},
},
plugins: [],
};