-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
42 lines (36 loc) · 1.02 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
// bgs
"primaryBg": "#fff", //
"secondBg": "#e8e8e8", // light
"tertiaryBg": "#1e1e1e", // dark
"compBg": "#CB473A", // complementary - analagous
"darkBg": "#252636",
"darkBgHover": "#333547",
"darkBgLight": "#2a2a3c",
"lightBg": "#ffffff",
"lightBgDark": "#f5f5f5",
// highlights
"highlight": "#A6372C",
"highlightHover": "#b53a2d",
"highlightOpac": 'rgba(166, 55, 44, .8)',
"highlightDark": "#4D4D4D",
// text
"primaryText": "#000000",
"secondText": "#4D4D4D",
"highlightText": "#ffffff",
"highlightTextHover": "#ffffff",
// special
"drawerClearBg": "rgba(0,0,0,.7)",
"clear": "rgba(0,0,0,0)"
}
},
},
plugins: [],
}