-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (56 loc) · 1.68 KB
/
tailwind.config.js
File metadata and controls
59 lines (56 loc) · 1.68 KB
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
55
56
57
58
59
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{html,ts}",
],
theme: {
fontWeight: {
'normal': '400',
'bold': '700',
},
fontSize: {
'sm': 'clamp(.7rem, 2vw, .8rem)',
'md': 'clamp(.9rem, 1vw, 1rem)',
'lg': 'clamp(2rem, 1vw, 3rem)'
},
extend: {
colors: {
// Primary
brightBlue: 'hsl(220, 98%, 61%)',
checkBackground: 'linear-gradient(hsl(192, 100%, 67%) to hsl(280, 87%, 65%))',
// Neutral
// Light Theme
veryLightGray: 'hsl(0, 0%, 98%)',
veryLightGrayishBlue: 'hsl(236, 33%, 92%)',
lightGrayishBlue: 'hsl(233, 11%, 84%)',
darkGrayishBlue: 'hsl(236, 9%, 61%)',
veryDarkGrayishBlue: 'hsl(235, 19%, 35%)',
// Dark Theme
veryDarkBlue: 'hsl(235, 21%, 11%)',
veryDarkDesaturatedBlue: 'hsl(235, 24%, 19%)',
_lightGrayishBlue: 'hsl(234, 39%, 85%)',
h_lightGrayishBlue: 'hsl(236, 33%, 92%)',
_darkGrayishBlue: 'hsl(234, 11%, 52%)',
_veryDarkGrayishBlue: 'hsl(233, 14%, 35%)',
h_veryDarkGrayishBlue: 'hsl(237, 14%, 26%)',
// Gradient
from: 'hsl(192, 100%, 67%)',
to: 'hsl(280, 87%, 65%)',
},
fontFamily: {
josefin: ['Josefin Sans', 'sans-serif'],
},
backgroundImage: {
'mobile-light': "url('assets/bg-mobile-light.jpg')",
'mobile-dark': "url('assets/bg-mobile-dark.jpg')",
'desktop-light': "url('assets/bg-desktop-light.jpg')",
'desktop-dark': "url('assets/bg-desktop-dark.jpg')",
},
minWidth: {
'sm': '320px'
}
},
},
plugins: [],
}