-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
47 lines (47 loc) · 1.04 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
linkedin: {
blue: "#0a66c2",
"light-blue": "#e7f3ff",
black: "#000000",
"dark-gray": "#333333",
"medium-gray": "#86888a",
"light-gray": "#f3f2ef",
white: "#ffffff",
},
},
fontFamily: {
sans: [
"-apple-system",
"system-ui",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Fira Sans",
"Ubuntu",
"Oxygen",
"Oxygen Sans",
"Cantarell",
"Droid Sans",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Lucida Grande",
"Helvetica",
"Arial",
"sans-serif",
],
},
},
},
plugins: [],
};