-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
44 lines (44 loc) · 1023 Bytes
/
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
module.exports = {
mode: "jit",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}", //
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
corePlugins: {
container: false,
},
colors: {
transparent: "transparent",
current: "currentColor",
black: "#000",
red: "#87200A",
white: "#fff",
green: "#2C5D06",
gray: "#BCBCBC",
blue2: "#294F74",
yellow: "#D4B733",
blue: "#15ADE2",
black1: "#1a1919eb",
black2: "#000000eb",
black3: "#201e1eeb",
},
fontFamily: {},
extend: {
animation: {
bounce1: "bounce 6s infinite",
},
},
},
variants: {
extend: {
screens: {
"3xl": "1920px",
},
},
},
plugins: [
// ...
require("@tailwindcss/aspect-ratio"),
],
};