-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
44 lines (44 loc) · 1.12 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
43
44
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
"dark-main": "#1A1A1A",
"dark-sub": "#37474F",
"light-main": "#E0E0E0",
"light-sub": "#DEE4E7",
"orange-dark": "#BC210F",
"orange-mid": "#FF5733",
"orange-light": "#E9560C",
"green-dark": "#41DC80",
"green-light": "#77FAB4",
"blue-dark": "#0061A6",
// "blue-mid": "#0880CC",
"blue-mid": "#01BAEF",
"blue-light": "#10A7FA",
"pink-dark": "#EF3054",
"wa-green":"#25D366",
"sc-yellow":"#FFFC00",
"ig-purple":"#833AB4",
"ig-pred":"#E1306C",
"mail-red":"#BB0010",
"ln-blue":"#0072b1",
"hpe-green":"#00b388",
},
height: {
nav: "95.8%",
},
fontFamily: {
poppins: ["Poppins", ...defaultTheme.fontFamily.sans],
},
},
},
variants: {
extend: {
backgroundClip: ["hover"],
},
},
plugins: [],
};