forked from IIIT-Pune/iConclave23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 loc) · 1.51 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
nightcore: ["Nightcore", "sans"],
miso: ["miso", "sans"],
newshape: ["NewShape", "sans"],
captainamerica: ["CaptainAmerica", "sans"],
silkroad: ["Silkroad", "sans"],
majormono: ["Major Mono Display", "sans"],
octobercrow: ["Octobercrow", "sans"],
veterantypewriter: ["veterantypewriter", "sans"],
1942: ["oneninefourtwo", "sans"],
punktypewriter: ["punktypewriter", "sans"],
liquidism: ["liquidism", "sans"],
monoton: ["Monoton", "cursive"],
grandstander: ["Grandstander", "cursive"],
kodchasan: ["Kodchasan", "cursive"],
smarkan: ["Samarkan", "cursive"],
fuzzybubbles: ["FuzzyBubbles", "cursive"],
punishment: ["Punishment", "cursive"],
harryp: ["HARRYP", "cursive"],
Horrors: ["Horrors", "cursive"],
mrsmonster: ["mrsmonster", "cursive"],
youmurdererbb: ["youmurdererbb", "cursive"],
},
colors: {
lockoutred: "#571d20",
cognitionbg: "#D7D6D7",
frameflickbg: "#FCE61F",
},
width: {
128: "32rem",
192: "48rem",
256: "64rem",
},
height: {
128: "32rem",
},
fontSize: {
"10xl": "10rem",
"11xl": "12rem",
"12xl": "14rem",
"13xl": "16rem",
},
},
},
plugins: [],
};