-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (57 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
screens: {
sm: '375px',
md: '1440px',
},
colors: {
darkblue1: 'hsl(217, 28%, 15%)',
darkblue2: 'hsl(218, 28%, 13%)',
darkblue3: 'hsl(219, 30%, 18%)',
'darkblue-footer': 'hsl(216, 53%, 9%)',
blue: 'hsl(198, 60%, 50%)',
white: 'hsl(0, 0%, 100%)',
cyan: 'hsl(176, 68%, 64%)',
lightcyan: 'hsl(185, 64.1%, 69.4%)',
lightred: 'hsl(0, 100%, 63%)',
},
fontFamily: {
sans: ['Raleway', 'sans-serif'],
body: ['Open Sans', 'sans-serif'],
},
fontSize: {
xxsm: '0.5rem',
xsm: '0.7rem',
sm: '0.8rem',
base: '0.875rem', //14px
xl: '1rem',
'2xl': '1.125rem',
'3xl': '1.25rem',
'4xl': '1.5rem',
'5xl': '1.65rem',
'6xl': '2rem',
'7xl': '2.25rem',
'8xl': '2.875rem',
},
backgroundImage: {
'curvy-desktop': "url('./assets/images/bg-curvy-desktop.svg')",
'curvy-mobile': "url('./assets/images/bg-curvy-mobile.svg')",
quotes: "url('./assets/images/bg-quotes.png')",
},
spacing: {
128: '32rem',
144: '36rem',
},
borderRadius: {
'4xl': '2rem',
},
},
},
variants: {
fill: ['hover', 'focus'], // this line does the trick
},
plugins: [],
};