-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
36 lines (36 loc) · 1.17 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
module.exports = {
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
screens: {
'lg': { 'min': '1024px', 'max': '1215px' },
'md': { 'min': '672px', 'max': '1023px' },
'sm': { 'max': '671px' }
},
colors: {
'cor1': '#E97503',
'cor2': '#F09802',
'cor3': '#FDD303',
'cardTitle': '#343434',
'cardSubtitle': '#343434',
'backgroundHeader': '#2F3D49',
'hero-section-text-color': '#2F3D49',
'section-title-text-color': '#2F3D49',
'background-home-main-content': '#f5f5f5',
'background-footer': '#10151B'
},
backgroundImage: {
'gradient-principal': 'linear-gradient(94.25deg, #E97503 0%, #F09802 51.04%, #FDD303 100%)',
'gradient-principal-hover': 'linear-gradient(88.11deg, #E97503 0%, #F09802 19.78%, #FDD303 100%)',
'hero-section-gradient': 'linear-gradient(94.25deg, #E97503 0%, #F09802 51.04%, #FDD303 100%)'
},
boxShadow: {
'card-shadow': '0px 0px 12px rgba(0, 0, 0, 0.35)',
'img-wrapper': '0px 4px 12px rgba(0, 0, 0, 0.25)'
}
},
},
plugins: [
require('@tailwindcss/line-clamp'),
],
}