-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
43 lines (43 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
'custom-blue': '#1976D2',
'vibrant-orange': '#FF5722',
'off-white': '#F9F7F2',
},
backgroundSize: {
'1400px': '1400px',
},
minHeight: {
'screen-minus-nav': 'calc(100vh - 112px)',
},
height: {
'screen-minus-nav': 'calc(100vh - 112px)',
},
animation: {
slide: 'slide 20s linear infinite',
},
keyframes: {
slide: {
'0%': { 'background-position': '0% 0%' },
'100%': { 'background-position': '100% 0%' },
},
},
fontFamily: {
IBM: ['IBM Plex Sans Condensed', 'sans-serif'],
syne: ['Syne', 'sans-serif'],
lexend: ['Lexend', 'san-serif'],
roboto: ['Roboto', 'san-serif'],
},
},
variants: {
extend: {
position: ['responsive', 'sticky'], // enabling the position variant for responsive design
},
},
},
plugins: [],
};