-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
105 lines (103 loc) · 2.58 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const { transform } = require("typescript");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
keyframes: {
float: {
"0%": {
transform: "translateX(0)",
transform: "translateY(0)"
},
"50%": {
transform: "translateX(20%)",
transform: "translateY(20%)"
},
"100%": {
transform: "translateX(0)",
transform: "translateY(0)"
}
},
shake: {
"10%, 90%": {
transform: "translate3d(-1px, 0, 0)"
},
"20%, 80%": {
transform: "translate3d(2px, 0, 0)"
},
"30%, 50%, 70%": {
transform: "translate3d(-4px, 0, 0)"
},
"40%, 60%": {
transform: "translate3d(4px, 0, 0)"
}
}
},
animation: {
float: "float 3s infinite ease-in-out",
shake: "shake 0.82s cubic-bezier(.36,.07,.19,.97) both"
},
fontSize: {
md: "1.25rem",
lg: "1.5rem",
xl: "2rem",
xxl: "3.5rem"
},
fontFamily: {
rubik: ["Rubik"],
ohm: ["Ohm"]
},
colors: {
sky_100: "#ABE1FF",
sky_300: "#18AAFF",
blue_300: "#385DDF",
blue_neon: "#DDE2FF",
blue_dark: "#20225f",
blue_rgba: "rgba(0, 26, 255, 0.17)",
blue_border_rgba: `rgba(0, 26, 255, 0.17)`,
purple_main: "#E149A9",
purple_dark: "#0D0A22",
purple_300: "#9EA8FF",
purple_hover: "#3b3561",
purple_500: "#4F38DF",
pink_700: "#B438DF",
pink_400: "#FF8F8F",
pink_300: "#DF389C",
pink_200: "#D936BF",
pink_100: "#FFABCE",
orange_300: "#FFC985",
orange_100: "#FFEDCC",
turquoise_300: "#30D7E1",
purple_gradient_1: "#340B67",
purple_gradient_2: "#0C091A",
blue_purple: "#002AFF",
beige: "#D9D9D9",
white: "#FFF",
purple_card: "#1E2D79",
cyan: "#46C8E5"
},
textColor: {
purple_main: "#EB6EFF",
purple_main_hover: "#b49fcc"
},
backgroundColor: {
body_bg: "#FFFAF1"
},
screens: {
md: "700px"
},
fontFamily: {
rubik: ["Rubik", "sans-serif"],
ohm: ["Ohm"]
}
}
},
plugins: [require("daisyui")]
};