-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 952 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
colors: {
white: "#FFFFFF",
"universe-blue": "#070724",
"dark-gray": "#38384F",
gray: "#838391",
"dark-cyan": "#419EBB",
"light-orange": "#EDA249",
purple: "#6f2ed6",
"light-red": "#D14C32",
red: "#D83A34",
"dark-orange": "#CD5120",
cyan: "#1ec2a4",
"dark-blue": "#2d68f0",
},
fontFamily: {
antonio: ["Antonio", "sans-serif"],
spartan: ["League Spartan", "sans-serif"],
},
screens: {
"1bp": { max: "1110px" },
"2bp": { max: "870px" },
"3bp": { max: "720px" },
"4bp": { max: "636px" },
"5bp": { max: "375px" },
},
extend: {
backgroundImage: {
stars: "url('/assets/background-stars.svg')",
},
},
},
plugins: [],
};