-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
54 lines (52 loc) · 1.52 KB
/
tailwind.config.cjs
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
48
49
50
51
52
53
54
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
brightblue: 'hsl(220, 98%, 61%)',
checkbg: {
from: 'hsl(192, 100%, 67%)',
to: 'hsl(280, 87%, 65%)'
},
},
neutral: {
light: {
verylightgray: 'hsl(0, 0%, 98%)',
verylightgrayishblue: 'hsl(236, 33%, 92%)',
lightgrayishblue: 'hsl(223, 11%, 84%)',
darkgrayishblue: 'hsl(236, 9%, 61%)',
verydarkgrayishblue: 'hsl(235, 19%, 35%)'
},
dark: {
verydarkblue: 'hsl(235, 21%, 11%)',
verydarkdesaturatedblue: 'hsl(235, 24%, 19%)',
lightgrayishblue: {
normal: 'hsl(234, 39%, 85%)',
hover: 'hsl(236, 33%, 92%)'
},
darkgrayishblue: 'hsl(234, 11%, 52%)',
verydarkgrayishblue: 'hsl(233, 14%, 35%)',
verydarkgrayishblue2: 'hsl(237, 14%, 26%)'
},
}
},
backgroundImage: {
'mobile-light': "url('images/bg-mobile-light.jpg')",
'mobile-dark': "url('images/bg-mobile-dark.jpg')",
'desktop-light': "url('images/bg-desktop-light.jpg')",
'desktop-dark': "url('images/bg-desktop-dark.jpg')",
},
fontFamily: {
body: ['Josefin Sans']
}
},
},
plugins: [],
}