-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 947 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"primary-blue": "#25274F",
"secondary-blue": "#06283D",
"background-blue": "#0F1520",
"darker-blue": "#10162F",
"background-blue-darker": "#0b1114",
dark: "#141414",
"hero-blue": "#0F1520",
"accent-blue": "#4DAAE8",
},
fontFamily: {
"space-grotesk": ["Space Grotesk", "sans-serif"],
manrope: "Manrope, sans-serif",
},
fontSize: {
"10xl": "14rem",
},
lineHeight: {
squish: "0.8",
},
typography: {
DEFAULT: {
css: {
img: {
width: "100% !important",
},
},
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};