-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
59 lines (55 loc) · 1.33 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
55
56
57
58
59
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: ['./src/**/*.{html,js,svelte,ts,svg}', './src/components/*.svelte'],
theme: {
extend: {
fontFamily: {
FiraCode: ['Fira Code', 'monospace']
},
backgroundColor: {
secondary: '#192c43',
navHover: '#4c606f'
},
borderColor: {
navBorder: '#2f4155'
},
from: {
underlineStart: '#4c606f'
},
to: {
underlineEnd: '#4c606f'
},
keyframes: {
pulseFade: {
'15%': { opacity: 0.15 }
}
},
animation: {
pulseFade: 'pulseFade 4s cubic-bezier(0.4, 0, 0.6, 1) infinite'
},
listStyleType: {
square: 'square'
},
boxShadow: {
contactForm: '0 0.3px 0.7px rgba(0, 0, 0, 0.126)'
},
backgroundImage: {
contactWave: "url('contactWave.svg')"
}
},
screens: {
'2xl': { min: '1536px' },
// => @media (min-width: 1536px) { ... }
xl: { min: '1280px', max: '1535px' },
// => @media (min-width: 1280px) and (max-width: 1535px) { ... }
lg: { min: '1024px', max: '1279px' },
// => @media (min-width: 1024px) and (max-width: 1279px) { ... }
md: { min: '768px', max: '1023px' },
// => @media (min-width: 768px) and (max-width: 1023px) { ... }
sm: { max: '767px' }
// => @media (max-width: 767px) { ... }
}
},
plugins: [require('@tailwindcss/line-clamp')]
};