-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 930 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 930 Bytes
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
/** @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: {
fontFamily: {
'twitter-chirp': ['TwitterChirp', 'sans-serif'],
'twitter-chirp-extended': ['TwitterChirpExtendedHeavy', 'sans-serif'],
},
backgroundColor: {
'dialog-overlay': 'rgba(91, 112, 131, 0.4)',
},
colors: {
'primary-blue': '#1D9BF0',
'primary-dark-blue': '#2795D9',
'primary-light-blue': '#EFF9FF',
'secondary-black': '#14171A',
'secondary-light-400': '#657786',
'secondary-light-300': '#AAB8C2',
'secondary-light-200': '#E1E8ED',
'secondary-light-100': '#F5F8FA',
'secondary-light': '#E7E9EA',
'secondary-white': '#FFF',
},
},
},
plugins: [],
}