-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
54 lines (54 loc) · 1.7 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
"./website/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layout/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
"gradient-animation": "gradient-animation 4s ease infinite",
},
keyframes: {
"gradient-animation": {
"0%": {
"background-position": "0% 50%",
},
"50%": {
"background-position": "100% 50%",
},
"100%": {
"background-position": "0% 50%",
},
},
},
fontFamily: {
jostRegular: ["jostregular", "sans-serif"],
jostMedium: ["jostmedium", "sans-serif"],
jostBold: ["jostbold", "sans-serif"],
joyride: ["joyride", "sans-serif"],
outerSans: ["outerSans", "sans-serif"],
RubikBold: ["Rubik-Bold", "sans-serif"],
RubikSemibold: ["Rubik-SemiBold", "sans-serif"],
RubikMedium: ["Rubik-Medium", "sans-serif"],
aberMono: ["aberMono", "sans-serif"],
raleway: ["raleway", "sans-serif"],
ralewayRegular: ["ralewayRegular", "sans-serif"],
jostregular: ["jostregular", "sans-serif"],
jostmedium: ["jostmedium", "sans-serif"],
jostbold: ["jostbold", "sans-serif"],
IBMPlexBold: ["IBMPlexMonoBold", "sans-serif"],
IBMPlexRegular: ["IBMPlexMonoRegular", "sans-serif"],
IBMPlexMedium: ["IBMPlexMonoMedium", "sans-serif"],
IBMPlexSemiBold: ["IBMPlexMonoSemiBold", "sans-serif"],
Manrope: ["Manrope", "sans-serif"],
},
colors: {
"black-1": "#111111",
},
},
},
plugins: [],
};