-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
56 lines (55 loc) · 1.04 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
48
49
50
51
52
53
54
55
56
module.exports = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
colors: {
brand: {
primary: "#D0D6F9",
black: "#0B0D17",
white: "#FFFFFF",
},
},
fontFamily: {
serif: ["Bellefair", "serif"],
sans: ["Barlow", "sans-serif"],
mono: ["Barlow Condensed", "sans-serif"],
},
fontSize: {
nav: [
"16px",
{
letterSpacing: "2.7px",
},
],
body: "18px",
subh2: [
"14px",
{
letterSpacing: "2.35px",
},
],
subh1: "28px",
h5: [
"28px",
{
letterSpacing: "4.75px",
},
],
h4: "32px",
h3: "56px",
h2: "100px",
h1: "150px",
},
extend: {
keyframes: {
hovering: {
"0%, 100%": { transform: "translateY(8px)" },
"50%": { transform: "translateY(-8px)" },
},
},
animation: {
hover: "hovering 4s infinite ease-in-out",
},
},
},
plugins: [],
};