-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
39 lines (39 loc) · 917 Bytes
/
tailwind.config.cjs
File metadata and controls
39 lines (39 loc) · 917 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
33
34
35
36
37
38
39
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
],
darkMode: 'class',
theme: {
fontWeight: {
300: '300',
600: '600',
800: '800'
},
colors: {
'dm-dark-blue': 'hsl(209, 23%,22%)',
'dm-very-dark-blue': 'hsl(207, 26%,17%)',
'lm-very-dark': 'hsl(200, 15%,8%)',
'lm-dark-gray': 'hsl(0, 0%,52%)',
'lm-very-light-gray': 'hsl(0, 0%, 98%)',
white: 'hsl(0, 0%, 100%)'
},
fontFamily: {
'nunito-sans': ['Nunito Sans', 'sans-serif']
},
backgroundSize: {
'search-width': '20px'
},
backgroundPosition: {
'search-position': 'left 1rem center'
},
extend: {
backgroundImage: {
'white-search': "url('/assets/white-search.svg')",
'dark-search': "url('/assets/dark-search.svg')"
}
}
},
plugins: []
}