-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 905 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (35 loc) · 905 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
module.exports = {
mode: 'jit',
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
backgroundImage: theme => ({
'mobile-app': 'url(https://getir.com/_next/static/images/doodle-d659f9f1fd505c811c2331fe3ffddd5f.png)',
}),
height: {
'500': '31.25rem',
},
spacing: {
'0.1': '0.063rem',
},
colors: {
'brand-color': '#4C3398',
'primary-brand-color': '#5D3EBC',
'secondary-brand-color': '#7849f7',
'register-color': '#FAFAFA',
'header': '#D7D6FC',
'brand-yellow': '#FFD300',
'facebook': '#3c5a99',
'facebook-button': '#E7EAF1',
'cards-txt': '#697488',
'color-black': '#191919',
'color-52': '#525252',
}
},
},
variants: {
extend: {},
},
plugins: [],
}