-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./data/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontSize: {
heading: [
"3.5rem",
{
fontWeight: "600",
fontFamily: {
lexend: ["var(--font-lexend)", "sans-serif"],
},
},
],
text: [
"1.5rem",
{
fontWeight: "400",
fontFamily: {
lexend: ["var(--font-lexend)", "sans-serif"],
},
},
],
},
fontFamily: {
lexend: ["var(--font-lexend)", "sans-serif"],
},
backgroundImage: {
arrow: "url('/chevron.png')",
},
colors: {
acm: {
blue: "#82aaff",
lightpurple: "#c792ea",
yellow: "#ffd700",
green: "#c3e88d",
red: "#ff5370",
gray: "#8f93a2",
pink: "#f07178",
lightblue: "#89ddff",
darkgray: "#525975",
orange: "#f78c6c",
marine: "#80cbc4",
purple: "#da70d6",
white: "#ffffff",
black: "#000000",
},
},
},
},
plugins: [],
};