-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
100 lines (99 loc) · 2.24 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./icons/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
kinfolk: ["var(--font-kinfolk)", ...defaultTheme.fontFamily.serif],
},
fontSize: {
"kinfolk-headline": [
"4.375rem",
{
lineHeight: "3.4375rem",
},
],
"mobile-kinfolk-headline": [
"2.5rem",
{
lineHeight: "3.4375rem",
},
],
"inter-text": [
"1.625rem",
{
lineHeight: "2.175rem",
fontWeight: "600",
},
],
"inter-text-black": [
"1.75rem",
{
fontWeight: "900",
lineHeight: "2.125rem",
},
],
"inter-text-small": [
"1.125rem",
{
fontWeight: "600",
lineHeight: "1.375rem",
},
],
"mobile-inter-text": [
"1.25rem",
{
lineHeight: "1.5rem",
fontWeight: "600",
},
],
"mobile-inter-small": [
"0.875rem",
{
lineHeight: "1rem",
fontWeight: "600",
},
],
"mobile-inter-xsmall": [
"0.75rem",
{
fontWeight: "600",
lineHeight: "1.05rem",
},
],
},
colors: {
voices: {
beige: "#ebebd2",
gray: "#d9d9d9",
red: "#ed675d",
purple: "#5f5cf3",
},
},
animation: {
"color-shift": "color-shift 4500ms ease-out 800ms infinite",
},
keyframes: {
"color-shift": {
"0%, 100%": {
"background-color": "#000000",
},
"33.33%": {
"background-color": "#5f5cf3",
},
"66.66%": {
"background-color": "#ed675d",
},
},
},
},
},
plugins: [],
};