-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 932 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
41
42
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./shared/**/*.{js,ts,jsx,tsx}",
"./assets/**/*.svg",
],
theme: {
screens: {
xsm: "472px",
...defaultTheme.screens,
},
extend: {
colors: {
lightBlack: "#263238",
orange: "#F67833",
gray: "#A1A1B0",
darkBlue: "#17419E",
darkerBlue: "#263238",
retro: "#7F7575",
darkRed: "#A3112E",
lightGreen: "#92E3A9",
lightText: "#E0E0E0",
},
fontFamily: {
primary: ["SF-Pro-Display-Light"],
primaryBold: ["SF-Pro-Display-Bold"],
primarySemiBold: ["SF-Pro-Display-Semibold"],
primaryMedium: ["SF-Pro-Display-Medium"],
},
dropShadow: {
"3xl": "0 25px 25px rgba(0, 0, 0, 0.45)",
},
},
},
plugins: [],
};