-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
47 lines (47 loc) · 1.73 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
fontFamily: {
miner: "Minercraftory",
alagard: "Alagard",
poppins: "Poppins",
},
extend: {
backgroundImage: {
header: "url('./assets/images/main-bg.webp')",
map: "url('./assets/images/map-bg.svg')",
baguette: "url('./assets/images/baguette.svg')",
heart: "url('./assets/images/heart.svg')",
"gaiartos-map": 'url("./assets/images/gaiartos-map.webp")',
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
colors: {
"purple-navy": "#4E598C",
"lavender-blue": "#E4D9FF",
"gold-crayola": "#F9C784",
"yellow-orange": "#FCAF58",
"mango-tango": "#FF8C42",
"tag-owner-1": "#FF8C42",
"tag-owner-2": "#FFBB61",
"tag-dev-1": "#1ABC9C",
"tag-dev-2": "#2ECC71",
"tag-mod-1": "#9E4395",
"tag-mod-2": "#CA54FF",
"tag-builder-1": "#F1C40F",
"tag-builder-2": "#FFBB61",
"tag-scenar-1": "#13A1DE",
"tag-scenar-2": "#2C29D1",
"tag-illu-1": "#5575cc",
"tag-illu-2": "#2c4eab",
"tag-contributor-1": "#007E51",
"tag-contributor-2": "#01A7BD",
"tag-multi-1": "#c94b4b",
"tag-multi-2": "#4b134f",
"tag-cm-1": "#e81e63",
"tag-cm-2": "#9c27b0",
},
},
},
plugins: [],
};