-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
124 lines (118 loc) · 3.95 KB
/
tailwind.config.ts
File metadata and controls
124 lines (118 loc) · 3.95 KB
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/containers/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
rainforest: "url('/rainforest_mist_carbonbank_1920x784.jpg')",
forestgpt: "url('/rainforest_gpt.png')",
forestmizu: "url('/rainforest_mizushima.jpg')",
forestling: "url('/rainforest_lingchor.jpg')",
forestwaren: "url('/rainforest_waren.jpg')",
forestparrot: "url('/rainforest_parrot.jpg')",
forestair: "url('/rainforest_air.jpg')",
forestbush: "url('/rainforest_bush.jpg')",
forestkrystal: "url('/rainforest_krystal.jpg')",
foresttrees: "url('/rainforest_trees.jpg')",
forestho: "url('/rainforest_hideout.jpg')",
forestcreek: "url('/rainforest_creek.jpg')",
forestbomen: "url('/rainforest_bomen.jpg')",
peruvista: "url('/peru-vista.png')",
devs: "url('/devs.png')",
air: "url('/bg-air.png')",
dalle: "url('/dalle.png')",
forest: "url('/forest_green.jpg')",
autumnforest: "url('/forest_autumn.jpeg')",
riverestuary: "url('/River_estuary_drone_view.jpg')",
jadewetlands: "url('/Jade_Wetlands.jpg')",
lafayette: "url('/lafayette.jpg')",
},
boxShadow: {
"md-inverted": "-2px 2px 15px -10px rgba(0,0,0,0.75)",
},
colors: {
// primary: "#2D3250",
// primary: "#282C47",
primary: "#22263d",
header: "#323652",
secondary: "#424769",
tertiary: "#7077A1",
darker: "#1b1f33",
darkest: "#141726",
accent: "#d8def2",
// accentSecondary: "#596FB7",
accentSecondary: "#8b9dd9",
accentTertiary: "#bec8ed",
textColor: "#ffffff",
alternateLight: "#fef08a",
alternateMedium: "#fde047",
alternateFull: "#facc15",
alternateGray: "#4f4b37",
stellarYellow: "rgb(253, 218, 36)",
},
fontFamily: {
noto: ["Noto Sans", "sans-serif"],
},
animation: {
fade: "fadeOut 1s ease-in forwards",
dashboardnavbarstart: "dashboardNavbarIn .2s ease-in forwards",
dashboardnavbarend: "dashboardNavbarOut .2s ease-in forwards",
showtopbar: "topbarIn .3s ease-in forwards",
hidetopbar: "topbarOut .3s ease-in forwards",
showrequestcertificate: "retirementsOut .2s ease-out forwards",
hiderequestcertificate: "retirementsIn .5s ease-in forwards",
},
keyframes: () => ({
fadeOut: {
"0%": { opacity: "100" },
"100%": { opacity: "0" },
},
dashboardNavbarIn: {
"0%": { width: "0%", opacity: "0" },
"100%": { width: "100%", opacity: "100" },
},
dashboardNavbarOut: {
"0%": { width: "100%" },
"100%": { width: "0%" },
},
topbarIn: {
"0%": { top: "-80px" },
"100%": { top: "0px" },
},
topbarOut: {
"0%": { top: "0px" },
"100%": { top: "-80px" },
},
retirementsOut: {
"0%": { transform: "translateX(-50%)", left: "50%", height: "40px" },
"100%": {
transform: "translateX(0)",
left: "calc(100% - 24px)",
height: "24px",
},
},
retirementsIn: {
"0%": {
transform: "translateX(0)",
left: "calc(100% - 24px)",
height: "36px",
},
"100%": {
transform: "translateX(-50%)",
left: "50%",
height: "40px",
},
},
}),
},
},
};
export default config;