This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
110 lines (109 loc) · 2.68 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
106
107
108
109
110
/** @type {import('tailwindcss').Config} */
const { screens } = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
main: {
secondary: "#20222A",
primary: "#0A0A0A",
teal: "#00A99D",
lightBg: "#151823",
light_white: "rgba(255, 255, 255, 0.5)",
greenOpt: {
200: "rgba(0, 169, 157, 0.2)",
1000: "#00A99D",
},
blueOpt: {
200: "rgba(114, 137, 218, 0.2)",
1000: "#7289DA",
},
black: {
700: "rgb(10,10,10,0.7)",
},
white: {
500: "rgba(255, 255, 255, 0.05)",
},
lightTeal: "#b9f3ef",
},
},
boxShadow: {
"3xl": "0 2px 38px -1px rgba(0, 0, 0, 0.3)",
},
animation: {
leftIn: "leftIn 0.6s ease forwards",
leftOut: "leftOut 0.6s ease forwards",
rightIn: "rightIn 0.6s ease forwards",
rightOut: "rightOut 0.6s ease forwards",
},
keyframes: {
leftIn: {
"0%": {
transform: "translate(195px, 81px)",
opacity: 0,
},
"100%": {
transform: "translate(0, 0)",
opacity: 1,
},
},
leftOut: {
"0%": {
transform: "translate(0, 0)",
opacity: 1,
},
"99%": {
opacity: 0,
transform: "translate(-135px, -69px)",
},
"100%": {
opacity: 0,
transform: "translate(-145px, 80px)",
},
},
rightIn: {
"0%": {
transform: "translate(-145px, 80px)",
opacity: 0,
},
"100%": {
transform: "translate(0, 0)",
opacity: 1,
},
},
rightOut: {
"0%": {
transform: "translate(0, 0)",
opacity: 1,
},
"99%": {
opacity: 0,
transform: " translate(138px, -66px)",
},
"100%": {
opacity: 0,
transform: "translate(195px, 81px)",
},
},
},
fontFamily: {
miligrambold: ["MILIGRAM BOLD"],
miligramLight: ["MILIGRAM LIGHT"],
miligramMedium: ["MILIGRAM MEDIUM"],
battambangMedium: ["BATTAMBANG MEDIUM"],
battambangBold: ["BATTAMBANG BOLD"],
},
},
screens: {
xsm: "300px",
msm: "340px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
xxl: "1536px",
},
},
plugins: [require("autoprefixer")],
};