-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
82 lines (81 loc) · 2.27 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,jsx,ts,tsx}",
"./src/components/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
serif: ["Abril Fatface", ...defaultTheme.fontFamily.serif],
},
animation: {
"gradient-x": "gradient-x 5s ease infinite",
"gradient-y": "gradient-y 5s ease infinite",
"gradient-xy": "gradient-xy 5s ease infinite",
},
keyframes: {
"gradient-y": {
"0%, 100%": {
"background-size": "400% 400%",
"background-position": "center top",
},
"50%": {
"background-size": "200% 200%",
"background-position": "center center",
},
},
"gradient-x": {
"0%, 100%": {
"background-size": "200% 200%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
"gradient-xy": {
"0%, 100%": {
"background-size": "400% 400%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
},
colors: {
gunuNavy: {
DEFAULT: "#1B4DFF",
50: "#e8edff",
100: "#d1dbff",
200: "#a4b8ff",
300: "#7694ff",
400: "#4971ff",
500: "#1B4DFF",
600: "#163ecc",
700: "#102e99",
800: "#0b1f66",
900: "#050f33",
},
gunuPinkLighter: "#FFE1DD",
gunuPink: "#FFE1DD",
gunuOrange: "#FF4E26",
gunuLightBlue: "#71D9FF",
gunuTeal: "#9FFFFF",
gunuDark: "#36364c",
},
backgroundImage: {
"gradient-1": "linear-gradient(to bottom, #FFE1DD, #D2D2FF)",
"gradient-2": "linear-gradient(to bottom, #D2D2FF, #D2FFE6)",
"gradient-3": "linear-gradient(to bottom, #D2FFE6, #FFE1DD)",
},
},
},
plugins: [],
}