-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
45 lines (42 loc) · 1.18 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [ "./src/**/*.{html,js}"],
theme: {
screens: {
'mob' : { 'min' : '360px' , 'max': '479px' },
'xsm' : { 'min' : '480px' , 'max': '639px' },
'sm' : {'min': '640px', 'max': '767px'},
'md' : {'min': '768px', 'max': '1023px'},
'lg' : {'min': '1024px', 'max': '1279px'},
'xl' : {'min': '1280px', 'max': '1535px'},
'2xl' : {'min': '1536px'},
},
extend: {
colors: {
'yellow': '#ffc300',
'blue-dark': '#001d3d',
'orange': '#fc8019',
'green': '#6dad1f',
'white' : '#fff',
'red': '#c70039',
'gray': '#eeeeee',
'gray-light': '#d3dce6',
'gray-dark' : '#686b78',
'gray-details' : '#535665',
'gray-desc' :'rgba(40,44,63,.45)',
'github' : '#333',
'linkedin' : '#0e76a8',
'google' : '#ea4335',
'title' : '#444',
'bio' : '#999',
'blue' : '#1890ff',
'shimmer' : '#999',
'gray-count' : '#bebfc5'
},
},
fontFamily: {
'sans': ['"PT Sans"', 'Calibri', 'Tahoma', 'sans-serif'],
},
},
plugins: [],
}