-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (52 loc) · 1.77 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
color: {
primary: "#000000", // Primary Color
secondary: "#025949", // Secondary Color
scondary_hover: "#7dab80", // Secondary Color
highlight: "#654321", // Highlight Color
background_1: "#FFA500", // Background_1
background_2: "#C2E3A3", // Background_2
white: "#FFFFFF", // White
},
backgroundColor: {
primary: "#000000", // Primary Color
secondary: "#025949", // Secondary Color
scondary_hover: "#016450", // Secondary Color
highlight: "#654321", // Highlight Color
background_1: "#FFA500", // Background_1
background_2: "#C2E3A3", // Background_2
white: "#FFFFFF", // White
},
textColor: {
primary: "#000000", // Primary Color
secondary: "#025949", // Secondary Color
scondary_hover: "#2a3d2b", // Secondary Color
highlight: "#654321", // Highlight Color
background_1: "#FFA500", // Background_1
background_2: "#C2E3A3", // Background_2
white: "#FFFFFF", // White
},
backgroundImage: {
main: "url('https://s6.imgcdn.dev/Llo6e.jpg')",
second: " url('https://s6.imgcdn.dev/Ll8bC.md.jpg')",
},
borderColor: {
primary: "#000000", // Primary Color
secondary: "#025949", // Secondary Color
scondary_hover: "#2a3d2b", // Secondary Color
highlight: "#654321", // Highlight Color
background_1: "#FFA500", // Background_1
background_2: "#C2E3A3", // Background_2
white: "#FFFFFF", // White
},
fontFamily: {
mali: ["'Mali'", "italic"],
},
},
},
plugins: [],
};