-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 811 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
33 lines (32 loc) · 811 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} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'nunito': ['Nunito']
},
colors: {
'primary-blue': '#3294F8',
'base-title': '#E7EDF4',
'base-subtitle': '#C4D4E3',
'base-text': '#AFC2D4',
'base-span': '#7B96B2',
'base-label': '#3A536B',
'base-border': '#1C2F41',
'base-post': '#112131',
'base-profile': '#0B1B2B',
'base-background': '#071422',
'base-input': '#040F1A'
},
backgroundImage: {
'header-pattern': "url('/src/assets/background.svg')",
'header-pattern-blur': "url('/src/assets/background-blur.svg')"
}
},
},
plugins: [],
}