-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
48 lines (46 loc) · 1.63 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx,css,md}'],
darkMode: ['class', "[theme='dark']"],
theme: {
extend: {
backgroundImage: {
'desktop-light': "url('/images/bg-desktop-light.jpg')",
'desktop-dark': "url('/images/bg-desktop-dark.jpg')",
'mobile-light': "url('/images/bg-mobile-light.jpg')",
'mobile-dark': "url('/images/bg-mobile-dark.jpg')",
'checkbox-gradient':
'linear-gradient(120deg, hsl(192deg, 100%, 67%), hsl(280deg, 87%, 65%), transparent, transparent)'
}
},
colors: {
error: '#cf2b2b',
success: '#539B4D',
primary: {
brightBlue: 'hsl(220, 98%, 61%)',
transparent: 'transparent'
},
light: {
default: 'hsl(256, 100%, 100%)',
'grayish-light-blue': 'hsl(233, 11%, 84%)',
'grayish-dark-blue': 'hsl(236, 9%, 61%)',
'hard-gray-light': 'hsl(0, 0%, 98%)',
'hard-grayish-light-blue': 'hsl(236, 33%, 92%)',
'hard-grayish-dark-blue': 'hsl(235, 19%, 35%)'
},
dark: {
'hard-dark-blue': 'hsl(235, 21%, 11%)',
'light-desaturated-dark-blue': 'hsl(235, 24%, 30%)',
'desaturated-dark-blue': 'hsl(235, 24%, 23%)',
'hard-desaturated-dark-blue': 'hsl(235, 24%, 19%)',
'grayish-light-blue': 'hsl(234, 39%, 85%)',
'grayish-dark-blue': 'hsl(234, 11%, 52%)',
'hard-grayish-dark-blue': 'hsl(233, 14%, 35%)',
hover: {
'grayish-light-blue': 'hsl(236, 33%, 92%)',
'hard-grayish-dark-blue': 'hsl(237, 14%, 26%)'
}
}
}
}
}