-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (49 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
darkMode: "selector",
theme: {
fontFamily: {
popins: ["sans-serif", "Poppins"],
cursive: ["cursive", "Cedarville Cursive"],
},
screens: {
xs: "270px",
sm: "300px",
md: "500px",
lg: "950px",
},
extend: {
colors: {
color1: "#050d25",
color2: "#58fff5",
color3: "#2489e2",
lightMode1: {
bgColorWhite: "#ffffff",
txColor: "#333333",
btnColor: "#2489e2",
accent: "58fff5",
},
lightMode2: {
bgColorGray: "#f2f2f2",
txColor: "#333333",
btnColor: "#2489e2",
accent: "58fff5",
},
lightMode3: {
bgColorWhite: "#ffffff",
txColor: "#000000",
btnColor: "#2489e2",
accent: "58fff5",
},
lightMode4: {
bgColorGray: "#f5f5f5",
txColor: "#333333",
btnColor: "#2489e2",
accent: "58fff5",
},
},
},
},
plugins: [],
};