-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (47 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
'./ui/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['Roboto Condensed', 'sans-serif'],
},
screens: {
xs: '480px',
'3xl': '1920px',
'5xl': '2436px',
},
flex: {
25: '0 0 25%',
},
backgroundImage: {
phoneContactImg: 'url("/images/icons/icon-phone.png")',
},
colors: {
primary: 'rgba(255,126,0)',
fill: 'rgba(255,255,255)',
gray: 'rgba(255, 255, 255, 0.15)',
second: '#fa8c16',
tertiary: '#424',
textBase: 'rgba(58,58,58)',
button: '#ff792c',
footer: 'rgba(35,47,63)',
},
boxShadow: {
custom: '0px 10px 20px rgba(0,0,0,0.1)',
card: '0px 0px 6px rgba(79, 95, 120, 0.1)',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp'),
],
};