-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
82 lines (81 loc) · 1.99 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
79
80
81
82
import typography from "@tailwindcss/typography";
/** @type {import('tailwindcss').Config} */
module.exports = {
// content: [
// './components/**/*.{vue,js,ts,jsx,tsx}',
// './layouts/**/*.{vue,js,ts,jsx,tsx}',
// './pages/**/*.{vue,js,ts,jsx,tsx}',
// './app.vue',
// './public/**/*.{html,vue}',
// ],
theme: {
extend: {
container: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
},
animation: {
border: "background ease infinite",
},
keyframes: {
background: {
"0%, 100%": { backgroundPosition: "0% 50%" },
"50%": { backgroundPosition: "100% 50%" },
},
},
colors: {
theme: {
primary: {
DEFAULT: "#ED4725",
50: "#FDEBE7",
100: "#FBDBD5",
200: "#F8B3A6",
300: "#F48F7B",
400: "#F16B51",
500: "#ED4725",
600: "#CB3011",
700: "#97240C",
800: "#631708",
900: "#340C04",
950: "#180602",
},
secondary: {
DEFAULT: "#F5C321",
50: "#FEF8E7",
100: "#FDF3D3",
200: "#FBE7A7",
300: "#F9DC7B",
400: "#F7D04F",
500: "#F5C321",
600: "#D7A70A",
700: "#A17D07",
800: "#6B5305",
900: "#362A02",
950: "#181301",
},
herosecondaryButton: {
DEFAULT: "#32376C",
50: "#E7E8F4",
100: "#CED0E8",
200: "#9DA2D2",
300: "#7076BD",
400: "#49509D",
500: "#32376C",
600: "#282C57",
700: "#1F2242",
800: "#13152A",
900: "#0A0B15",
950: "#05050A",
},
whatsapp: "#4dc247",
footerText: "#6C6C6C",
},
},
},
},
plugins: [typography],
};