-
-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (45 loc) · 1022 Bytes
/
tailwind.config.js
File metadata and controls
47 lines (45 loc) · 1022 Bytes
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
/** @type {import('tailwindcss').Config} */
const dark = {
300: '#E8E2F4',
400: '#C6BED9',
500: '#9081B0',
600: '#675788',
700: '#453763',
};
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
container: {
padding: {
DEFAULT: '12rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
},
backgroundImage: {
madrid:
"url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80')",
online: "url('/img/CFS-Banner.png')",
},
extend: {
colors: {
dark: dark,
},
},
screens: {
xl: { max: '1279px' },
lg: { max: '1118px' },
sm: { max: '715px' },
},
fontFamily: {
secondary: ['Fira Code', 'monospace'],
workSans: ['Work Sans', 'monospace'],
},
},
plugins: [],
};