-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
132 lines (129 loc) · 5.7 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
darkMode: "class", // or 'media' or 'class'
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: (theme) => ({
"mobile-jumbotron":
"linear-gradient(to right, #01010190, #01010190), url('~/assets/mobile-jumbotron.jpg')",
"profile-image": "url('~/assets/profile-pic.jpg')",
// 'profile-image': "url('~/assets/emino.png')",
"desktop-jumbotron-dark":
"linear-gradient(to right, #010101, #00000010), url('~/assets/emino.jpg')",
"desktop-jumbotron":
"linear-gradient(to right, #01010160, #00000010), url('~/assets/desktop-jumbotron.jpg')",
footer:
"linear-gradient(to right, #010101, #00000080), url('~/assets/footer.jpg')",
"footer-md":
"linear-gradient(to right, #010101, #00000080), url('~/assets/footer-md.jpg')",
"endless-constellation": "url('~/assets/endless-constellation.svg')",
circuit: "url('~/assets/circuit.svg')",
sprinkle: "url('~/assets/Sprinkle.svg')",
"dark-gradient-line":
"linear-gradient(90deg, #403d41 0%, #181719 65%, #686369 100%)",
"gradient-line-md":
"linear-gradient(90deg, #9aaacb 0%, #3c4e73 65%, #c8d1e3 100%)",
"gradient-line":
"linear-gradient(90deg, #929891 0%, #444944 65%, #bcc2bb 100%)",
"link-dark":
"linear-gradient(90deg, #B88827 0%, #B3976E 65%, #B88827 100%)",
"link-md":
"linear-gradient(90deg, #3A2B0C 0%, #B3976E 65%, #73613C 100%)",
link: "linear-gradient(90deg, #62565E 0%, #B3976E 35%, #473E44 70%, #B88827 100%)",
"svg-bg":
"url('data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%235c4c4e' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23857667'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E');",
// 'footer-texture': "url('/img/footer-texture.png')",
}),
colors: {
"dark-brown": "#2b282c",
"brownish-purple": "#403d41",
"light-brownish-purple": "#5c4c4e",
cream: "#ecd2b7",
"dark-cream": "#46322b",
red: "#c23e3e",
"dark-red": "#8e1313",
"whitish-blue": "#eef3ff",
"sky-blue": "#9aaacb",
"light-blue": "#6e8ab3",
"dark-blue": "#0c1b3a",
"medium-blue": "#3c4e73",
"whitish-green": "#ccd9cf",
"light-green": "#767d75",
"medium-green": "#4c574f",
"dark-green": "#434d46",
transparent: "transparent",
current: "currentColor",
brown: {
50: "#f8f7f7",
100: "#f0eeee",
200: "#dddada",
300: "#c0b9ba",
400: "#9d9394",
500: "#817677",
600: "#6a5f5f",
700: "#564e4e",
800: "#494343",
900: "#403a3a",
950: "#181616",
},
midnight: {
50: "#eef8ff",
100: "#d8eeff",
200: "#bae1ff",
300: "#8bd0ff",
400: "#54b5ff",
500: "#2d93ff",
600: "#1673fa",
700: "#0f5ce6",
800: "#134aba",
900: "#164292",
950: "#0c1b3a",
},
},
},
fontFamily: {
sans: ["ui-sans-serif", "system-ui"],
serif: ["ui-serif", "Georgia"],
mono: ["ui-monospace", "SFMono-Regular"],
// header: ["Saira", "sans-serif"],
header: ["Titillium Web", "sans-serif"],
display: ["Saira", "sans-serif"],
body: ["Open Sans"],
montserrat: ["Montserrat", "sans-serif"],
inter: ["Inter", "sans-serif"],
titilium: ["Titillium Web", "sans-serif"],
quicksand: ["Quicksand", "sans-serif"],
"cutive-mono": ["Cutive Mono", "monospace"],
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
},
dropdown: {
"0%": { opacity: "0", maxHeight: "0px", padding: "0" },
"100%": { opacity: "1", maxHeight: "max-content" },
},
moveUp: {
"0%": { top: "100vh" },
"100%": { top: "0" },
},
loadingLine: {
"0%": { width: "0" },
"100%": { width: "100%" },
},
},
animation: {
dropdown: "dropdown .4s ease-in-out 1",
wiggle: "wiggle 1s ease-in-out infinite",
moveUp: "moveUp .5s ease-in-out 1",
loadingLine: "loadingLine .5s ease-in-out 1",
},
},
plugins: [],
};