-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
36 lines (36 loc) · 969 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
textColor: {
primary: 'hsl(180, 29%, 50%)',
secondary: 'hsl(180, 14%, 20%)',
tertiary: 'hsl(180, 8%, 52%)',
background: 'hsl(180, 52%, 96%)',
'filter-tables': 'hsl(180, 31%, 95%)'
},
backgroundColor: {
primary: 'hsl(180, 29%, 50%)',
secondary: 'hsl(180, 14%, 20%)',
tertiary: 'hsl(180, 8%, 52%)',
background: 'hsl(180, 52%, 96%)',
'filter-tables': 'hsl(180, 31%, 95%)'
},
fontFamily: {
'League Spartan': ['League Spartan', 'sans-serif']
},
fontSize: {
base: '0.9375rem'
},
backgroundImage: {
'header-desktop': "url('../images/bg-header-desktop.svg')",
'header-mobile': "url('../images/bg-header-mobile.svg')"
}
}
},
plugins: []
}