-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
78 lines (72 loc) · 1.88 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module.exports = {
darkMode: "class",
content: [
"./src/**/*.{html,js}",
"./src/Components/**/*.{html,js}",
"./src/Pages/**/*.{html,js}",
"./src/**/*.{html,js}",
"./src/Components/Button/index.js",
"./src/Components/LayoutComponents/Header/index.js",
"./public/index.html",
],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
logl: "1110px",
xl: "1280px",
"2xl": "1536px",
},
colors: {
// background: bg-
//font color: text-
beige: "#F4DFCC",
coral: "#FA9583",
lightcoral: "#FFC3B9",
lightBlue: "#D6EAF8",
mainBlue: "#21618C",
blueWhite: "#EBF5FB",
blue: "#85C1E9",
grey: "#575353",
black: "#0B0D17",
aqua: "#A2D9CE",
white: "#FFFFFF",
transparent: "transparent",
//dark Mode color:
darkBlue: "#B6E2FF",
darkContHero: "#353535",
darkIcon: "#292929",
darkMainBlack: "#1D1D1D",
darkSave: "#B2F5E8",
darkCancel: "#F48175",
darkBg: "#111111",
darkBlockHome: "#545353",
darkTable: "#D5D8DC",
},
fontFamily: {
//font-
lato: ["Lato", "sans-serif"],
shizuru: ["Shizuru", "cursive"],
},
fontSize: {
mobileBody: ["12px", "14.4px"],
mobileButton: ["13px, 15.6px"],
mobileSidebar: ["17px", "28.8px"],
mobileHeroHeading: ["18px", "21.6px"],
desktopMain: ["18px", "21.6px"],
desktopHeroHeading: ["28px", "43.2px"],
desktopSidebar: ["20px", "28.8px"],
loginDesktop: ["96px", "115.2px"],
loginApplications: ["40px", "52.6px"],
},
boxShadow: {
//shadow-
esm: "0 2px 2px 0px rgba(0 0 0 / 0.10)",
sm: "0 4px 4px 0px rgba(0 0 0 / 0.25)",
lg: "5px 5px 10px 2px rgba(0 0 0 / 0.25)",
},
extend: {},
plugins: [require("tailwindcss"), require("autoprefixer")],
},
};